@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;
}
.animate__flipInX {
  -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;
}
.animate__flipInY {
  -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-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
.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-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-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
.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-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;
}

#root {
  height: 100%;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-gray-700 {
  --tw-text-opacity: 1;

  color: rgba(156, 163, 175, var(--tw-text-opacity));
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.font-medium {
  font-weight: 500;
}

.mr-1 {
  margin-right: 0.25rem;
}

.mr-3 {
  margin-right: 0.75rem;
}

.ml-15 {
  margin-left: 0.375rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-25 {
  margin: 0.625rem;
}

.mx-1 {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-auto {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.flex-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.justify-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}

.flex-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-center-y {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media print {
  @page {
    margin: 0;
  }
}

.operation_sub_commander_container {
  position: relative;
}

.instruct-notifier {
  position: relative;
}

.instruct-notifier .ant-modal-confirm-title {
  font-size: 40px !important;
}

.instruct-notifier .ant-modal-confirm-content {
  font-size: 40px !important;
}

.operation_sub_commander_container {
  position: relative;
}

.operation_sub_commander_container {
  position: relative;
}

.inquiry-order-steps-container {
  margin-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.inquiry-order-steps-container {
  margin-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* 已经进行完成的进度条样式 */
.ant-steps .ant-steps-item-finish > .ant-steps-item-container > .ant-steps-item-tail:after {
  border: none !important;
  background: none !important;
  background-image: linear-gradient(to right, #4575ef 5px, white 5px) !important;
  background-size: 8.5px 2px !important;
  background-repeat: repeat-x !important;
  height: 2px !important;
}

/* 未进行的进度条样式 */
.ant-steps .ant-steps-item-tail:after {
  border: none !important;
  background: none !important;
  background-image: linear-gradient(to right, #b2b2b2 5px, white 5px) !important;
  background-size: 8.5px 2px !important;
  background-repeat: repeat-x !important;
  height: 2px !important;
}

.ant-steps .ant-steps-item-process .ant-steps-item-icon > .ant-steps-icon .ant-steps-icon-dot {
  width: 16px !important;
  height: 16px !important;
  border: 4px solid #4575ef !important;
  background: white !important;
  -webkit-transform: translate(-50%, -25%) !important;
          transform: translate(-50%, -25%) !important;
  margin: 0 !important;
  position: absolute !important;
  top: 25% !important;
  left: 50% !important;
}

.ant-steps .ant-steps-item-finish .ant-steps-item-icon > .ant-steps-icon .ant-steps-icon-dot {
  width: 16px !important;
  height: 16px !important;
  border: 4px solid #4575ef !important;
  background: white !important;
  -webkit-transform: translate(-50%, -25%) !important;
          transform: translate(-50%, -25%) !important;
  margin: 0 !important;
  position: absolute !important;
  top: 25% !important;
  left: 50% !important;
}

.ant-steps .ant-steps-item-wait .ant-steps-item-icon > .ant-steps-icon .ant-steps-icon-dot {
  width: 16px !important;
  height: 16px !important;
  border: 4px solid #d9d9d9 !important;
  background: white !important;
  -webkit-transform: translate(-50%, -25%) !important;
          transform: translate(-50%, -25%) !important;
  margin: 0 !important;
  position: absolute !important;
  top: 25% !important;
  left: 50% !important;
}

.inquiry-order-steps-container {
  margin-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.uc-card-legend-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-height: 50px;
}

.uc-card-legend-container .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.uc-card-legend-container .item .color {
  background: #32c5ff;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  display: inline-block;
}

.uc-card-legend-container .item .label {
  margin-left: 8px;
  margin-right: 16px;
}

.uc-copyright-container {
  height: 20px !important;
}
.uc-copyright-container {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  font-size: 10px;
}

.ufc-components-image-carousel-container {
  min-height: 100px;
  min-width: 100px;
}

.ufc-components-image-carousel-container .ant-carousel .slick-dots li button {
  background: #6874e2;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0.3;
}

.ufc-components-image-carousel-container
  .ant-carousel
  .slick-dots
  li.slick-active
  button {
  opacity: 1;
}

.ufc-components-image-carousel-flatten {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-y: hidden;
  overflow-x: auto;
}

.ufc-components-image-carousel-flatten .ufc-components-image-carousel-file {
  margin-right: 8px;
}

.ufc-components-image-carousel-file {
  height: 100%;
  width: 100%;
  min-height: 100px;
  min-width: 100px;
  position: relative;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.ufc-components-image-carousel-file .ufc-components-image-carousel-img {
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.ufc-components-image-carousel-file .crossIcon {
  position: absolute;
  top: 5px;
  right: 5px;
  display: none;
}

.ufc-components-image-carousel-file:hover .crossIcon {
  display: block;
}

.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.YSDCOfqFX6{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.uRDUAtM4yY{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.U893i6jYZ3{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.U893i6jYZ3>i,.U893i6jYZ3>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.Qlo0a8iQ-U{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.M9FKn2eJXT{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.FN8jzGXktM{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.dK1RCZoPpz{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.sP9uFiPcoM{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.wdDc97l8Y2{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.BGZskCmOtS{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.BGZskCmOtS .W2de-mBYVx{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.BGZskCmOtS .W2de-mBYVx>span{color:rgba(0,0,0,0.65)}.uRBnrDX8gl{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.uRBnrDX8gl .\+XL\+YR3wEp{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.uRBnrDX8gl .\+XL\+YR3wEp>span{font-size:8px}.de\+ypwn5I2 .ant-popover-inner-content{padding:0}.de\+ypwn5I2 .ant-popover-arrow{border-color:#475365 !important}.de\+ypwn5I2 .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.nsI-giTJOs{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.yUlcIRVyD1{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.yUlcIRVyD1 .wszm0BhCRY{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.GZe-Gwu2KH{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.rviAJ\+IPzS{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.rviAJ\+IPzS{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.Bwu1DLVeK2{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.qCO2bZEUyH html,.qCO2bZEUyH body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.qCO2bZEUyH body,.qCO2bZEUyH div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.qCO2bZEUyH textarea{border:none !important;padding-left:0 !important}.qCO2bZEUyH table,.qCO2bZEUyH tr,.qCO2bZEUyH td{page-break-inside:avoid}.qCO2bZEUyH div{page-break-inside:avoid}.qCO2bZEUyH thead{display:table-header-group}.qCO2bZEUyH tfoot{display:table-footer-group}.qCO2bZEUyH *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.qCO2bZEUyH ._2cP0sMVc4T,.qCO2bZEUyH .no-print,.qCO2bZEUyH .react-resizable-handle,.qCO2bZEUyH .fc-whiteboard-toolbar,.qCO2bZEUyH .ant-modal-root,.qCO2bZEUyH .ant-alert,.qCO2bZEUyH .RuKl0vQALM,.qCO2bZEUyH .NlAC8SKu3H{display:none !important}.qCO2bZEUyH ._6H2DfFpdHa{display:none !important}}._0h2pR-jK0D{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);padding:24px;position:relative}._0h2pR-jK0D .ant-result-image{-webkit-transform:scale(.7);transform:scale(.7)}._0h2pR-jK0D .ant-result-subtitle{color:rgba(0,0,0,0.65);font-size:16px}
.uc-pageheader-container {
  border-bottom: 1px solid #e8e8e8;
}

.uc-pageheader-container .ant-page-header {
  padding: 10px;
}

.uc-pageheader-container .ant-page-header-heading-left {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 1px;
          flex: 1 1 1px;
}

.uc-pageheader-container .ant-page-header-heading-title {
  font-size: 16px;
  font-weight: normal;
  width: calc(100% - 55px);
}

.uc-pageheader-container .ant-page-header-back {
  margin-right: 16px;
  font-weight: normal;
}

.page-header-with-date-picker-header {
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 24px 8px;
  border-bottom: 1px solid #eff1f7;
}

.uc-simple-panel-container {
  border: 1px solid #e9e9e9;
  margin-bottom: 24px;
}

.uc-simple-panel-container .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fafafa;
  height: 54px;
  padding: 0 16px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.uc-simple-panel-container .body {
  padding: 16px;
  width: 100%;
}

.uc-simple-panel-container .body .avatar {
  padding: 4px;
  border: 1px solid #d8d8d8;
}

.uc-simple-panel-container .body .ant-row {
  height: 45px;
}

.uc-simple-panel-container .ant-form-item {
  margin: 0;
}

.uc-simple-panel-container .ant-form-explain {
  font-size: 12px;
}

.uc-simple-panel-container .ant-upload-picture-card-wrapper {
  width: 120px;
  margin-right: 12px;
}

.react-spinner-loader-swing div {
  border-radius: 50%;
  float: left;
  height: 1em;
  width: 1em;
}
.react-spinner-loader-swing div:nth-of-type(1) {
  background: -webkit-linear-gradient(left, #385c78 0%, #325774 100%);
  background: linear-gradient(to right, #385c78 0%, #325774 100%);
}
.react-spinner-loader-swing div:nth-of-type(2) {
  background: -webkit-linear-gradient(left, #325774 0%, #47536a 100%);
  background: linear-gradient(to right, #325774 0%, #47536a 100%);
}
.react-spinner-loader-swing div:nth-of-type(3) {
  background: -webkit-linear-gradient(left, #4a5369 0%, #6b4d59 100%);
  background: linear-gradient(to right, #4a5369 0%, #6b4d59 100%);
}
.react-spinner-loader-swing div:nth-of-type(4) {
  background: -webkit-linear-gradient(left, #744c55 0%, #954646 100%);
  background: linear-gradient(to right, #744c55 0%, #954646 100%);
}
.react-spinner-loader-swing div:nth-of-type(5) {
  background: -webkit-linear-gradient(left, #9c4543 0%, #bb4034 100%);
  background: linear-gradient(to right, #9c4543 0%, #bb4034 100%);
}
.react-spinner-loader-swing div:nth-of-type(6) {
  background: -webkit-linear-gradient(left, #c33f31 0%, #d83b27 100%);
  background: linear-gradient(to right, #c33f31 0%, #d83b27 100%);
}
.react-spinner-loader-swing div:nth-of-type(7) {
  background: -webkit-linear-gradient(left, #da3b26 0%, #db412c 100%);
  background: linear-gradient(to right, #da3b26 0%, #db412c 100%);
}
.react-spinner-loader-shadow {
  clear: left;
  padding-top: 1.5em;
}
.react-spinner-loader-shadow div {
  -webkit-filter: blur(1px);
  filter: blur(1px);
  float: left;
  width: 1em;
  height: .25em;
  border-radius: 50%;
  background: #e3dbd2;
}
.react-spinner-loader-shadow .react-spinner-loader-shadow-l {
  background: #d5d8d6;
}
.react-spinner-loader-shadow .react-spinner-loader-shadow-r {
  background: #eed3ca;
}
@-webkit-keyframes ball-l {
  0%, 50% {
    -webkit-transform: rotate(0) translateX(0);
    transform: rotate(0) translateX(0);
  }
  100% {
    -webkit-transform: rotate(50deg) translateX(-2.5em);
    transform: rotate(50deg) translateX(-2.5em);
  }
}
@keyframes ball-l {
  0%, 50% {
    -webkit-transform: rotate(0) translate(0);
    transform: rotate(0) translateX(0);
  }
  100% {
    -webkit-transform: rotate(50deg) translateX(-2.5em);
    transform: rotate(50deg) translateX(-2.5em);
  }
}
@-webkit-keyframes ball-r {
  0% {
    -webkit-transform: rotate(-50deg) translateX(2.5em);
    transform: rotate(-50deg) translateX(2.5em);
  }
  50%,
  100% {
    -webkit-transform: rotate(0) translateX(0);
    transform: rotate(0) translateX(0);
  }
}
@keyframes ball-r {
  0% {
    -webkit-transform: rotate(-50deg) translateX(2.5em);
    transform: rotate(-50deg) translateX(2.5em);
  }
  50%,
  100% {
    -webkit-transform: rotate(0) translateX(0);
    transform: rotate(0) translateX(0)
  }
}
@-webkit-keyframes shadow-l-n {
  0%, 50% {
    opacity: .5;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: .125;
    -webkit-transform: translateX(-1.57em);
    transform: translateX(-1.75em);
  }
}
@keyframes shadow-l-n {
  0%, 50% {
    opacity: .5;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: .125;
    -webkit-transform: translateX(-1.75);
    transform: translateX(-1.75em);
  }
}
@-webkit-keyframes shadow-r-n {
  0% {
    opacity: .125;
    -webkit-transform: translateX(1.75em);
    transform: translateX(1.75em);
  }
  50%,
  100% {
    opacity: .5;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes shadow-r-n {
  0% {
    opacity: .125;
    -webkit-transform: translateX(1.75em);
    transform: translateX(1.75em);
  }
  50%,
  100% {
    opacity: .5;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.react-spinner-loader-swing-l {
  -webkit-animation: ball-l .425s ease-in-out infinite alternate;
  animation: ball-l .425s ease-in-out infinite alternate;
}
.react-spinner-loader-swing-r {
  -webkit-animation: ball-r .425s ease-in-out infinite alternate;
  animation: ball-r .425s ease-in-out infinite alternate;
}
.react-spinner-loader-shadow-l {
  -webkit-animation: shadow-l-n .425s ease-in-out infinite alternate;
  animation: shadow-l-n .425s ease-in-out infinite alternate;
}
.react-spinner-loader-shadow-r {
  -webkit-animation: shadow-r-n .425s ease-in-out infinite alternate;
  animation: shadow-r-n .425s ease-in-out infinite alternate;
}


.react-spinner-loader-svg-calLoader {
  width: 230px;
  height: 230px;
  transform-origin: 115px 115px;
  animation: 1.4s linear infinite loader-spin;
}

.react-spinner-loader-svg-cal-loader__path {

  animation: 1.4s ease-in-out infinite loader-path;
}

@keyframes loader-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes loader-path {
  0% {
    stroke-dasharray: 0, 580, 0, 0, 0, 0, 0, 0, 0;
  }
  50% {
    stroke-dasharray: 0, 450, 10, 30, 10, 30, 10, 30, 10;
  }
  100% {
    stroke-dasharray: 0, 580, 0, 0, 0, 0, 0, 0, 0;
  }
}


.react-spinner-loader-svg svg {
  -webkit-transform-origin: 50% 65%;
          transform-origin: 50% 65%;
}

.react-spinner-loader-svg svg polygon {
  stroke-dasharray: 17;
  -webkit-animation: dash 2.5s cubic-bezier(0.35, 0.04, 0.63, 0.95) infinite;
          animation: dash 2.5s cubic-bezier(0.35, 0.04, 0.63, 0.95) infinite;
}

@-webkit-keyframes dash {
  to {
    stroke-dashoffset: 136;
  }
}

@keyframes dash {
  to {
    stroke-dashoffset: 136;
  }
}
@-webkit-keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}



.rmv-gmv-container {
  position: relative;
}

.rmv-gmv-attr-modal {
  position: absolute;
  background: rgba(0, 0, 0, 0.45);
  height: auto;
  right: 0;
  bottom: 0;
  padding: 0 16px;
}

.rmv-gmv-attr-modal .item {
  height: 25px;
  line-height: 25px;
  color: white;
  font-size: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.rmv-gmv-attr-modal .item span {
  float: right;
  margin-top: -5px;
  margin-left: 4px;
}

.rmv-gmv-attr-joystick {
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.rmv-gmv-attr-joystick-inner {
  position: relative;
}

.rmv-gmv-attr-joystick-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 15px;
  width: 40px;
}

.rmv-gmv-attr-joystick .arrow {
  border: solid white;
  border-width: 0 4px 4px 0;
  display: inline-block;
  padding: 4px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  cursor: pointer;
}

.rmv-gmv-attr-joystick-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.rmv-gmv-attr-joystick-arrow i {
  border: solid white;
  display: inline-block;
  cursor: pointer;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 12.5px 18px 12.5px;
  border-color: transparent transparent #fff transparent;

}

.rmv-gmv-attr-joystick-arrow-up {
  position: absolute;
  height: 20px;
  width: 100%;
  top: 5px;
  left: 0;
}


.rmv-gmv-attr-joystick-arrow-right {
  position: absolute;
  height: 100%;
  width: 20px;
  top: 0;
  right: 5px;
}

.rmv-gmv-attr-joystick-arrow-right i {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}

.rmv-gmv-attr-joystick-arrow-left {
  position: absolute;
  height: 100%;
  width: 20px;
  top: 0;
  left: 5px;
}

.rmv-gmv-attr-joystick-arrow-left i {
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
}

.rmv-gmv-attr-joystick-arrow-down {
  position: absolute;
  height: 20px;
  width: 100%;
  bottom: 50px;
  left: 0;
}

.rmv-gmv-attr-joystick-arrow-plus {
  position: absolute;
  bottom: 25px;
  right: 20px;
  font-size: 20px;
  color: white;
}

.rmv-gmv-attr-joystick-arrow-minus {
  position: absolute;
  bottom: 25px;
  right: 5px;
  font-size: 20px;
  color: white;
}

.rmv-gmv-attr-joystick-arrow-down i {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}

/*!
 * Cropper.js v1.6.1
 * https://fengyuanchen.github.io/cropperjs
 *
 * Copyright 2015-present Chen Fengyuan
 * Released under the MIT license
 *
 * Date: 2023-09-17T03:44:17.565Z
 */.cropper-container{direction:ltr;font-size:0;line-height:0;position:relative;-ms-touch-action:none;touch-action:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.cropper-container img{max-height:none!important;max-width:none!important;min-height:0!important;min-width:0!important}.cropper-container img{-webkit-backface-visibility:hidden;backface-visibility:hidden;display:block;height:100%;image-orientation:0deg;width:100%}.cropper-canvas,.cropper-crop-box,.cropper-drag-box,.cropper-modal,.cropper-wrap-box{bottom:0;left:0;position:absolute;right:0;top:0}.cropper-canvas,.cropper-wrap-box{overflow:hidden}.cropper-drag-box{background-color:#fff;opacity:0}.cropper-modal{background-color:#000;opacity:.5}.cropper-view-box{display:block;height:100%;outline:1px solid #39f;outline-color:rgba(51,153,255,.75);overflow:hidden;width:100%}.cropper-dashed{border:0 dashed #eee;display:block;opacity:.5;position:absolute}.cropper-dashed.dashed-h{border-bottom-width:1px;border-top-width:1px;height:33.33333%;left:0;top:33.33333%;width:100%}.cropper-dashed.dashed-v{border-left-width:1px;border-right-width:1px;height:100%;left:33.33333%;top:0;width:33.33333%}.cropper-center{display:block;height:0;left:50%;opacity:.75;position:absolute;top:50%;width:0}.cropper-center:after,.cropper-center:before{background-color:#eee;content:" ";display:block;position:absolute}.cropper-center:before{height:1px;left:-3px;top:0;width:7px}.cropper-center:after{height:7px;left:0;top:-3px;width:1px}.cropper-face,.cropper-line,.cropper-point{display:block;height:100%;opacity:.1;position:absolute;width:100%}.cropper-face{background-color:#fff;left:0;top:0}.cropper-line{background-color:#39f}.cropper-line.line-e{cursor:ew-resize;right:-3px;top:0;width:5px}.cropper-line.line-n{cursor:ns-resize;height:5px;left:0;top:-3px}.cropper-line.line-w{cursor:ew-resize;left:-3px;top:0;width:5px}.cropper-line.line-s{bottom:-3px;cursor:ns-resize;height:5px;left:0}.cropper-point{background-color:#39f;height:5px;opacity:.75;width:5px}.cropper-point.point-e{cursor:ew-resize;margin-top:-3px;right:-3px;top:50%}.cropper-point.point-n{cursor:ns-resize;left:50%;margin-left:-3px;top:-3px}.cropper-point.point-w{cursor:ew-resize;left:-3px;margin-top:-3px;top:50%}.cropper-point.point-s{bottom:-3px;cursor:s-resize;left:50%;margin-left:-3px}.cropper-point.point-ne{cursor:nesw-resize;right:-3px;top:-3px}.cropper-point.point-nw{cursor:nwse-resize;left:-3px;top:-3px}.cropper-point.point-sw{bottom:-3px;cursor:nesw-resize;left:-3px}.cropper-point.point-se{bottom:-3px;cursor:nwse-resize;height:20px;opacity:1;right:-3px;width:20px}@media (min-width:768px){.cropper-point.point-se{height:15px;width:15px}}@media (min-width:992px){.cropper-point.point-se{height:10px;width:10px}}@media (min-width:1200px){.cropper-point.point-se{height:5px;opacity:.75;width:5px}}.cropper-point.point-se:before{background-color:#39f;bottom:-50%;content:" ";display:block;height:200%;opacity:0;position:absolute;right:-50%;width:200%}.cropper-invisible{opacity:0}.cropper-bg{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC")}.cropper-hide{display:block;height:0;position:absolute;width:0}.cropper-hidden{display:none!important}.cropper-move{cursor:move}.cropper-crop{cursor:crosshair}.cropper-disabled .cropper-drag-box,.cropper-disabled .cropper-face,.cropper-disabled .cropper-line,.cropper-disabled .cropper-point{cursor:not-allowed}
.show {
  display: block;
}

.hide {
  display: none;
}

.rc-tooltip.rc-tooltip-zoom-appear,
.rc-tooltip.rc-tooltip-zoom-enter {
  opacity: 0;
}
.rc-tooltip.rc-tooltip-zoom-enter,
.rc-tooltip.rc-tooltip-zoom-leave {
  display: block;
}
.rc-tooltip-zoom-enter,
.rc-tooltip-zoom-appear {
  opacity: 0;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-timing-function: cubic-bezier(0.18, 0.89, 0.32, 1.28);
          animation-timing-function: cubic-bezier(0.18, 0.89, 0.32, 1.28);
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.rc-tooltip-zoom-leave {
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-timing-function: cubic-bezier(0.6, -0.3, 0.74, 0.05);
          animation-timing-function: cubic-bezier(0.6, -0.3, 0.74, 0.05);
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.rc-tooltip-zoom-enter.rc-tooltip-zoom-enter-active,
.rc-tooltip-zoom-appear.rc-tooltip-zoom-appear-active {
  -webkit-animation-name: rcToolTipZoomIn;
          animation-name: rcToolTipZoomIn;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.rc-tooltip-zoom-leave.rc-tooltip-zoom-leave-active {
  -webkit-animation-name: rcToolTipZoomOut;
          animation-name: rcToolTipZoomOut;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
@-webkit-keyframes rcToolTipZoomIn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
@keyframes rcToolTipZoomIn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
@-webkit-keyframes rcToolTipZoomOut {
  0% {
    opacity: 1;
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  100% {
    opacity: 0;
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
  }
}
@keyframes rcToolTipZoomOut {
  0% {
    opacity: 1;
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  100% {
    opacity: 0;
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
  }
}
.rc-tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  visibility: visible;
  font-size: 12px;
  line-height: 1.5;
  opacity: 0.9;
}
.rc-tooltip-hidden {
  display: none;
}
.rc-tooltip-placement-top,
.rc-tooltip-placement-topLeft,
.rc-tooltip-placement-topRight {
  padding: 5px 0 9px 0;
}
.rc-tooltip-placement-right,
.rc-tooltip-placement-rightTop,
.rc-tooltip-placement-rightBottom {
  padding: 0 5px 0 9px;
}
.rc-tooltip-placement-bottom,
.rc-tooltip-placement-bottomLeft,
.rc-tooltip-placement-bottomRight {
  padding: 9px 0 5px 0;
}
.rc-tooltip-placement-left,
.rc-tooltip-placement-leftTop,
.rc-tooltip-placement-leftBottom {
  padding: 0 9px 0 5px;
}
.rc-tooltip-inner {
  padding: 8px 10px;
  color: #fff;
  text-align: left;
  text-decoration: none;
  background-color: #373737;
  border-radius: 6px;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.17);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.17);
  min-height: 34px;
}
.rc-tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.rc-tooltip-placement-top .rc-tooltip-arrow,
.rc-tooltip-placement-topLeft .rc-tooltip-arrow,
.rc-tooltip-placement-topRight .rc-tooltip-arrow {
  bottom: 4px;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #373737;
}
.rc-tooltip-placement-top .rc-tooltip-arrow {
  left: 50%;
}
.rc-tooltip-placement-topLeft .rc-tooltip-arrow {
  left: 15%;
}
.rc-tooltip-placement-topRight .rc-tooltip-arrow {
  right: 15%;
}
.rc-tooltip-placement-right .rc-tooltip-arrow,
.rc-tooltip-placement-rightTop .rc-tooltip-arrow,
.rc-tooltip-placement-rightBottom .rc-tooltip-arrow {
  left: 4px;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #373737;
}
.rc-tooltip-placement-right .rc-tooltip-arrow {
  top: 50%;
}
.rc-tooltip-placement-rightTop .rc-tooltip-arrow {
  top: 15%;
  margin-top: 0;
}
.rc-tooltip-placement-rightBottom .rc-tooltip-arrow {
  bottom: 15%;
}
.rc-tooltip-placement-left .rc-tooltip-arrow,
.rc-tooltip-placement-leftTop .rc-tooltip-arrow,
.rc-tooltip-placement-leftBottom .rc-tooltip-arrow {
  right: 4px;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #373737;
}
.rc-tooltip-placement-left .rc-tooltip-arrow {
  top: 50%;
}
.rc-tooltip-placement-leftTop .rc-tooltip-arrow {
  top: 15%;
  margin-top: 0;
}
.rc-tooltip-placement-leftBottom .rc-tooltip-arrow {
  bottom: 15%;
}
.rc-tooltip-placement-bottom .rc-tooltip-arrow,
.rc-tooltip-placement-bottomLeft .rc-tooltip-arrow,
.rc-tooltip-placement-bottomRight .rc-tooltip-arrow {
  top: 4px;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #373737;
}
.rc-tooltip-placement-bottom .rc-tooltip-arrow {
  left: 50%;
}
.rc-tooltip-placement-bottomLeft .rc-tooltip-arrow {
  left: 15%;
}
.rc-tooltip-placement-bottomRight .rc-tooltip-arrow {
  right: 15%;
}

.rmv-gmv-container {
  position: relative;
}

.rmv-gmv-attr-modal {
  position: absolute;
  background: rgba(0, 0, 0, 0.45);
  height: auto;
  right: 0;
  bottom: 0;
  padding: 0 16px;
}

.rmv-gmv-attr-modal .item {
  height: 25px;
  line-height: 25px;
  color: white;
  font-size: 10px;
  display: flex;
  align-items: center;
}

.rmv-gmv-attr-modal .item span {
  float: right;
  margin-top: -5px;
  margin-left: 4px;
}

.rmv-gmv-attr-joystick {
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.rmv-gmv-attr-joystick-inner {
  position: relative;
}

.rmv-gmv-attr-joystick-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 15px;
  width: 40px;
}

.rmv-gmv-attr-joystick .arrow {
  border: solid white;
  border-width: 0 4px 4px 0;
  display: inline-block;
  padding: 4px;
  height: fit-content;
  cursor: pointer;
}

.rmv-gmv-attr-joystick-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.rmv-gmv-attr-joystick-arrow i {
  border: solid white;
  display: inline-block;
  cursor: pointer;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 12.5px 18px 12.5px;
  border-color: transparent transparent #fff transparent;

}

.rmv-gmv-attr-joystick-arrow-up {
  position: absolute;
  height: 20px;
  width: 100%;
  top: 5px;
  left: 0;
}


.rmv-gmv-attr-joystick-arrow-right {
  position: absolute;
  height: 100%;
  width: 20px;
  top: 0;
  right: 5px;
}

.rmv-gmv-attr-joystick-arrow-right i {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}

.rmv-gmv-attr-joystick-arrow-left {
  position: absolute;
  height: 100%;
  width: 20px;
  top: 0;
  left: 5px;
}

.rmv-gmv-attr-joystick-arrow-left i {
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
}

.rmv-gmv-attr-joystick-arrow-down {
  position: absolute;
  height: 20px;
  width: 100%;
  bottom: 50px;
  left: 0;
}

.rmv-gmv-attr-joystick-arrow-plus {
  position: absolute;
  bottom: 25px;
  right: 20px;
  font-size: 20px;
  color: white;
}

.rmv-gmv-attr-joystick-arrow-minus {
  position: absolute;
  bottom: 25px;
  right: 5px;
  font-size: 20px;
  color: white;
}

.rmv-gmv-attr-joystick-arrow-down i {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}

.rmv-sv-container {
  position: relative;
}

.rmv-sv-toolbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 8px 4px;
  background: black;
  color: white;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow-x: auto;
}

.rmv-sv-toolbar .rmv-sv-toolbar-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 1px;
          flex: 1 1 1px;
}

.rmv-sv-toolbar .rmv-sv-toolbar-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.rmv-sv-toolbar-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.rmv-sv-toolbar-item label:last-child {
  margin-left: 4px;
}

.rmv-sv-compact-container .rmv-gmv-attr-modal {
  position: absolute;
  bottom: 0;
  height: 50px;
  width: 100%;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: rgba(51, 51, 51, 1);
  padding: 0 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: black;
}

.rmv-sv-compact-container .rmv-gmv-attr-modal .rmv-gmv-attr-modal-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.rmv-sv-compact-container .rmv-gmv-attr-modal .rmv-gmv-attr-modal-row .item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 1px;
          flex: 1 1 1px;
  font-size: 12px;
}

.rmv-sv-loose-container {
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.rmv-sv-loose-container .rmv-gmv-attr-modal {
  position: absolute;
  bottom: 0;
  height: 50px;
  width: 100%;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: rgba(51, 51, 51, 1);
  padding: 0 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.rmv-sv-loose-container .rmv-gmv-attr-modal-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.rmv-sv-loose-container .rmv-gmv-attr-modal .item {
  color: rgba(51, 51, 51, 1);
  font-size: 14px;
  line-height: 22px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 1px;
          flex: 1 1 1px;
}

.rmv-sv-loose-container .rmv-sv-toolbar {
  position: absolute;
  width: 100px;
  min-width: 100px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 8px 8px;
  opacity: 0.75;
  background: #50535a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  right: 10px;
  top: 20px;
}

.rmv-sv-color-picker {
  position: absolute;
  width: 100px;
  min-width: 100px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 8px 8px;
  opacity: 0.75;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  left: 10px;
  top: 20px;
}

.rmv-sv-loose-container .rmv-sv-toolbar .rmv-sv-toolbar-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 35px;
  width: 100%;
  font-size: 14px;
}

.rmv-sv-joystick {
  position: relative;
  height: 90px;
  margin-top: 8px;
  width: 100%;
}

.rmv-sv-compact-container .rmv-sv-joystick {
  position: absolute;
  width: 100px;
  bottom: 15%;
  right: 0;
}

.rmv-sv-joystick .rmv-sv-joystick-center {
  width: 22px;
  height: 22px;
  border-radius: 22px;
  background: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  cursor: pointer;
}

.rmv-sv-joystick-left-rotate {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 12px;
  cursor: pointer;
  z-index: 99;
}

.rmv-sv-joystick-right-rotate {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 12px;
  cursor: pointer;
  z-index: 99;
}

.react-switch-checkbox {
  height: 0;
  width: 0;
  visibility: hidden;
}

.react-switch-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
  width: 32px;
  height: 6px;
  background: rgba(255, 246, 237, 1);
  border-radius: 100px;
  position: relative;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}

.react-switch-label .react-switch-button {
  content: '';
  position: absolute;
  top: -4px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 16px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  background: rgba(195, 195, 195, 1);
  -webkit-box-shadow: 0 0 2px 0 rgba(10, 10, 10, 0.29);
          box-shadow: 0 0 2px 0 rgba(10, 10, 10, 0.29);
}

.react-switch-checkbox:checked+.react-switch-label .react-switch-button {
  left: calc(100% - 2px);
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.react-switch-label:active .react-switch-button {
  width: 60px;
}

.rmv-sv-container {
  position: relative;
}

.rmv-sv-toolbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 8px 4px;
  background: black;
  color: white;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow-x: auto;
}

.rmv-sv-toolbar .rmv-sv-toolbar-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 1px;
          flex: 1 1 1px;
}

.rmv-sv-toolbar .rmv-sv-toolbar-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.rmv-sv-toolbar-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.rmv-sv-toolbar-item label:last-child {
  margin-left: 4px;
}

.rmv-sv-compact-container .rmv-gmv-attr-modal {
  position: absolute;
  bottom: 0;
  height: 50px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: rgba(51, 51, 51, 1);
  padding: 0 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: black;
}

.rmv-sv-compact-container .rmv-gmv-attr-modal .rmv-gmv-attr-modal-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.rmv-sv-compact-container .rmv-gmv-attr-modal .rmv-gmv-attr-modal-row .item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 1px;
          flex: 1 1 1px;
  font-size: 12px;
}

.rmv-sv-loose-container {
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.rmv-sv-loose-container .rmv-gmv-attr-modal {
  position: absolute;
  bottom: 0;
  height: 50px;
  width: 100%;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: rgba(51, 51, 51, 1);
  padding: 0 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.rmv-sv-loose-container .rmv-gmv-attr-modal-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.rmv-sv-loose-container .rmv-gmv-attr-modal .item {
  color: rgba(51, 51, 51, 1);
  font-size: 14px;
  line-height: 22px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 1px;
          flex: 1 1 1px;
}

.rmv-sv-loose-container .rmv-sv-toolbar {
  position: absolute;
  width: 100px;
  min-width: 100px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 8px 8px;
  opacity: 0.75;
  background: #50535a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  right: 10px;
  top: 20px;
}

.rmv-sv-color-picker {
  position: absolute;
  width: 100px;
  min-width: 100px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 8px 8px;
  opacity: 0.75;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  left: 10px;
  top: 20px;
}

.rmv-sv-loose-container .rmv-sv-toolbar .rmv-sv-toolbar-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 35px;
  width: 100%;
  font-size: 14px;
}

.rmv-sv-joystick {
  position: relative;
  height: 90px;
  margin-top: 8px;
  width: 100%;
}

.rmv-sv-compact-container .rmv-sv-joystick {
  position: absolute;
  width: 100px;
  bottom: 15%;
  right: 0;
}

.rmv-sv-joystick .rmv-sv-joystick-center {
  width: 22px;
  height: 22px;
  border-radius: 22px;
  background: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  cursor: pointer;
}

.D3ModelClipImagePreview-image-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.D3ModelClipImagePreview-show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.D3ModelClipImagePreview-button {
  width: 214px;
  height: 32px;
}

.D3ModelClipImagePreview-hide {
  display: none;
}

.fixed-model-comparison-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.fixed-model-comparison-container .block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 40vw;
  height: 95%;
}

.fixed-model-comparison-container .block .iframe {
  position: relative;
  height: 100%;
  width: 100%;
}

.fixed-model-comparison-container .block button {
  margin-top: 8px;
}

.tiled-radio-group-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.tiled-radio-group-container .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  width: 90px;
  height: 30px;
  line-height: 30px;
  margin-right: 16px;
}

.tiled-radio-group-container .selectedItem {
  color: #6874e2;
  border: 1px solid #6874e2;
}

._4I9KND1\+Lc{position:relative}.C0AtZCfFc7{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}._76LhoFaVg0{width:50%;margin-top:12px}._76LhoFaVg0 input{margin-top:12px}
.ij44h2nCS5{position:relative}.ij44h2nCS5 ._9Z6kJezkAc{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.fS73POISF6{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.fS73POISF6 .PO8TLT\+p1M{width:20px}.fS73POISF6 .wMOZHP7Z6V{margin-left:10px}
.fc-draggable-weekly-schedule-calendar-container {
  position: relative;
  background-color: white;
  height: calc(100vh - 220px);
  overflow-y: auto;
  overflow-x: hidden;
}

.fc-draggable-weekly-schedule-calendar-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.fc-draggable-weekly-schedule-calendar-container .react-grid-item {
  border: 1px solid #e9e9e9;
}

.fc-schedule-calendar-container {
  position: relative;
  background: white;
  padding: 16px;
}

.fc-schedule-calendar-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 30px;
  margin-bottom: 16px;
}

.fc-schedule-calendar-date-changer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.uc-selectable-tags-tag .ant-tag {
  background-color: #fafafa;
  border: 1px solid #e9e9e9;
  border-radius: 6px;
  color: rgba(#000, 0.45);
  margin-bottom: 8px;
}

.uc-selectable-tags-tag .ant-tag-checkable-checked {
  background-color: #f1f1ff !important;
}

.uc-selectable-tags-tag {
  border: 1px solid #e9e9e9 !important;
}

.uc-selectable-tags-tag {
  background-color: #fafafa;
}

.spring-number-container {
  text-align: center;
}

.spring-number-number {
  font-size: 36px;
  font-weight: 500;
}

.spring-number-label {
  display: block;
  font-size: 12px;
  color: #9297a6;
}

.add-tenant-device-container {
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 9;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.add-tenant-device-actions {
  height: 50px;
  border-top: 1px solid #e8e8e8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.add-tenant-device-dialogue {
  width: 400px;
  background-color: #fff;
}

.add-tenant-device-dialogue .body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.add-tenant-device-dialogue .body .item {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.add-tenant-device-dialogue .body .item .field {
  height: 50px;
  width: 150px;
  line-height: 50px;
  margin-left: 28px;
}

.add-tenant-device-input {
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.add-tenant-device-dialogue .body .item .field .tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.add-tenant-device-dialogue .body .item .field .area {
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.inquiry-order-stats-by-week-summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 200px;
  height: 110px;
  color: #919db1;
  border-radius: 5px;
  padding-left: 32px;
  margin: 0 0 24px 24px;
  -ms-flex-item-align: end;
      align-self: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background-color: #f3f6f9;
}

.inquiry-order-stats-by-week-summary > span:last-child {
  margin-top: 12px;
  font-size: 22px;
  color: #162d5a;
  font-weight: bold;
}

.inquiry-order-stats-by-week-summary > span:last-child span {
  font-size: 12px;
  margin-left: 12px;
}

.container {
  position: relative;
}

.obit-controls-gizmo {
  position: absolute;
  bottom: calc(5%);
  right: 5%;
  z-index: 888;
  background-color: rgba(255,255,255,0);
  border-radius: 100%;
  -webkit-transition: background-color .15s linear;
  transition: background-color .15s linear;
  cursor: pointer;
}

.obit-controls-gizmo.dragging,
.obit-controls-gizmo:hover {
  background-color: rgba(255,255,255,0.2);
}

.obit-controls-gizmo.inactive {
  background-color: rgba(255,255,255,0) !important;
}

.obit-controls-gizmo.inactive {
  pointer-events: none;
}

.rmv-drawer-panel {
  position: absolute !important;
}

.rmv-drawer-panel {
  width: 400px;
  height: calc(100% - 40px);
  background: white;
  right: 1px;
  top: 39px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  z-index: 999;
  overflow-y: auto;
  overflow-x: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.rmv-drawer-panel-header {
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 8px;
  font-size: 16px;
  font-weight: bolder;
}

.rmv-drawer-panel-body {
  padding: 0 8px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 1px;
          flex: 1 1 1px;
}

.rmv-drawer-panel-body .ant-descriptions-item-container .ant-descriptions-item-content {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.rmv-drawer-panel-body .ant-descriptions-row>td {
  padding-bottom: 8px !important;
}

.rmv-drawer-panel-body .ant-descriptions-header {
  margin-bottom: 10px !important;
}

.rmv-drawer-panel-body .ant-descriptions-title{
  font-size: 14px;
}

.rmv-drawer-panel-body .ant-descriptions-item-label {
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

.rmv-drawer-panel-body .ant-descriptions-item-label {
  width:100px;
}

.react-spinner-loader-swing div{border-radius:50%;float:left;height:1em;width:1em}.react-spinner-loader-swing div:first-of-type{background:-webkit-gradient(linear,left top, right top,color-stop(0, #385c78),to(#325774));background:linear-gradient(90deg,#385c78 0,#325774)}.react-spinner-loader-swing div:nth-of-type(2){background:-webkit-gradient(linear,left top, right top,color-stop(0, #325774),to(#47536a));background:linear-gradient(90deg,#325774 0,#47536a)}.react-spinner-loader-swing div:nth-of-type(3){background:-webkit-gradient(linear,left top, right top,color-stop(0, #4a5369),to(#6b4d59));background:linear-gradient(90deg,#4a5369 0,#6b4d59)}.react-spinner-loader-swing div:nth-of-type(4){background:-webkit-gradient(linear,left top, right top,color-stop(0, #744c55),to(#954646));background:linear-gradient(90deg,#744c55 0,#954646)}.react-spinner-loader-swing div:nth-of-type(5){background:-webkit-gradient(linear,left top, right top,color-stop(0, #9c4543),to(#bb4034));background:linear-gradient(90deg,#9c4543 0,#bb4034)}.react-spinner-loader-swing div:nth-of-type(6){background:-webkit-gradient(linear,left top, right top,color-stop(0, #c33f31),to(#d83b27));background:linear-gradient(90deg,#c33f31 0,#d83b27)}.react-spinner-loader-swing div:nth-of-type(7){background:-webkit-gradient(linear,left top, right top,color-stop(0, #da3b26),to(#db412c));background:linear-gradient(90deg,#da3b26 0,#db412c)}.react-spinner-loader-shadow{clear:left;padding-top:1.5em}.react-spinner-loader-shadow div{-webkit-filter:blur(1px);filter:blur(1px);float:left;width:1em;height:.25em;border-radius:50%;background:#e3dbd2}.react-spinner-loader-shadow .react-spinner-loader-shadow-l{background:#d5d8d6}.react-spinner-loader-shadow .react-spinner-loader-shadow-r{background:#eed3ca}@-webkit-keyframes ball-l{0%,50%{-webkit-transform:rotate(0) translateX(0);transform:rotate(0) translateX(0)}to{-webkit-transform:rotate(50deg) translateX(-2.5em);transform:rotate(50deg) translateX(-2.5em)}}@keyframes ball-l{0%,50%{-webkit-transform:rotate(0) translateX(0);transform:rotate(0) translateX(0)}to{-webkit-transform:rotate(50deg) translateX(-2.5em);transform:rotate(50deg) translateX(-2.5em)}}@-webkit-keyframes ball-r{0%{-webkit-transform:rotate(-50deg) translateX(2.5em);transform:rotate(-50deg) translateX(2.5em)}50%,to{-webkit-transform:rotate(0) translateX(0);transform:rotate(0) translateX(0)}}@keyframes ball-r{0%{-webkit-transform:rotate(-50deg) translateX(2.5em);transform:rotate(-50deg) translateX(2.5em)}50%,to{-webkit-transform:rotate(0) translateX(0);transform:rotate(0) translateX(0)}}@-webkit-keyframes shadow-l-n{0%,50%{opacity:.5;-webkit-transform:translateX(0);transform:translateX(0)}to{opacity:.125;-webkit-transform:translateX(-1.75em);transform:translateX(-1.75em)}}@keyframes shadow-l-n{0%,50%{opacity:.5;-webkit-transform:translateX(0);transform:translateX(0)}to{opacity:.125;-webkit-transform:translateX(-1.75em);transform:translateX(-1.75em)}}@-webkit-keyframes shadow-r-n{0%{opacity:.125;-webkit-transform:translateX(1.75em);transform:translateX(1.75em)}50%,to{opacity:.5;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes shadow-r-n{0%{opacity:.125;-webkit-transform:translateX(1.75em);transform:translateX(1.75em)}50%,to{opacity:.5;-webkit-transform:translateX(0);transform:translateX(0)}}.react-spinner-loader-swing-l{-webkit-animation:ball-l .425s ease-in-out infinite alternate;animation:ball-l .425s ease-in-out infinite alternate}.react-spinner-loader-swing-r{-webkit-animation:ball-r .425s ease-in-out infinite alternate;animation:ball-r .425s ease-in-out infinite alternate}.react-spinner-loader-shadow-l{-webkit-animation:shadow-l-n .425s ease-in-out infinite alternate;animation:shadow-l-n .425s ease-in-out infinite alternate}.react-spinner-loader-shadow-r{-webkit-animation:shadow-r-n .425s ease-in-out infinite alternate;animation:shadow-r-n .425s ease-in-out infinite alternate}.react-spinner-loader-svg-calLoader{width:230px;height:230px;-webkit-transform-origin:115px 115px;transform-origin:115px 115px;-webkit-animation:loader-spin 1.4s linear infinite;animation:loader-spin 1.4s linear infinite}.react-spinner-loader-svg-cal-loader__path{-webkit-animation:loader-path 1.4s ease-in-out infinite;animation:loader-path 1.4s ease-in-out infinite}@-webkit-keyframes loader-spin{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes loader-spin{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@-webkit-keyframes loader-path{0%{stroke-dasharray:0,580,0,0,0,0,0,0,0}50%{stroke-dasharray:0,450,10,30,10,30,10,30,10}to{stroke-dasharray:0,580,0,0,0,0,0,0,0}}@keyframes loader-path{0%{stroke-dasharray:0,580,0,0,0,0,0,0,0}50%{stroke-dasharray:0,450,10,30,10,30,10,30,10}to{stroke-dasharray:0,580,0,0,0,0,0,0,0}}.react-spinner-loader-svg svg{-webkit-transform-origin:50% 65%;transform-origin:50% 65%}.react-spinner-loader-svg svg polygon{stroke-dasharray:17;-webkit-animation:dash 2.5s cubic-bezier(.35,.04,.63,.95) infinite;animation:dash 2.5s cubic-bezier(.35,.04,.63,.95) infinite}@-webkit-keyframes dash{to{stroke-dashoffset:136}}@keyframes dash{to{stroke-dashoffset:136}}@-webkit-keyframes rotate{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes rotate{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}
@font-face{font-family:anticon;src:url(//at.alicdn.com/t/font_1434092639_4910953.eot);src:url(//at.alicdn.com/t/font_1434092639_4910953.eot#iefix) format("embedded-opentype"),url(//at.alicdn.com/t/font_1434092639_4910953.woff) format("woff"),url(//at.alicdn.com/t/font_1434092639_4910953.ttf) format("truetype"),url(//at.alicdn.com/t/font_1434092639_4910953.svg#iconfont) format("svg")}.rc-dropdown{position:absolute;left:-9999px;top:-9999px;z-index:1070;display:block;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;font-size:12px;font-weight:400;line-height:1.5}.rc-dropdown-hidden{display:none}.rc-dropdown .rc-menu{outline:none;position:relative;list-style-type:none;padding:0;margin:2px 0;text-align:left;background-color:#fff;border-radius:3px;-webkit-box-shadow:0 1px 5px #ccc;box-shadow:0 1px 5px #ccc;background-clip:padding-box;border:1px solid #ccc}.rc-dropdown .rc-menu>li{margin:0;padding:0}.rc-dropdown .rc-menu:before{content:"";position:absolute;top:-4px;left:0;width:100%;height:4px;background:#fff;background:hsla(0,0%,100%,.01)}.rc-dropdown .rc-menu>.rc-dropdown .rc-menu-item{position:relative;display:block;padding:7px 10px;clear:both;font-size:12px;font-weight:400;color:#666;white-space:nowrap}.rc-dropdown .rc-menu>.rc-dropdown .rc-menu-item-active,.rc-dropdown .rc-menu>.rc-dropdown .rc-menu-item-selected,.rc-dropdown .rc-menu>.rc-dropdown .rc-menu-item:hover{background-color:#ebfaff}.rc-dropdown .rc-menu>.rc-dropdown .rc-menu-item-selected{position:relative}.rc-dropdown .rc-menu>.rc-dropdown .rc-menu-item-selected:after{content:"\e613";font-family:anticon;font-weight:700;position:absolute;top:6px;right:16px;color:#3cb8f0}.rc-dropdown .rc-menu>.rc-dropdown .rc-menu-item-disabled{color:#ccc;cursor:not-allowed;pointer-events:none}.rc-dropdown .rc-menu>.rc-dropdown .rc-menu-item-disabled:hover{color:#ccc;background-color:#fff;cursor:not-allowed}.rc-dropdown .rc-menu>.rc-dropdown .rc-menu-item:last-child{border-bottom-left-radius:3px;border-bottom-right-radius:3px}.rc-dropdown .rc-menu>.rc-dropdown .rc-menu-item:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.rc-dropdown .rc-menu>.rc-dropdown .rc-menu-item-divider{height:1px;margin:1px 0;overflow:hidden;background-color:#e5e5e5;line-height:0}.rc-dropdown-slide-up-appear,.rc-dropdown-slide-up-enter{display:block!important}.rc-dropdown-slide-up-appear,.rc-dropdown-slide-up-enter{-webkit-animation-duration:.3s;animation-duration:.3s;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-transform-origin:0 0;transform-origin:0 0;opacity:0;-webkit-animation-timing-function:cubic-bezier(.08,.82,.17,1);animation-timing-function:cubic-bezier(.08,.82,.17,1);-webkit-animation-play-state:paused;animation-play-state:paused}.rc-dropdown-slide-up-leave{display:block!important}.rc-dropdown-slide-up-leave{-webkit-animation-duration:.3s;animation-duration:.3s;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-transform-origin:0 0;transform-origin:0 0;opacity:1;-webkit-animation-timing-function:cubic-bezier(.6,.04,.98,.34);animation-timing-function:cubic-bezier(.6,.04,.98,.34);-webkit-animation-play-state:paused;animation-play-state:paused}.rc-dropdown-slide-up-appear.rc-dropdown-slide-up-appear-active.rc-dropdown-placement-bottomCenter,.rc-dropdown-slide-up-appear.rc-dropdown-slide-up-appear-active.rc-dropdown-placement-bottomLeft,.rc-dropdown-slide-up-appear.rc-dropdown-slide-up-appear-active.rc-dropdown-placement-bottomRight,.rc-dropdown-slide-up-enter.rc-dropdown-slide-up-enter-active.rc-dropdown-placement-bottomCenter,.rc-dropdown-slide-up-enter.rc-dropdown-slide-up-enter-active.rc-dropdown-placement-bottomLeft,.rc-dropdown-slide-up-enter.rc-dropdown-slide-up-enter-active.rc-dropdown-placement-bottomRight{-webkit-animation-name:rcDropdownSlideUpIn;animation-name:rcDropdownSlideUpIn;-webkit-animation-play-state:running;animation-play-state:running}.rc-dropdown-slide-up-appear.rc-dropdown-slide-up-appear-active.rc-dropdown-placement-topCenter,.rc-dropdown-slide-up-appear.rc-dropdown-slide-up-appear-active.rc-dropdown-placement-topLeft,.rc-dropdown-slide-up-appear.rc-dropdown-slide-up-appear-active.rc-dropdown-placement-topRight,.rc-dropdown-slide-up-enter.rc-dropdown-slide-up-enter-active.rc-dropdown-placement-topCenter,.rc-dropdown-slide-up-enter.rc-dropdown-slide-up-enter-active.rc-dropdown-placement-topLeft,.rc-dropdown-slide-up-enter.rc-dropdown-slide-up-enter-active.rc-dropdown-placement-topRight{-webkit-animation-name:rcDropdownSlideDownIn;animation-name:rcDropdownSlideDownIn;-webkit-animation-play-state:running;animation-play-state:running}.rc-dropdown-slide-up-leave.rc-dropdown-slide-up-leave-active.rc-dropdown-placement-bottomCenter,.rc-dropdown-slide-up-leave.rc-dropdown-slide-up-leave-active.rc-dropdown-placement-bottomLeft,.rc-dropdown-slide-up-leave.rc-dropdown-slide-up-leave-active.rc-dropdown-placement-bottomRight{-webkit-animation-name:rcDropdownSlideUpOut;animation-name:rcDropdownSlideUpOut;-webkit-animation-play-state:running;animation-play-state:running}.rc-dropdown-slide-up-leave.rc-dropdown-slide-up-leave-active.rc-dropdown-placement-topCenter,.rc-dropdown-slide-up-leave.rc-dropdown-slide-up-leave-active.rc-dropdown-placement-topLeft,.rc-dropdown-slide-up-leave.rc-dropdown-slide-up-leave-active.rc-dropdown-placement-topRight{-webkit-animation-name:rcDropdownSlideDownOut;animation-name:rcDropdownSlideDownOut;-webkit-animation-play-state:running;animation-play-state:running}@-webkit-keyframes rcDropdownSlideUpIn{0%{opacity:0;-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:scaleY(0);transform:scaleY(0)}to{opacity:1;-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:scaleY(1);transform:scaleY(1)}}@keyframes rcDropdownSlideUpIn{0%{opacity:0;-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:scaleY(0);transform:scaleY(0)}to{opacity:1;-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:scaleY(1);transform:scaleY(1)}}@-webkit-keyframes rcDropdownSlideUpOut{0%{opacity:1;-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:scaleY(1);transform:scaleY(1)}to{opacity:0;-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:scaleY(0);transform:scaleY(0)}}@keyframes rcDropdownSlideUpOut{0%{opacity:1;-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:scaleY(1);transform:scaleY(1)}to{opacity:0;-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:scaleY(0);transform:scaleY(0)}}@-webkit-keyframes rcDropdownSlideDownIn{0%{opacity:0;-webkit-transform-origin:0 100%;transform-origin:0 100%;-webkit-transform:scaleY(0);transform:scaleY(0)}to{opacity:1;-webkit-transform-origin:0 100%;transform-origin:0 100%;-webkit-transform:scaleY(1);transform:scaleY(1)}}@keyframes rcDropdownSlideDownIn{0%{opacity:0;-webkit-transform-origin:0 100%;transform-origin:0 100%;-webkit-transform:scaleY(0);transform:scaleY(0)}to{opacity:1;-webkit-transform-origin:0 100%;transform-origin:0 100%;-webkit-transform:scaleY(1);transform:scaleY(1)}}@-webkit-keyframes rcDropdownSlideDownOut{0%{opacity:1;-webkit-transform-origin:0 100%;transform-origin:0 100%;-webkit-transform:scaleY(1);transform:scaleY(1)}to{opacity:0;-webkit-transform-origin:0 100%;transform-origin:0 100%;-webkit-transform:scaleY(0);transform:scaleY(0)}}@keyframes rcDropdownSlideDownOut{0%{opacity:1;-webkit-transform-origin:0 100%;transform-origin:0 100%;-webkit-transform:scaleY(1);transform:scaleY(1)}to{opacity:0;-webkit-transform-origin:0 100%;transform-origin:0 100%;-webkit-transform:scaleY(0);transform:scaleY(0)}}.rc-dropdown-arrow{position:absolute;-webkit-box-shadow:0 1px 5px #ccc;box-shadow:0 1px 5px #ccc;border:4px solid transparent;-webkit-transform:rotate(45deg);transform:rotate(45deg)}.rc-dropdown-show-arrow.rc-dropdown-placement-top,.rc-dropdown-show-arrow.rc-dropdown-placement-topLeft,.rc-dropdown-show-arrow.rc-dropdown-placement-topRight{padding-bottom:6px}.rc-dropdown-show-arrow.rc-dropdown-placement-bottom,.rc-dropdown-show-arrow.rc-dropdown-placement-bottomLeft,.rc-dropdown-show-arrow.rc-dropdown-placement-bottomRight{padding-top:6px}.rc-dropdown-placement-top .rc-dropdown-arrow,.rc-dropdown-placement-topLeft .rc-dropdown-arrow,.rc-dropdown-placement-topRight .rc-dropdown-arrow{bottom:4px;border-top-color:#fff}.rc-dropdown-placement-top .rc-dropdown-arrow{left:50%}.rc-dropdown-placement-topLeft .rc-dropdown-arrow{left:15%}.rc-dropdown-placement-topRight .rc-dropdown-arrow{right:15%}.rc-dropdown-placement-bottom .rc-dropdown-arrow,.rc-dropdown-placement-bottomLeft .rc-dropdown-arrow,.rc-dropdown-placement-bottomRight .rc-dropdown-arrow{top:4px;border-bottom-color:#fff}.rc-dropdown-placement-bottom .rc-dropdown-arrow{left:50%}.rc-dropdown-placement-bottomLeft .rc-dropdown-arrow{left:15%}.rc-dropdown-placement-bottomRight .rc-dropdown-arrow{right:15%}
@font-face{font-family:FontAwesome;src:url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.2.0/fonts/fontawesome-webfont.eot);src:url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.2.0/fonts/fontawesome-webfont.eot#iefix) format("embedded-opentype"),url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.2.0/fonts/fontawesome-webfont.woff) format("woff"),url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.2.0/fonts/fontawesome-webfont.ttf) format("truetype"),url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.2.0/fonts/fontawesome-webfont.svg#fontawesomeregular) format("svg");font-weight:400;font-style:normal}.rc-menu{outline:none;margin-bottom:0;padding-left:0;padding-right:0;list-style:none;border:1px solid #d9d9d9;-webkit-box-shadow:0 0 4px #d9d9d9;box-shadow:0 0 4px #d9d9d9;border-radius:3px;color:#666}.rc-menu-rtl{direction:rtl}.rc-menu-hidden{display:none}.rc-menu-collapse{overflow:hidden;-webkit-transition:height .3s ease-out;transition:height .3s ease-out}.rc-menu-item-group-list{margin:0;padding:0}.rc-menu-item-group-title{color:#999;line-height:1.5;padding:8px 10px;border-bottom:1px solid #dedede}.rc-menu-item-active,.rc-menu-item-selected,.rc-menu-submenu-active>.rc-menu-submenu-title{background-color:#eaf8fe}.rc-menu-item-selected{-webkit-transform:translateZ(0);transform:translateZ(0)}.rc-menu-submenu-selected{background-color:#eaf8fe}.rc-menu>li.rc-menu-submenu{padding:0}.rc-menu-horizontal.rc-menu-sub,.rc-menu-vertical-left.rc-menu-sub,.rc-menu-vertical-right.rc-menu-sub,.rc-menu-vertical.rc-menu-sub{min-width:160px;margin-top:0}.rc-menu-item,.rc-menu-submenu-title{margin:0;position:relative;display:block;padding:7px 7px 7px 16px;white-space:nowrap}.rc-menu-rtl .rc-menu-item,.rc-menu-rtl .rc-menu-submenu-title{padding:7px 16px 7px 7px}.rc-menu-item.rc-menu-item-disabled,.rc-menu-item.rc-menu-submenu-disabled,.rc-menu-submenu-title.rc-menu-item-disabled,.rc-menu-submenu-title.rc-menu-submenu-disabled{color:#777!important}.rc-menu-item-divider{height:1px;margin:1px 0;overflow:hidden;padding:0;line-height:0;background-color:#e5e5e5}.rc-menu-submenu-popup{position:absolute}.rc-menu-submenu-popup .submenu-title-wrapper{padding-right:20px}.rc-menu-submenu-rtl.rc-menu-submenu-popup .submenu-title-wrapper,.rc-menu-submenu-rtl .rc-menu-submenu-popup .submenu-title-wrapper{padding-right:0;padding-left:20px}.rc-menu-submenu>.rc-menu{background-color:#fff}.rc-menu .rc-menu-item .anticon,.rc-menu .rc-menu-submenu-title .anticon{width:14px;height:14px;margin-right:8px;top:-1px}.rc-menu-rtl .rc-menu .rc-menu-item .anticon,.rc-menu-rtl .rc-menu .rc-menu-submenu-title .anticon{margin-right:0;margin-left:8px}.rc-menu-horizontal{background-color:#f3f5f7;border:none;border-bottom:1px solid #d9d9d9;-webkit-box-shadow:none;box-shadow:none;white-space:nowrap;overflow:hidden}.rc-menu-horizontal>.rc-menu-item,.rc-menu-horizontal>.rc-menu-submenu>.rc-menu-submenu-title{padding:15px 20px}.rc-menu-horizontal>.rc-menu-item,.rc-menu-horizontal>.rc-menu-submenu{border-bottom:2px solid transparent;display:inline-block;vertical-align:bottom}.rc-menu-horizontal>.rc-menu-item-active,.rc-menu-horizontal>.rc-menu-submenu-active{border-bottom:2px solid #2db7f5;background-color:#f3f5f7;color:#2baee9}.rc-menu-horizontal:after{content:"\20";display:block;height:0;clear:both}.rc-menu-inline,.rc-menu-vertical,.rc-menu-vertical-left,.rc-menu-vertical-right{padding:12px 0}.rc-menu-inline>.rc-menu-item,.rc-menu-inline>.rc-menu-submenu>.rc-menu-submenu-title,.rc-menu-vertical-left>.rc-menu-item,.rc-menu-vertical-left>.rc-menu-submenu>.rc-menu-submenu-title,.rc-menu-vertical-right>.rc-menu-item,.rc-menu-vertical-right>.rc-menu-submenu>.rc-menu-submenu-title,.rc-menu-vertical>.rc-menu-item,.rc-menu-vertical>.rc-menu-submenu>.rc-menu-submenu-title{padding:12px 8px 12px 24px}.rc-menu-rtl.rc-menu-inline>.rc-menu-item,.rc-menu-rtl.rc-menu-inline>.rc-menu-submenu>.rc-menu-submenu-title,.rc-menu-rtl.rc-menu-vertical-left>.rc-menu-item,.rc-menu-rtl.rc-menu-vertical-left>.rc-menu-submenu>.rc-menu-submenu-title,.rc-menu-rtl.rc-menu-vertical-right>.rc-menu-item,.rc-menu-rtl.rc-menu-vertical-right>.rc-menu-submenu>.rc-menu-submenu-title,.rc-menu-rtl.rc-menu-vertical>.rc-menu-item,.rc-menu-rtl.rc-menu-vertical>.rc-menu-submenu>.rc-menu-submenu-title{padding:12px 24px 12px 8px}.rc-menu-inline .rc-menu-submenu-arrow,.rc-menu-vertical-left .rc-menu-submenu-arrow,.rc-menu-vertical-right .rc-menu-submenu-arrow,.rc-menu-vertical .rc-menu-submenu-arrow{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;vertical-align:baseline;text-align:center;text-transform:none;text-rendering:auto;position:absolute;right:16px;line-height:1.5em}.rc-menu-inline .rc-menu-submenu-arrow:before,.rc-menu-vertical-left .rc-menu-submenu-arrow:before,.rc-menu-vertical-right .rc-menu-submenu-arrow:before,.rc-menu-vertical .rc-menu-submenu-arrow:before{content:"\f0da"}.rc-menu-rtl.rc-menu-inline .rc-menu-submenu-arrow:before,.rc-menu-rtl.rc-menu-vertical-left .rc-menu-submenu-arrow:before,.rc-menu-rtl.rc-menu-vertical-right .rc-menu-submenu-arrow:before,.rc-menu-rtl.rc-menu-vertical .rc-menu-submenu-arrow:before,.rc-menu-submenu-rtl .rc-menu-inline .rc-menu-submenu-arrow:before,.rc-menu-submenu-rtl .rc-menu-vertical-left .rc-menu-submenu-arrow:before,.rc-menu-submenu-rtl .rc-menu-vertical-right .rc-menu-submenu-arrow:before,.rc-menu-submenu-rtl .rc-menu-vertical .rc-menu-submenu-arrow:before{content:"\f0d9"}.rc-menu-rtl.rc-menu-inline .rc-menu-submenu-arrow,.rc-menu-rtl.rc-menu-vertical-left .rc-menu-submenu-arrow,.rc-menu-rtl.rc-menu-vertical-right .rc-menu-submenu-arrow,.rc-menu-rtl.rc-menu-vertical .rc-menu-submenu-arrow,.rc-menu-submenu-rtl .rc-menu-inline .rc-menu-submenu-arrow,.rc-menu-submenu-rtl .rc-menu-vertical-left .rc-menu-submenu-arrow,.rc-menu-submenu-rtl .rc-menu-vertical-right .rc-menu-submenu-arrow,.rc-menu-submenu-rtl .rc-menu-vertical .rc-menu-submenu-arrow{right:auto;left:16px}.rc-menu-inline .rc-menu-submenu-arrow{-webkit-transform:rotate(90deg);transform:rotate(90deg);-webkit-transition:-webkit-transform .3s;transition:-webkit-transform .3s;transition:transform .3s;transition:transform .3s, -webkit-transform .3s}.rc-menu-inline .rc-menu-submenu-open>.rc-menu-submenu-title .rc-menu-submenu-arrow{-webkit-transform:rotate(-90deg);transform:rotate(-90deg)}.rc-menu-vertical-left.rc-menu-sub,.rc-menu-vertical-right.rc-menu-sub,.rc-menu-vertical.rc-menu-sub{padding:0}.rc-menu-submenu-rtl .rc-menu-vertical-left.rc-menu-sub,.rc-menu-submenu-rtl .rc-menu-vertical-right.rc-menu-sub,.rc-menu-submenu-rtl .rc-menu-vertical.rc-menu-sub{direction:rtl}.rc-menu-sub.rc-menu-inline{padding:0;border:none;border-radius:0;-webkit-box-shadow:none;box-shadow:none}.rc-menu-sub.rc-menu-inline>.rc-menu-item,.rc-menu-sub.rc-menu-inline>.rc-menu-submenu>.rc-menu-submenu-title{padding-top:8px;padding-bottom:8px;padding-right:0}.rc-menu-rtl .rc-menu-sub.rc-menu-inline>.rc-menu-item,.rc-menu-rtl .rc-menu-sub.rc-menu-inline>.rc-menu-submenu>.rc-menu-submenu-title{padding-left:0}.rc-menu-open-slide-up-appear,.rc-menu-open-slide-up-enter{-webkit-animation-duration:.3s;animation-duration:.3s;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-transform-origin:0 0;transform-origin:0 0;opacity:0;-webkit-animation-timing-function:cubic-bezier(.08,.82,.17,1);animation-timing-function:cubic-bezier(.08,.82,.17,1);-webkit-animation-play-state:paused;animation-play-state:paused}.rc-menu-open-slide-up-leave{-webkit-animation-duration:.3s;animation-duration:.3s;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-transform-origin:0 0;transform-origin:0 0;opacity:1;-webkit-animation-timing-function:cubic-bezier(.6,.04,.98,.34);animation-timing-function:cubic-bezier(.6,.04,.98,.34);-webkit-animation-play-state:paused;animation-play-state:paused}.rc-menu-open-slide-up-appear.rc-menu-open-slide-up-appear-active,.rc-menu-open-slide-up-enter.rc-menu-open-slide-up-enter-active{-webkit-animation-name:rcMenuOpenSlideUpIn;animation-name:rcMenuOpenSlideUpIn;-webkit-animation-play-state:running;animation-play-state:running}.rc-menu-open-slide-up-leave.rc-menu-open-slide-up-leave-active{-webkit-animation-name:rcMenuOpenSlideUpOut;animation-name:rcMenuOpenSlideUpOut;-webkit-animation-play-state:running;animation-play-state:running}@-webkit-keyframes rcMenuOpenSlideUpIn{0%{opacity:0;-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:scaleY(0);transform:scaleY(0)}to{opacity:1;-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:scaleY(1);transform:scaleY(1)}}@keyframes rcMenuOpenSlideUpIn{0%{opacity:0;-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:scaleY(0);transform:scaleY(0)}to{opacity:1;-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:scaleY(1);transform:scaleY(1)}}@-webkit-keyframes rcMenuOpenSlideUpOut{0%{opacity:1;-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:scaleY(1);transform:scaleY(1)}to{opacity:0;-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:scaleY(0);transform:scaleY(0)}}@keyframes rcMenuOpenSlideUpOut{0%{opacity:1;-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:scaleY(1);transform:scaleY(1)}to{opacity:0;-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:scaleY(0);transform:scaleY(0)}}.rc-menu-open-zoom-appear,.rc-menu-open-zoom-enter{opacity:0;-webkit-animation-duration:.3s;animation-duration:.3s;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-animation-timing-function:cubic-bezier(.08,.82,.17,1);animation-timing-function:cubic-bezier(.08,.82,.17,1);-webkit-animation-play-state:paused;animation-play-state:paused}.rc-menu-open-zoom-leave{-webkit-animation-duration:.3s;animation-duration:.3s;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-animation-timing-function:cubic-bezier(.6,.04,.98,.34);animation-timing-function:cubic-bezier(.6,.04,.98,.34);-webkit-animation-play-state:paused;animation-play-state:paused}.rc-menu-open-zoom-appear.rc-menu-open-zoom-appear-active,.rc-menu-open-zoom-enter.rc-menu-open-zoom-enter-active{-webkit-animation-name:rcMenuOpenZoomIn;animation-name:rcMenuOpenZoomIn;-webkit-animation-play-state:running;animation-play-state:running}.rc-menu-open-zoom-leave.rc-menu-open-zoom-leave-active{-webkit-animation-name:rcMenuOpenZoomOut;animation-name:rcMenuOpenZoomOut;-webkit-animation-play-state:running;animation-play-state:running}.rc-menu-submenu-rtl.rc-menu-open-zoom-appear,.rc-menu-submenu-rtl .rc-menu-open-zoom-appear,.rc-menu-submenu-rtl.rc-menu-open-zoom-enter,.rc-menu-submenu-rtl .rc-menu-open-zoom-enter,.rc-menu-submenu-rtl.rc-menu-open-zoom-leave,.rc-menu-submenu-rtl .rc-menu-open-zoom-leave{-webkit-transform-origin:top right!important;transform-origin:top right!important}@-webkit-keyframes rcMenuOpenZoomIn{0%{opacity:0;-webkit-transform:scale(0);transform:scale(0)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes rcMenuOpenZoomIn{0%{opacity:0;-webkit-transform:scale(0);transform:scale(0)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes rcMenuOpenZoomOut{0%{-webkit-transform:scale(1);transform:scale(1)}to{opacity:0;-webkit-transform:scale(0);transform:scale(0)}}@keyframes rcMenuOpenZoomOut{0%{-webkit-transform:scale(1);transform:scale(1)}to{opacity:0;-webkit-transform:scale(0);transform:scale(0)}}
.rc-tooltip.rc-tooltip-zoom-appear,.rc-tooltip.rc-tooltip-zoom-enter{opacity:0}.rc-tooltip.rc-tooltip-zoom-enter,.rc-tooltip.rc-tooltip-zoom-leave{display:block}.rc-tooltip-zoom-appear,.rc-tooltip-zoom-enter{opacity:0;-webkit-animation-duration:.3s;animation-duration:.3s;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-timing-function:cubic-bezier(.18,.89,.32,1.28);animation-timing-function:cubic-bezier(.18,.89,.32,1.28);-webkit-animation-play-state:paused;animation-play-state:paused}.rc-tooltip-zoom-leave{-webkit-animation-duration:.3s;animation-duration:.3s;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-timing-function:cubic-bezier(.6,-.3,.74,.05);animation-timing-function:cubic-bezier(.6,-.3,.74,.05);-webkit-animation-play-state:paused;animation-play-state:paused}.rc-tooltip-zoom-appear.rc-tooltip-zoom-appear-active,.rc-tooltip-zoom-enter.rc-tooltip-zoom-enter-active{-webkit-animation-name:rcToolTipZoomIn;animation-name:rcToolTipZoomIn;-webkit-animation-play-state:running;animation-play-state:running}.rc-tooltip-zoom-leave.rc-tooltip-zoom-leave-active{-webkit-animation-name:rcToolTipZoomOut;animation-name:rcToolTipZoomOut;-webkit-animation-play-state:running;animation-play-state:running}@-webkit-keyframes rcToolTipZoomIn{0%{opacity:0;-webkit-transform-origin:50% 50%;transform-origin:50% 50%;-webkit-transform:scale(0);transform:scale(0)}to{opacity:1;-webkit-transform-origin:50% 50%;transform-origin:50% 50%;-webkit-transform:scale(1);transform:scale(1)}}@keyframes rcToolTipZoomIn{0%{opacity:0;-webkit-transform-origin:50% 50%;transform-origin:50% 50%;-webkit-transform:scale(0);transform:scale(0)}to{opacity:1;-webkit-transform-origin:50% 50%;transform-origin:50% 50%;-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes rcToolTipZoomOut{0%{opacity:1;-webkit-transform-origin:50% 50%;transform-origin:50% 50%;-webkit-transform:scale(1);transform:scale(1)}to{opacity:0;-webkit-transform-origin:50% 50%;transform-origin:50% 50%;-webkit-transform:scale(0);transform:scale(0)}}@keyframes rcToolTipZoomOut{0%{opacity:1;-webkit-transform-origin:50% 50%;transform-origin:50% 50%;-webkit-transform:scale(1);transform:scale(1)}to{opacity:0;-webkit-transform-origin:50% 50%;transform-origin:50% 50%;-webkit-transform:scale(0);transform:scale(0)}}.rc-tooltip{position:absolute;z-index:1070;display:block;visibility:visible;font-size:12px;line-height:1.5;opacity:.9}.rc-tooltip-hidden{display:none}.rc-tooltip-placement-top,.rc-tooltip-placement-topLeft,.rc-tooltip-placement-topRight{padding:5px 0 9px}.rc-tooltip-placement-right,.rc-tooltip-placement-rightBottom,.rc-tooltip-placement-rightTop{padding:0 5px 0 9px}.rc-tooltip-placement-bottom,.rc-tooltip-placement-bottomLeft,.rc-tooltip-placement-bottomRight{padding:9px 0 5px}.rc-tooltip-placement-left,.rc-tooltip-placement-leftBottom,.rc-tooltip-placement-leftTop{padding:0 9px 0 5px}.rc-tooltip-inner{padding:8px 10px;color:#fff;text-align:left;text-decoration:none;background-color:#373737;border-radius:6px;-webkit-box-shadow:0 0 4px rgba(0,0,0,.17);box-shadow:0 0 4px rgba(0,0,0,.17);min-height:34px}.rc-tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.rc-tooltip-placement-top .rc-tooltip-arrow,.rc-tooltip-placement-topLeft .rc-tooltip-arrow,.rc-tooltip-placement-topRight .rc-tooltip-arrow{bottom:4px;margin-left:-5px;border-width:5px 5px 0;border-top-color:#373737}.rc-tooltip-placement-top .rc-tooltip-arrow{left:50%}.rc-tooltip-placement-topLeft .rc-tooltip-arrow{left:15%}.rc-tooltip-placement-topRight .rc-tooltip-arrow{right:15%}.rc-tooltip-placement-right .rc-tooltip-arrow,.rc-tooltip-placement-rightBottom .rc-tooltip-arrow,.rc-tooltip-placement-rightTop .rc-tooltip-arrow{left:4px;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#373737}.rc-tooltip-placement-right .rc-tooltip-arrow{top:50%}.rc-tooltip-placement-rightTop .rc-tooltip-arrow{top:15%;margin-top:0}.rc-tooltip-placement-rightBottom .rc-tooltip-arrow{bottom:15%}.rc-tooltip-placement-left .rc-tooltip-arrow,.rc-tooltip-placement-leftBottom .rc-tooltip-arrow,.rc-tooltip-placement-leftTop .rc-tooltip-arrow{right:4px;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#373737}.rc-tooltip-placement-left .rc-tooltip-arrow{top:50%}.rc-tooltip-placement-leftTop .rc-tooltip-arrow{top:15%;margin-top:0}.rc-tooltip-placement-leftBottom .rc-tooltip-arrow{bottom:15%}.rc-tooltip-placement-bottom .rc-tooltip-arrow,.rc-tooltip-placement-bottomLeft .rc-tooltip-arrow,.rc-tooltip-placement-bottomRight .rc-tooltip-arrow{top:4px;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#373737}.rc-tooltip-placement-bottom .rc-tooltip-arrow{left:50%}.rc-tooltip-placement-bottomLeft .rc-tooltip-arrow{left:15%}.rc-tooltip-placement-bottomRight .rc-tooltip-arrow{right:15%}
.rmv-three-viewer-container {
  position: relative;
}

.rmv-three-viewer-container .rmv-sv-joystick {
  position: absolute;
  width: 100px;
  bottom: 5%;
  right: 5%;
}

.react-switch-checkbox {
  height: 0;
  width: 0;
  visibility: hidden;
}

.react-switch-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
  width: 32px;
  height: 6px;
  background: rgba(255, 246, 237, 1);
  border-radius: 100px;
  position: relative;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}

.react-switch-label .react-switch-button {
  content: '';
  position: absolute;
  top: -4px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 16px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  background: rgba(195, 195, 195, 1);
  -webkit-box-shadow: 0 0 2px 0 rgba(10, 10, 10, 0.29);
          box-shadow: 0 0 2px 0 rgba(10, 10, 10, 0.29);
}

.react-switch-checkbox:checked+.react-switch-label .react-switch-button {
  left: calc(100% - 2px);
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.react-switch-label:active .react-switch-button {
  width: 60px;
}

/*!
 * Cropper.js v1.5.12
 * https://fengyuanchen.github.io/cropperjs
 *
 * Copyright 2015-present Chen Fengyuan
 * Released under the MIT license
 *
 * Date: 2021-06-12T08:00:11.623Z
 */.cropper-container{direction:ltr;font-size:0;line-height:0;position:relative;-ms-touch-action:none;touch-action:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.cropper-container img{max-height:none!important;max-width:none!important;min-height:0!important;min-width:0!important}.cropper-container img{image-orientation:0deg;display:block;height:100%;width:100%}.cropper-canvas,.cropper-crop-box,.cropper-drag-box,.cropper-modal,.cropper-wrap-box{bottom:0;left:0;position:absolute;right:0;top:0}.cropper-canvas,.cropper-wrap-box{overflow:hidden}.cropper-drag-box{background-color:#fff;opacity:0}.cropper-modal{background-color:#000;opacity:.5}.cropper-view-box{display:block;height:100%;outline:1px solid #39f;outline-color:rgba(51,153,255,.75);overflow:hidden;width:100%}.cropper-dashed{border:0 dashed #eee;display:block;opacity:.5;position:absolute}.cropper-dashed.dashed-h{border-bottom-width:1px;border-top-width:1px;height:33.33333%;left:0;top:33.33333%;width:100%}.cropper-dashed.dashed-v{border-left-width:1px;border-right-width:1px;height:100%;left:33.33333%;top:0;width:33.33333%}.cropper-center{display:block;height:0;left:50%;opacity:.75;position:absolute;top:50%;width:0}.cropper-center:after,.cropper-center:before{background-color:#eee;content:" ";display:block;position:absolute}.cropper-center:before{height:1px;left:-3px;top:0;width:7px}.cropper-center:after{height:7px;left:0;top:-3px;width:1px}.cropper-face,.cropper-line,.cropper-point{display:block;height:100%;opacity:.1;position:absolute;width:100%}.cropper-face{background-color:#fff;left:0;top:0}.cropper-line{background-color:#39f}.cropper-line.line-e{cursor:ew-resize;right:-3px;top:0;width:5px}.cropper-line.line-n{cursor:ns-resize;height:5px;left:0;top:-3px}.cropper-line.line-w{cursor:ew-resize;left:-3px;top:0;width:5px}.cropper-line.line-s{bottom:-3px;cursor:ns-resize;height:5px;left:0}.cropper-point{background-color:#39f;height:5px;opacity:.75;width:5px}.cropper-point.point-e{cursor:ew-resize;margin-top:-3px;right:-3px;top:50%}.cropper-point.point-n{cursor:ns-resize;left:50%;margin-left:-3px;top:-3px}.cropper-point.point-w{cursor:ew-resize;left:-3px;margin-top:-3px;top:50%}.cropper-point.point-s{bottom:-3px;cursor:s-resize;left:50%;margin-left:-3px}.cropper-point.point-ne{cursor:nesw-resize;right:-3px;top:-3px}.cropper-point.point-nw{cursor:nwse-resize;left:-3px;top:-3px}.cropper-point.point-sw{bottom:-3px;cursor:nesw-resize;left:-3px}.cropper-point.point-se{bottom:-3px;cursor:nwse-resize;height:20px;opacity:1;right:-3px;width:20px}@media (min-width:768px){.cropper-point.point-se{height:15px;width:15px}}@media (min-width:992px){.cropper-point.point-se{height:10px;width:10px}}@media (min-width:1200px){.cropper-point.point-se{height:5px;opacity:.75;width:5px}}.cropper-point.point-se:before{background-color:#39f;bottom:-50%;content:" ";display:block;height:200%;opacity:0;position:absolute;right:-50%;width:200%}.cropper-invisible{opacity:0}.cropper-bg{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC")}.cropper-hide{display:block;height:0;position:absolute;width:0}.cropper-hidden{display:none!important}.cropper-move{cursor:move}.cropper-crop{cursor:crosshair}.cropper-disabled .cropper-drag-box,.cropper-disabled .cropper-face,.cropper-disabled .cropper-line,.cropper-disabled .cropper-point{cursor:not-allowed}
.snapshot-clip-viewer{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80%;
}

.rmv-viewer-toolbar {
  position: inherit;
  width: 100%;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: rgb(38, 45, 64);
}

.rmv-viewer-toolbar>div {
  height: 100%;
}

.rmv-viewer-toolbar-dropdown {
  background-color: white;
}

.rmv-viewer-toolbar-dropdown .ant-menu-title-content {
  color: black;
}

.rmv-viewer-toolbar-dropdown .rc-menu>li {
  line-height: 25px;
  padding: 0 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  font-size: 14px;
}

.rmv-viewer-toolbar-dropdown .ant-menu-item {
  line-height: 25px;
  height: 25px;
  background-color: white;
}

.rmv-viewer-toolbar-item {
  position: inherit;
  padding: 0 8px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.rmv-viewer-toolbar-item--disabled {
  opacity: 0.6;
  cursor: wait;
}

.rmv-viewer-toolbar-item--selected {
  background-color: white;
}

.rmv-viewer-toolbar-item-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.rmv-viewer-toolbar-item-icon svg {
  position: inherit;
  fill: white;
}

.rmv-viewer-toolbar-item--selected .rmv-viewer-toolbar-item-icon svg {
  fill: black;
}

.rmv-viewer-toolbar-item-label {
  font-size: 14px;
  margin-left: 4px;
  color: white;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.rmv-viewer-toolbar-item--selected .rmv-viewer-toolbar-item-label {
  color: black;
}

.rmv-viewer-toolbar-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.rmv-viewer-toolbar-middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.rmv-viewer-toolbar-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.rmv-viewer-toolbar-action-sheet {
  position: absolute;
  background: white;
  padding: 8px;
  border-radius: 4px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 16px;
  min-width: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #e8e8e8;
}

.rmv-viewer-toolbar-action-sheet-item {
  width: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.rmv-viewer-toolbar-action-sheet-item-tooltip .ant-tooltip-arrow-content {
  background-color: white;
}

.rmv-sv-joystick {
  position: relative;
  height: 90px;
  margin-top: 8px;
  width: 100%;
}

.rmv-sv-joystick .rmv-sv-joystick-center {
  width: 22px;
  height: 22px;
  border-radius: 22px;
  background: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  cursor: pointer;
}

.rmv-sv-joystick-left-rotate {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 12px;
  cursor: pointer;
  z-index: 99;
}

.rmv-sv-joystick-right-rotate {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 12px;
  cursor: pointer;
  z-index: 99;
}

.cssload-box-loading {
  width: 49px;
  height: 49px;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.cssload-box-loading:before {
  content: '';
  width: 49px;
  height: 5px;
  background: rgb(0, 0, 0);
  opacity: 0.1;
  position: absolute;
  top: 58px;
  left: 0;
  border-radius: 50%;
  animation: shadow 0.58s linear infinite;
  -o-animation: shadow 0.58s linear infinite;
  -ms-animation: shadow 0.58s linear infinite;
  -webkit-animation: shadow 0.58s linear infinite;
  -moz-animation: shadow 0.58s linear infinite;
}

.cssload-box-loading:after {
  content: '';
  width: 49px;
  height: 49px;
  background: #1890ff;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 3px;
  animation: cssload-animate 0.58s linear infinite;
  -o-animation: cssload-animate 0.58s linear infinite;
  -ms-animation: cssload-animate 0.58s linear infinite;
  -webkit-animation: cssload-animate 0.58s linear infinite;
  -moz-animation: cssload-animate 0.58s linear infinite;
}



@keyframes cssload-animate {
  17% {
    border-bottom-right-radius: 3px;
  }

  25% {
    -webkit-transform: translateY(9px) rotate(22.5deg);
            transform: translateY(9px) rotate(22.5deg);
  }

  50% {
    -webkit-transform: translateY(18px) scale(1, 0.9) rotate(45deg);
            transform: translateY(18px) scale(1, 0.9) rotate(45deg);
    border-bottom-right-radius: 39px;
  }

  75% {
    -webkit-transform: translateY(9px) rotate(67.5deg);
            transform: translateY(9px) rotate(67.5deg);
  }

  100% {
    -webkit-transform: translateY(0) rotate(90deg);
            transform: translateY(0) rotate(90deg);
  }
}

@-webkit-keyframes cssload-animate {
  17% {
    border-bottom-right-radius: 3px;
  }

  25% {
    -webkit-transform: translateY(9px) rotate(22.5deg);
  }

  50% {
    -webkit-transform: translateY(18px) scale(1, 0.9) rotate(45deg);
    border-bottom-right-radius: 39px;
  }

  75% {
    -webkit-transform: translateY(9px) rotate(67.5deg);
  }

  100% {
    -webkit-transform: translateY(0) rotate(90deg);
  }
}

@keyframes shadow {

  0%,
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }

  50% {
    -webkit-transform: scale(1.2, 1);
            transform: scale(1.2, 1);
  }
}

@-webkit-keyframes shadow {

  0%,
  100% {
    -webkit-transform: scale(1, 1);
  }

  50% {
    -webkit-transform: scale(1.2, 1);
  }
}

.rmv-sv-container {
  position: relative;
}

.rmv-sv-toolbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 8px 4px;
  background: black;
  color: white;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow-x: auto;
}

.rmv-sv-toolbar .rmv-sv-toolbar-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 1px;
          flex: 1 1 1px;
}

.rmv-sv-toolbar .rmv-sv-toolbar-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.rmv-sv-toolbar-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.rmv-sv-toolbar-item label:last-child {
  margin-left: 4px;
}

.rmv-sv-compact-container .rmv-gmv-attr-modal {
  position: absolute;
  bottom: 0;
  height: 50px;
  width: 100%;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: rgba(51, 51, 51, 1);
  padding: 0 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: black;
}

.rmv-sv-compact-container .rmv-gmv-attr-modal .rmv-gmv-attr-modal-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.rmv-sv-compact-container .rmv-gmv-attr-modal .rmv-gmv-attr-modal-row .item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 1px;
          flex: 1 1 1px;
  font-size: 12px;
}

.rmv-sv-loose-container {
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.rmv-sv-loose-container .rmv-gmv-attr-modal {
  position: absolute;
  bottom: 0;
  height: 50px;
  width: 100%;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: rgba(51, 51, 51, 1);
  padding: 0 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.rmv-sv-loose-container .rmv-gmv-attr-modal-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.rmv-sv-loose-container .rmv-gmv-attr-modal .item {
  color: rgba(51, 51, 51, 1);
  font-size: 14px;
  line-height: 22px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 1px;
          flex: 1 1 1px;
}

.rmv-sv-loose-container .rmv-sv-toolbar {
  position: absolute;
  width: 100px;
  min-width: 100px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 8px 8px;
  opacity: 0.75;
  background: #50535a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  right: 10px;
  top: 20px;
}

.rmv-sv-color-picker {
  position: absolute;
  width: 100px;
  min-width: 100px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 8px 8px;
  opacity: 0.75;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  left: 10px;
  top: 20px;
}

.rmv-sv-loose-container .rmv-sv-toolbar .rmv-sv-toolbar-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 35px;
  width: 100%;
  font-size: 14px;
}


.rmv-sv-compact-container .rmv-sv-joystick {
  position: absolute;
  width: 100px;
  bottom: 15%;
  right: 0;
}


.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.qrKKRkGlQ2{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.FjqVdOzNxK{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.gyS4l0Vvbe{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.gyS4l0Vvbe>i,.gyS4l0Vvbe>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.ZCqPzNvYuh{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.PnKzWzbooJ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.FL-3SvJmRf{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.BupX3LC3\+3{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.J8yTdChkxJ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.IPWTf6XWei{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._2SeJUC5gfN{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}._2SeJUC5gfN .t3TgKjxqgc{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}._2SeJUC5gfN .t3TgKjxqgc>span{color:rgba(0,0,0,0.65)}.Z6NhXbOPlH{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.Z6NhXbOPlH ._6WmKaXHQVs{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.Z6NhXbOPlH ._6WmKaXHQVs>span{font-size:8px}.a\+JcC3NWWo .ant-popover-inner-content{padding:0}.a\+JcC3NWWo .ant-popover-arrow{border-color:#475365 !important}.a\+JcC3NWWo .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.KVhI7ybveu{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.-ZeL6OJLRr{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.-ZeL6OJLRr .iTwbjNG-Fp{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.tD1z3QYdmp{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.NSgXPPyisr{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.NSgXPPyisr{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.-tU02cXOHJ{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.vKQaVAgkz5 html,.vKQaVAgkz5 body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.vKQaVAgkz5 body,.vKQaVAgkz5 div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.vKQaVAgkz5 textarea{border:none !important;padding-left:0 !important}.vKQaVAgkz5 table,.vKQaVAgkz5 tr,.vKQaVAgkz5 td{page-break-inside:avoid}.vKQaVAgkz5 div{page-break-inside:avoid}.vKQaVAgkz5 thead{display:table-header-group}.vKQaVAgkz5 tfoot{display:table-footer-group}.vKQaVAgkz5 *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.vKQaVAgkz5 .oivw1OwRrh,.vKQaVAgkz5 .no-print,.vKQaVAgkz5 .react-resizable-handle,.vKQaVAgkz5 .fc-whiteboard-toolbar,.vKQaVAgkz5 .ant-modal-root,.vKQaVAgkz5 .ant-alert,.vKQaVAgkz5 .sXuxSq3l0q,.vKQaVAgkz5 ._9pg6QxaDcb{display:none !important}.vKQaVAgkz5 .ZEezpDmKTd{display:none !important}}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}._2nXoMUvHi8{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}._09Zw16NVi9{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.lKMA56dVJS{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.lKMA56dVJS>i,.lKMA56dVJS>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.w-kOUxRyiG{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.xT8bppzr8x{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.T5uoiDaWxH{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.N36S4oVhDI{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}._5j7F5fPWW4{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.danWZ8GNXE{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._2BnrG\+v-Zx{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}._2BnrG\+v-Zx .kKP\+smgBLy{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}._2BnrG\+v-Zx .kKP\+smgBLy>span{color:rgba(0,0,0,0.65)}.EUhP4Yw--p{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.EUhP4Yw--p ._85PpyTSoNH{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.EUhP4Yw--p ._85PpyTSoNH>span{font-size:8px}.hzN0B4Gb5J .ant-popover-inner-content{padding:0}.hzN0B4Gb5J .ant-popover-arrow{border-color:#475365 !important}.hzN0B4Gb5J .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.KUjYkvCxS3{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.hk5HWyQR2z{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.hk5HWyQR2z .TywoZ9foDj{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.E2bqx186S7{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.o4nS7s\+eiv{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.o4nS7s\+eiv{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.sjHaKcJTYe{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.SLBAdjf9H- html,.SLBAdjf9H- body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.SLBAdjf9H- body,.SLBAdjf9H- div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.SLBAdjf9H- textarea{border:none !important;padding-left:0 !important}.SLBAdjf9H- table,.SLBAdjf9H- tr,.SLBAdjf9H- td{page-break-inside:avoid}.SLBAdjf9H- div{page-break-inside:avoid}.SLBAdjf9H- thead{display:table-header-group}.SLBAdjf9H- tfoot{display:table-footer-group}.SLBAdjf9H- *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.SLBAdjf9H- .xCb47CJq5T,.SLBAdjf9H- .no-print,.SLBAdjf9H- .react-resizable-handle,.SLBAdjf9H- .fc-whiteboard-toolbar,.SLBAdjf9H- .ant-modal-root,.SLBAdjf9H- .ant-alert,.SLBAdjf9H- .EAw4GC2qJE,.SLBAdjf9H- .Sn4m9i-EZM{display:none !important}.SLBAdjf9H- .CZxkpqRwzX{display:none !important}}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.IcOXuQAOmv{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.FJYhjmB8pN{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.dtkEYpLvFP{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.dtkEYpLvFP>i,.dtkEYpLvFP>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.eWYeI7np41{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.fWCYJQe69F{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.u4Br4PJZzI{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.NV5tE13332{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.\+2FHdSZMVj{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._2hP8H7OiVJ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.BLnFVqY8tp{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.BLnFVqY8tp .J7qhYEvFff{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.BLnFVqY8tp .J7qhYEvFff>span{color:rgba(0,0,0,0.65)}.V13nEDfem2{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.V13nEDfem2 ._69l1hJ60ft{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.V13nEDfem2 ._69l1hJ60ft>span{font-size:8px}.toCuO-SPSf .ant-popover-inner-content{padding:0}.toCuO-SPSf .ant-popover-arrow{border-color:#475365 !important}.toCuO-SPSf .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.WDaBx90SQl{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.C-qcQjrzrH{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.C-qcQjrzrH .Vsl1d\+IYdM{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.aJIoG-i2BG{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}._3cDYVlJrZs{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{._3cDYVlJrZs{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.Ilcegv\+JKJ{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.TZb1Y7zKTO html,.TZb1Y7zKTO body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.TZb1Y7zKTO body,.TZb1Y7zKTO div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.TZb1Y7zKTO textarea{border:none !important;padding-left:0 !important}.TZb1Y7zKTO table,.TZb1Y7zKTO tr,.TZb1Y7zKTO td{page-break-inside:avoid}.TZb1Y7zKTO div{page-break-inside:avoid}.TZb1Y7zKTO thead{display:table-header-group}.TZb1Y7zKTO tfoot{display:table-footer-group}.TZb1Y7zKTO *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.TZb1Y7zKTO .c4JUD23NIQ,.TZb1Y7zKTO .no-print,.TZb1Y7zKTO .react-resizable-handle,.TZb1Y7zKTO .fc-whiteboard-toolbar,.TZb1Y7zKTO .ant-modal-root,.TZb1Y7zKTO .ant-alert,.TZb1Y7zKTO ._6ryuSzf23e,.TZb1Y7zKTO ._89cPupVijY{display:none !important}.TZb1Y7zKTO .XKdtXYmppt{display:none !important}}.d3-model-avatar-container{position:relative;cursor:pointer}.d3-model-avatar-container-tag{background-color:#3d3e48;width:170px;height:40px;color:white}.d3-model-avatar-container .actionIcons{display:none;position:absolute;right:5;top:0;cursor:pointer}.d3-model-avatar-container .d3-model-avatar-container-parsing .actionIcons{display:block}.d3-model-avatar-container:hover .actionIcons{display:block}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.eXud9TupyA{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.xDjwxAvqcI{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.QFitMRwd4C{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.QFitMRwd4C>i,.QFitMRwd4C>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}._3GJKXNsQz3{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.Prki1ngDLy{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.eEk57lze09{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.QkfeYcZSYn{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}._5k9phOa2-W{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.lrWfiUjQjw{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._9HnlWH1Mjn{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}._9HnlWH1Mjn ._2gIjMmpfUI{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}._9HnlWH1Mjn ._2gIjMmpfUI>span{color:rgba(0,0,0,0.65)}.CCa8qVUWEg{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.CCa8qVUWEg .g0RsaX7a4A{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.CCa8qVUWEg .g0RsaX7a4A>span{font-size:8px}._5bKOHQXp-L .ant-popover-inner-content{padding:0}._5bKOHQXp-L .ant-popover-arrow{border-color:#475365 !important}._5bKOHQXp-L .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.i1TVDGzEOD{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.PP1k3D1Cjv{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.PP1k3D1Cjv .GgGMr\+p14u{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.ZTCkBIbdyY{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.W0wfOv5de5{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.W0wfOv5de5{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}._7YwVMpJ9Em{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.OQBNLtEtf3 html,.OQBNLtEtf3 body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.OQBNLtEtf3 body,.OQBNLtEtf3 div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.OQBNLtEtf3 textarea{border:none !important;padding-left:0 !important}.OQBNLtEtf3 table,.OQBNLtEtf3 tr,.OQBNLtEtf3 td{page-break-inside:avoid}.OQBNLtEtf3 div{page-break-inside:avoid}.OQBNLtEtf3 thead{display:table-header-group}.OQBNLtEtf3 tfoot{display:table-footer-group}.OQBNLtEtf3 *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.OQBNLtEtf3 .X-w-H-66kn,.OQBNLtEtf3 .no-print,.OQBNLtEtf3 .react-resizable-handle,.OQBNLtEtf3 .fc-whiteboard-toolbar,.OQBNLtEtf3 .ant-modal-root,.OQBNLtEtf3 .ant-alert,.OQBNLtEtf3 .bMbS7-HW6W,.OQBNLtEtf3 .JyZGRfhmlc{display:none !important}.OQBNLtEtf3 .EOv2xQyXJe{display:none !important}}.d3-model-avatar-container{position:relative;cursor:pointer}.d3-model-avatar-container-tag{background-color:#3d3e48;width:170px;height:40px;color:white}.d3-model-avatar-container .actionIcons{display:none;position:absolute;right:5;top:0;cursor:pointer}.d3-model-avatar-container .d3-model-avatar-container-parsing .actionIcons{display:block}.d3-model-avatar-container:hover .actionIcons{display:block}.QyRwtA52ya{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.RQDQypL35i{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.JQ1Pq0zP\+-{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}._1i7bDzCjdj{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}._1i7bDzCjdj>i,._1i7bDzCjdj>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.rX-EvVkj-Y{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.X2DHB1yUKq{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.Ps-c323ufl{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.IoXRcWd9Vr{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.wGoTDz7uIM{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.IOcMz7YX96{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.tbrhb54EK5{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.tbrhb54EK5 .N1NZL8BxI-{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.tbrhb54EK5 .N1NZL8BxI->span{color:rgba(0,0,0,0.65)}.MiYzBdmFG1{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.MiYzBdmFG1 .uJpXIfhR3U{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.MiYzBdmFG1 .uJpXIfhR3U>span{font-size:8px}.G5Zljrbxrz .ant-popover-inner-content{padding:0}.G5Zljrbxrz .ant-popover-arrow{border-color:#475365 !important}.G5Zljrbxrz .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.sLkE4dOz0g{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.rFPAgE9cdC{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.rFPAgE9cdC .v8LrW86QW5{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.MIx3UeFrWX{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}._03m7TgPdqr{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{._03m7TgPdqr{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.SQLr29iVhr{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{._1WRb1fnc93 html,._1WRb1fnc93 body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}._1WRb1fnc93 body,._1WRb1fnc93 div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}._1WRb1fnc93 textarea{border:none !important;padding-left:0 !important}._1WRb1fnc93 table,._1WRb1fnc93 tr,._1WRb1fnc93 td{page-break-inside:avoid}._1WRb1fnc93 div{page-break-inside:avoid}._1WRb1fnc93 thead{display:table-header-group}._1WRb1fnc93 tfoot{display:table-footer-group}._1WRb1fnc93 *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}._1WRb1fnc93 .Z0kXOCE3Y6,._1WRb1fnc93 .no-print,._1WRb1fnc93 .react-resizable-handle,._1WRb1fnc93 .fc-whiteboard-toolbar,._1WRb1fnc93 .ant-modal-root,._1WRb1fnc93 .ant-alert,._1WRb1fnc93 .bqKPIMEuyw,._1WRb1fnc93 .ZK1dDhRiV1{display:none !important}._1WRb1fnc93 .TQ85qYaDFV{display:none !important}}._1WJveRx\+4m{height:100%;padding:24px}
._5L-rKYW-yJ{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}
.n1EuFC9uL0{position:fixed;right:80px;bottom:40px;z-index:99;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:40px;height:40px;font-size:20px;background:#fff;border-radius:40px;-webkit-box-shadow:0 2px 4px -1px rgba(0,0,0,0.2),0 4px 5px 0 rgba(0,0,0,0.14),0 1px 10px 0 rgba(0,0,0,0.12);box-shadow:0 2px 4px -1px rgba(0,0,0,0.2),0 4px 5px 0 rgba(0,0,0,0.14),0 1px 10px 0 rgba(0,0,0,0.12);cursor:pointer}._01xiJCF2l5{position:relative}._01xiJCF2l5 .HaWB-iE2rM{display:inline-block;margin:0 .2em;padding:.2em .4em .1em;font-size:85%;border-radius:3px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.Idhaa6iMDG{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.Be4J7QJfvr{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.CjUHPUOqhd{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.CjUHPUOqhd>i,.CjUHPUOqhd>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}._8ME83EtxxZ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.Qc374P86q9{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.rcW2esdmEL{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.BqlDrf9oZF{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.\+8WxAvbTk7{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.JHwAFNFfby{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.jC3QpEhHHa{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.jC3QpEhHHa .n0JpmGPZAP{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.jC3QpEhHHa .n0JpmGPZAP>span{color:rgba(0,0,0,0.65)}.LORZQOPAOm{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.LORZQOPAOm ._0pO3tDqRqP{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.LORZQOPAOm ._0pO3tDqRqP>span{font-size:8px}.hWHu0-79yI .ant-popover-inner-content{padding:0}.hWHu0-79yI .ant-popover-arrow{border-color:#475365 !important}.hWHu0-79yI .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.I8V0KBHPJJ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.RntgAJIgQb{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.RntgAJIgQb .EKKPQ2dwx8{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.s6tq9L-x4B{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.jZDS78bR-P{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.jZDS78bR-P{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}._4-A3lrH1fh{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.oAC8K6rsLe html,.oAC8K6rsLe body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.oAC8K6rsLe body,.oAC8K6rsLe div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.oAC8K6rsLe textarea{border:none !important;padding-left:0 !important}.oAC8K6rsLe table,.oAC8K6rsLe tr,.oAC8K6rsLe td{page-break-inside:avoid}.oAC8K6rsLe div{page-break-inside:avoid}.oAC8K6rsLe thead{display:table-header-group}.oAC8K6rsLe tfoot{display:table-footer-group}.oAC8K6rsLe *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.oAC8K6rsLe .WH2m0J36Hp,.oAC8K6rsLe .no-print,.oAC8K6rsLe .react-resizable-handle,.oAC8K6rsLe .fc-whiteboard-toolbar,.oAC8K6rsLe .ant-modal-root,.oAC8K6rsLe .ant-alert,.oAC8K6rsLe .xx9O-26fRM,.oAC8K6rsLe ._2vkzTARw2a{display:none !important}.oAC8K6rsLe .OIRCSaj4f4{display:none !important}}.wgBpKMP-F-{color:#6874e2;display:inline-block}.oaWvw5OEsa{font-size:18px;font-weight:bold;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}.HqvQmiKv5o{background:#e9e9e9;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._84BUMkJX2s{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;white-space:pre}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.o1B1lYxBVW{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.h9lRMPwTDs{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.mEPR1XB6Kp{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.mEPR1XB6Kp>i,.mEPR1XB6Kp>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.a7Xd-BZZTj{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.MKGgJ9af8Y{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.kicFHM2z1b{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.cAfd3xBlR3{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.jqvMVAVnRN{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.cCGBFHX77T{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.o9yCdz8K5s{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.o9yCdz8K5s .yxDGp15N7D{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.o9yCdz8K5s .yxDGp15N7D>span{color:rgba(0,0,0,0.65)}.Cs8sa1N3XI{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.Cs8sa1N3XI ._6OQz8TrCxk{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.Cs8sa1N3XI ._6OQz8TrCxk>span{font-size:8px}.P-LVRMmU07 .ant-popover-inner-content{padding:0}.P-LVRMmU07 .ant-popover-arrow{border-color:#475365 !important}.P-LVRMmU07 .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.aWgDXQihyf{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.-k3t61lp1L{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.-k3t61lp1L .\+qDkGziof4{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}._61XCqGbRT6{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.KGzb86jFMY{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.KGzb86jFMY{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.r3q8GWF0TS{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.Kg67QXwBzm html,.Kg67QXwBzm body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.Kg67QXwBzm body,.Kg67QXwBzm div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.Kg67QXwBzm textarea{border:none !important;padding-left:0 !important}.Kg67QXwBzm table,.Kg67QXwBzm tr,.Kg67QXwBzm td{page-break-inside:avoid}.Kg67QXwBzm div{page-break-inside:avoid}.Kg67QXwBzm thead{display:table-header-group}.Kg67QXwBzm tfoot{display:table-footer-group}.Kg67QXwBzm *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.Kg67QXwBzm .HOF60Ofytg,.Kg67QXwBzm .no-print,.Kg67QXwBzm .react-resizable-handle,.Kg67QXwBzm .fc-whiteboard-toolbar,.Kg67QXwBzm .ant-modal-root,.Kg67QXwBzm .ant-alert,.Kg67QXwBzm .JwVD3CXxul,.Kg67QXwBzm .zoTx4DOGkt{display:none !important}.Kg67QXwBzm .jExVrgwP3T{display:none !important}}.pm8sMy5UZG>*{background-color:#fff;border-radius:4px;-webkit-box-shadow:0 1px 2px -2px rgba(0,0,0,0.16),0 3px 6px 0 rgba(0,0,0,0.12),0 5px 12px 4px rgba(0,0,0,0.09);box-shadow:0 1px 2px -2px rgba(0,0,0,0.16),0 3px 6px 0 rgba(0,0,0,0.12),0 5px 12px 4px rgba(0,0,0,0.09)}@media screen and (max-width:480px){.pm8sMy5UZG{width:100% !important}.pm8sMy5UZG>*{border-radius:0 !important}}
.u\+8JSioOYr{position:relative;width:336px}.S5gn1ZFWvE{display:inline-block;cursor:pointer;-webkit-transition:all .3s;transition:all .3s}._75Um8Unv6z{padding:4px;vertical-align:middle}._6rYTh7us8M{font-size:16px}._5lmw0VJKYG .ant-tabs-nav-scroll{text-align:center}._5lmw0VJKYG .ant-tabs-nav-list{margin-bottom:0}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.thhifEru3E{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.WKjmjCBjek{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}._4k6ka3-33r{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}._4k6ka3-33r>i,._4k6ka3-33r>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.QXdjrtxUEp{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.MfYU5PpiC5{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.gT5gVQ7cO\+{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.zQ5pvfxyb0{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.gqBEFYnTWz{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._6vxC7bCjAQ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._6QDMDl1SBP{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}._6QDMDl1SBP .hqYH3BBn3U{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}._6QDMDl1SBP .hqYH3BBn3U>span{color:rgba(0,0,0,0.65)}.ryYcH3klvH{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.ryYcH3klvH .t716PsXysz{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.ryYcH3klvH .t716PsXysz>span{font-size:8px}.Z9Q0nOzqYL .ant-popover-inner-content{padding:0}.Z9Q0nOzqYL .ant-popover-arrow{border-color:#475365 !important}.Z9Q0nOzqYL .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.MfebzW8fym{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.IURP8OyS6F{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.IURP8OyS6F .r39pmI5bY3{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.YFEF4HAQlo{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.ck6SeW1kS1{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.ck6SeW1kS1{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.-\+6aejfGzv{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.j1g2uEN\+Eo html,.j1g2uEN\+Eo body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.j1g2uEN\+Eo body,.j1g2uEN\+Eo div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.j1g2uEN\+Eo textarea{border:none !important;padding-left:0 !important}.j1g2uEN\+Eo table,.j1g2uEN\+Eo tr,.j1g2uEN\+Eo td{page-break-inside:avoid}.j1g2uEN\+Eo div{page-break-inside:avoid}.j1g2uEN\+Eo thead{display:table-header-group}.j1g2uEN\+Eo tfoot{display:table-footer-group}.j1g2uEN\+Eo *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.j1g2uEN\+Eo .iKNdNbhDBu,.j1g2uEN\+Eo .no-print,.j1g2uEN\+Eo .react-resizable-handle,.j1g2uEN\+Eo .fc-whiteboard-toolbar,.j1g2uEN\+Eo .ant-modal-root,.j1g2uEN\+Eo .ant-alert,.j1g2uEN\+Eo .mZFdl1evXC,.j1g2uEN\+Eo .O7BNsjS7D1{display:none !important}.j1g2uEN\+Eo .FQQlMD1XWY{display:none !important}}._2uRtB0Nzwc{max-height:400px;overflow:auto}._2uRtB0Nzwc::-webkit-scrollbar{display:none}._2uRtB0Nzwc .ojuDbI07F4{padding-right:24px;padding-left:24px;overflow:hidden;cursor:pointer;-webkit-transition:all .3s;transition:all .3s}._2uRtB0Nzwc .ojuDbI07F4 .DJRQZrdRq4{width:100%}._2uRtB0Nzwc .ojuDbI07F4 .WQ8uZnh7Zj{margin-top:4px;background:#fff}._2uRtB0Nzwc .ojuDbI07F4 ._3sNLr57rW\+{font-size:32px}._2uRtB0Nzwc .ojuDbI07F4.lwAMWywqix{opacity:.4}._2uRtB0Nzwc .ojuDbI07F4:last-child{border-bottom:0}._2uRtB0Nzwc .ojuDbI07F4:hover{background:#6874e2}._2uRtB0Nzwc .ojuDbI07F4 .ncBo5l5U1g{margin-bottom:8px;font-weight:normal}._2uRtB0Nzwc .ojuDbI07F4 ._3i2a0vUAfG{font-size:12px;line-height:1.5715}._2uRtB0Nzwc .ojuDbI07F4 .huOqk68Wpn{margin-top:4px;font-size:12px;line-height:1.5715}._2uRtB0Nzwc .ojuDbI07F4 .t9\+qjMOFr6{float:right;margin-top:-1.5px;margin-right:0;color:rgba(0,0,0,0.45);font-weight:normal}._2uRtB0Nzwc .ssTlqaUlbQ{padding:8px 0;color:#6874e2;text-align:center;cursor:pointer}._2uRtB0Nzwc .ssTlqaUlbQ.DwdqbS6G7T{color:rgba(0,0,0,0.25);cursor:inherit}.q7nzx1lSYm{padding:73px 0 88px;color:rgba(0,0,0,0.45);text-align:center}.q7nzx1lSYm img{display:inline-block;height:76px;margin-bottom:16px}.nbLVAYr-oO{height:46px;color:rgba(0,0,0,0.85);line-height:46px;text-align:center;border-top:1px solid #f0f0f0;border-radius:0 0 8px 8px;-webkit-transition:all .3s;transition:all .3s}.nbLVAYr-oO div{display:inline-block;width:50%;cursor:pointer;-webkit-transition:all .3s;transition:all .3s;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.nbLVAYr-oO div:hover{color:rgba(0,0,0,0.85)}.nbLVAYr-oO div:only-child{width:100%}.nbLVAYr-oO div:not(:only-child):last-child{border-left:1px solid #f0f0f0}
.a-OGjlBm3i{width:15px;height:15px}.ueeTQDIbbb{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.ueeTQDIbbb .RKzbLFKDE3{width:20px}.ueeTQDIbbb .HhrCPrgeKN{margin-left:10px}
.PpSgz2hP4y{position:relative;display:inline-block}
.container {
  position: inherit;
}

.uPOyyOEotn .anticon-search{font-size:16px;cursor:pointer}.uPOyyOEotn .aVlzCOxzMW{width:0;background:transparent;border-radius:0;-webkit-transition:width .3s,margin-left .3s;transition:width .3s,margin-left .3s}.uPOyyOEotn .aVlzCOxzMW .ant-select-selection{background:transparent}.uPOyyOEotn .aVlzCOxzMW input{-webkit-box-shadow:none !important;box-shadow:none !important}.uPOyyOEotn .aVlzCOxzMW input{padding-right:0;padding-left:0;border:0}.uPOyyOEotn .aVlzCOxzMW,.uPOyyOEotn .aVlzCOxzMW:hover,.uPOyyOEotn .aVlzCOxzMW:focus{border-bottom:1px solid #e0e0e0}.uPOyyOEotn .aVlzCOxzMW.pvni66g\+AR{width:150px;margin-left:8px}
.ghhZVlON45 .anticon{margin-right:8px}.ghhZVlON45 .ant-dropdown-menu-item{min-width:160px}.LyKZ85xF21{line-height:64px;vertical-align:top;cursor:pointer}.LyKZ85xF21>i{font-size:16px !important;-webkit-transform:none !important;transform:none !important}.LyKZ85xF21>i svg{position:relative;top:-1px}
.bbmL7PMoFP{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.bbmL7PMoFP .BYerb9w9PB{color:#172e59 !important;font-size:14px !important;height:auto !important}.bbmL7PMoFP .BYerb9w9PB{position:relative;cursor:pointer;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex}.bbmL7PMoFP .BYerb9w9PB .L9pTl3Z6fk{margin-top:4px;font-size:12px}.bbmL7PMoFP .BYerb9w9PB:hover,.bbmL7PMoFP .BYerb9w9PB:focus{color:#f89902 !important}.bbmL7PMoFP .BYerb9w9PB:hover .GK41R-G97p,.bbmL7PMoFP .BYerb9w9PB:focus .GK41R-G97p{display:block}.bbmL7PMoFP .r6-GKoW5s2{position:absolute;bottom:0;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.bbmL7PMoFP .r6-GKoW5s2::before,.bbmL7PMoFP .r6-GKoW5s2::after{content:'';position:absolute;bottom:0;left:50%;-webkit-transform:translate(-50%, 12px);transform:translate(-50%, 12px);width:0;height:0}.HuvyPb5Iq4{position:absolute;top:100%;right:50%;-webkit-transform:translateX(50%);transform:translateX(50%);width:320px;padding-top:12px;z-index:1000}.HuvyPb5Iq4 .zBxF4OA\+bs{position:relative;padding-top:0;-webkit-box-shadow:0 2px 8px rgba(0,0,0,0.15);box-shadow:0 2px 8px rgba(0,0,0,0.15);background:#fff;border-radius:12px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;max-height:400px}.HuvyPb5Iq4 .zBxF4OA\+bs .FXGozuhwQL{padding:12px 16px;border-bottom:1px solid rgba(0,0,0,0.06);background:#fff;border-top-left-radius:12px;border-top-right-radius:12px;z-index:10}.HuvyPb5Iq4 .zBxF4OA\+bs .uFP2LDwi4H{overflow-y:auto;max-height:260px}.HuvyPb5Iq4 .zBxF4OA\+bs .uFP2LDwi4H::-webkit-scrollbar{width:6px}.HuvyPb5Iq4 .zBxF4OA\+bs .uFP2LDwi4H::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,0.2);border-radius:3px}.HuvyPb5Iq4 .zBxF4OA\+bs .uFP2LDwi4H::-webkit-scrollbar-track{background-color:rgba(0,0,0,0.05)}.HuvyPb5Iq4 .zBxF4OA\+bs .dkM0EDMSJO{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;gap:10px;font-weight:400;border-bottom:1px solid rgba(0,0,0,0.06);cursor:pointer}.HuvyPb5Iq4 .zBxF4OA\+bs .dkM0EDMSJO:last-child{border-bottom:none}.HuvyPb5Iq4 .zBxF4OA\+bs ._07iJSwRRZa{width:100%}.HuvyPb5Iq4 .zBxF4OA\+bs .EiYCYHP1vM{font-size:16px;font-weight:500;color:#333;width:100%}.HuvyPb5Iq4 .zBxF4OA\+bs .pVQMfCkeiR{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:100%;margin-bottom:4px;overflow:hidden;white-space:nowrap}.HuvyPb5Iq4 .zBxF4OA\+bs .qOfRwAxxss{font-family:Roboto;font-size:14px;font-weight:500;line-height:20px;letter-spacing:0px;color:#111827;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;max-width:75%;-webkit-font-feature-settings:'kern' on;font-feature-settings:'kern' on}.HuvyPb5Iq4 .zBxF4OA\+bs .Zqg2q9scYb{color:white;border-radius:12px;font-size:12px;font-weight:500;-ms-flex-negative:0;flex-shrink:0;white-space:nowrap;padding:2px 8px;background:#e81d1d}.HuvyPb5Iq4 .zBxF4OA\+bs .tZt4obOaql{color:#666;font-size:14px;line-height:1.5;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:100%}.HuvyPb5Iq4 .zBxF4OA\+bs .ant-dropdown-menu-title-content{width:100%}.HuvyPb5Iq4 .zBxF4OA\+bs .ant-dropdown-menu{padding:4px 0}.HuvyPb5Iq4 .zBxF4OA\+bs .ant-dropdown-menu .ant-dropdown-menu-item{padding:12px 1rem}.HuvyPb5Iq4 .zBxF4OA\+bs .ant-dropdown-menu .ant-dropdown-menu-item:first-child{border-bottom:1px solid rgba(0,0,0,0.06)}@media screen and (max-width:768px){.HuvyPb5Iq4{position:fixed;top:48px;right:10px;-webkit-transform:none;transform:none}}.CrmbgwJOvT{position:absolute;top:-13px;right:-13px;width:20px;height:20px;border-radius:50%;background-color:#e81d1d;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:9px;font-weight:bold;color:white;-webkit-box-shadow:rgba(0,0,0,0.2) 0 1px 2px;box-shadow:rgba(0,0,0,0.2) 0 1px 2px}
.TyA6sWuH36{position:inherit}
/* CSS variables. */
:root {
	--PhoneInput-color--focus: #03b2cb;
	--PhoneInputInternationalIconPhone-opacity: 0.8;
	--PhoneInputInternationalIconGlobe-opacity: 0.65;
	--PhoneInputCountrySelect-marginRight: 0.35em;
	--PhoneInputCountrySelectArrow-width: 0.3em;
	--PhoneInputCountrySelectArrow-marginLeft: var(--PhoneInputCountrySelect-marginRight);
	--PhoneInputCountrySelectArrow-borderWidth: 1px;
	--PhoneInputCountrySelectArrow-opacity: 0.45;
	--PhoneInputCountrySelectArrow-color: currentColor;
	--PhoneInputCountrySelectArrow-color--focus: var(--PhoneInput-color--focus);
	--PhoneInputCountrySelectArrow-transform: rotate(45deg);
	--PhoneInputCountryFlag-aspectRatio: 1.5;
	--PhoneInputCountryFlag-height: 1em;
	--PhoneInputCountryFlag-borderWidth: 1px;
	--PhoneInputCountryFlag-borderColor: rgba(0,0,0,0.5);
	--PhoneInputCountryFlag-borderColor--focus: var(--PhoneInput-color--focus);
	--PhoneInputCountryFlag-backgroundColor--loading: rgba(0,0,0,0.1);
}

.PhoneInput {
	/* This is done to stretch the contents of this component. */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.PhoneInputInput {
	/* The phone number input stretches to fill all empty space */
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	/* The phone number input should shrink
	   to make room for the extension input */
	min-width: 0;
}

.PhoneInputCountryIcon {
	width: calc(1em * 1.5);
	width: calc(var(--PhoneInputCountryFlag-height) * var(--PhoneInputCountryFlag-aspectRatio));
	height: 1em;
	height: var(--PhoneInputCountryFlag-height);
}

.PhoneInputCountryIcon--square {
	width: 1em;
	width: var(--PhoneInputCountryFlag-height);
}

.PhoneInputCountryIcon--border {
	/* Removed `background-color` because when an `<img/>` was still loading
	   it would show a dark gray rectangle. */
	/* For some reason the `<img/>` is not stretched to 100% width and height
	   and sometime there can be seen white pixels of the background at top and bottom. */
	background-color: rgba(0,0,0,0.1);
	background-color: var(--PhoneInputCountryFlag-backgroundColor--loading);
	/* Border is added via `box-shadow` because `border` interferes with `width`/`height`. */
	/* For some reason the `<img/>` is not stretched to 100% width and height
	   and sometime there can be seen white pixels of the background at top and bottom,
	   so an additional "inset" border is added. */
	-webkit-box-shadow: 0 0 0 1px rgba(0,0,0,0.5),
		inset 0 0 0 1px rgba(0,0,0,0.5);
	        box-shadow: 0 0 0 1px rgba(0,0,0,0.5),
		inset 0 0 0 1px rgba(0,0,0,0.5);
	-webkit-box-shadow: 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor),
		inset 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor);
	        box-shadow: 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor),
		inset 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor);
}

.PhoneInputCountryIconImg {
	/* Fixes weird vertical space above the flag icon. */
	/* https://gitlab.com/catamphetamine/react-phone-number-input/-/issues/7#note_348586559 */
	display: block;
	/* 3rd party <SVG/> flag icons won't stretch if they have `width` and `height`.
	   Also, if an <SVG/> icon's aspect ratio was different, it wouldn't fit too. */
	width: 100%;
	height: 100%;
}

.PhoneInputInternationalIconPhone {
	opacity: 0.8;
	opacity: var(--PhoneInputInternationalIconPhone-opacity);
}

.PhoneInputInternationalIconGlobe {
	opacity: 0.65;
	opacity: var(--PhoneInputInternationalIconGlobe-opacity);
}

/* Styling native country `<select/>`. */

.PhoneInputCountry {
	position: relative;
	-ms-flex-item-align: stretch;
	    align-self: stretch;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin-right: 0.35em;
	margin-right: var(--PhoneInputCountrySelect-marginRight);
}

.PhoneInputCountrySelect {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
	border: 0;
	opacity: 0;
	cursor: pointer;
}

.PhoneInputCountrySelect[disabled],
.PhoneInputCountrySelect[readonly] {
	cursor: default;
}

.PhoneInputCountrySelectArrow {
	display: block;
	content: '';
	width: 0.3em;
	width: var(--PhoneInputCountrySelectArrow-width);
	height: 0.3em;
	height: var(--PhoneInputCountrySelectArrow-width);
	margin-left: 0.35em;
	margin-left: var(--PhoneInputCountrySelectArrow-marginLeft);
	border-style: solid;
	border-color: currentColor;
	border-color: var(--PhoneInputCountrySelectArrow-color);
	border-top-width: 0;
	border-bottom-width: 1px;
	border-bottom-width: var(--PhoneInputCountrySelectArrow-borderWidth);
	border-left-width: 0;
	border-right-width: 1px;
	border-right-width: var(--PhoneInputCountrySelectArrow-borderWidth);
	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
	-webkit-transform: var(--PhoneInputCountrySelectArrow-transform);
	        transform: var(--PhoneInputCountrySelectArrow-transform);
	opacity: 0.45;
	opacity: var(--PhoneInputCountrySelectArrow-opacity);
}

.PhoneInputCountrySelect:focus + .PhoneInputCountryIcon + .PhoneInputCountrySelectArrow {
	opacity: 1;
	color: #03b2cb;
	color: var(--PhoneInputCountrySelectArrow-color--focus);
}

.PhoneInputCountrySelect:focus + .PhoneInputCountryIcon--border {
	-webkit-box-shadow: 0 0 0 1px #03b2cb,
		inset 0 0 0 1px #03b2cb;
	        box-shadow: 0 0 0 1px #03b2cb,
		inset 0 0 0 1px #03b2cb;
	-webkit-box-shadow: 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor--focus),
		inset 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor--focus);
	        box-shadow: 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor--focus),
		inset 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor--focus);
}

.PhoneInputCountrySelect:focus + .PhoneInputCountryIcon .PhoneInputInternationalIconGlobe {
	opacity: 1;
	color: #03b2cb;
	color: var(--PhoneInputCountrySelectArrow-color--focus);
}
.GLkiciKid0 input{height:32px;padding:0 2px;border:1px solid #d9d9d9;border-radius:0 6px 6px 0}.GLkiciKid0 input.dqiWn3ejLW{outline:none}.GLkiciKid0 input:focus-visible{outline:none}.GLkiciKid0 input:focus{border-color:#ffb52b;-webkit-box-shadow:0 0 0 2px rgba(248,153,2,0.2);box-shadow:0 0 0 2px rgba(248,153,2,0.2);border-right-width:1px}.GLkiciKid0 .PhoneInputCountry{width:4rem;margin-right:0;border-radius:6px 0 0 6px;border:1px solid #d9d9d9;border-right:none;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.GLkiciKid0 .PhoneInputCountry .PhoneInputCountryIcon--border{-webkit-box-shadow:none;box-shadow:none}.GLkiciKid0 .PhoneInputCountry .PhoneInputCountryIcon--border>span{display:-webkit-box;display:-ms-flexbox;display:flex}
.vO4zSwJOCV{position:inherit}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.iwJ276BOpq{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.Z2Gzefgs4B{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.iOld62Lz0Z{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.iOld62Lz0Z>i,.iOld62Lz0Z>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.MBjdLDmUIv{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.AaaUa\+bBKI{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.av8nXKdz4b{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.Bgr8gFszY8{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}._8KhzxfFfDH{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.kkF8cwEJTb{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._2zuiBAviCl{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}._2zuiBAviCl .wZnXAl1Kbz{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}._2zuiBAviCl .wZnXAl1Kbz>span{color:rgba(0,0,0,0.65)}.KW1VbArf02{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.KW1VbArf02 .kWHngH0AZN{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.KW1VbArf02 .kWHngH0AZN>span{font-size:8px}.HP6aI-0gjR .ant-popover-inner-content{padding:0}.HP6aI-0gjR .ant-popover-arrow{border-color:#475365 !important}.HP6aI-0gjR .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.eF2fKyzVKC{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.HzU\+CgWbFI{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.HzU\+CgWbFI .SnnCV8NlPv{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.Mb1m2B-4mo{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}._82muruBFIF{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{._82muruBFIF{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.yG7p45mY-F{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.tJBWjEfjKg html,.tJBWjEfjKg body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.tJBWjEfjKg body,.tJBWjEfjKg div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.tJBWjEfjKg textarea{border:none !important;padding-left:0 !important}.tJBWjEfjKg table,.tJBWjEfjKg tr,.tJBWjEfjKg td{page-break-inside:avoid}.tJBWjEfjKg div{page-break-inside:avoid}.tJBWjEfjKg thead{display:table-header-group}.tJBWjEfjKg tfoot{display:table-footer-group}.tJBWjEfjKg *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.tJBWjEfjKg .qUE9DRT\+4P,.tJBWjEfjKg .no-print,.tJBWjEfjKg .react-resizable-handle,.tJBWjEfjKg .fc-whiteboard-toolbar,.tJBWjEfjKg .ant-modal-root,.tJBWjEfjKg .ant-alert,.tJBWjEfjKg .H37E9MLb2l,.tJBWjEfjKg .Up\+cMvOZg9{display:none !important}.tJBWjEfjKg .ut2eqyz9el{display:none !important}}.xM0V\+ZgTNH{height:200px;padding-top:0;position:relative}.YIJj6\+eIrU{position:relative;height:calc(100% - 48px);-webkit-transform:translateX(16px) translateY(50px);transform:translateX(16px) translateY(50px)}.YIJj6\+eIrU>div{position:absolute}@-webkit-keyframes \+tCGQ1Vd3h{0%{-webkit-box-shadow:0 -150px 0 75px #009fdf,0 0 0 75px #cccccc;box-shadow:0 -150px 0 75px #009fdf,0 0 0 75px #cccccc}100%{-webkit-box-shadow:0 0 0 75px #009fdf,0 0 0 75px #cccccc;box-shadow:0 0 0 75px #009fdf,0 0 0 75px #cccccc}}@keyframes \+tCGQ1Vd3h{0%{-webkit-box-shadow:0 -150px 0 75px #009fdf,0 0 0 75px #cccccc;box-shadow:0 -150px 0 75px #009fdf,0 0 0 75px #cccccc}100%{-webkit-box-shadow:0 0 0 75px #009fdf,0 0 0 75px #cccccc;box-shadow:0 0 0 75px #009fdf,0 0 0 75px #cccccc}}.p1Vhskev3Y .olnVz448tf .xUovWXWQXW{-webkit-transition:-webkit-box-shadow 2s linear;transition:-webkit-box-shadow 2s linear;transition:box-shadow 2s linear;transition:box-shadow 2s linear, -webkit-box-shadow 2s linear;-webkit-box-shadow:0 0 0 75px #009fdf,0 0 0 75px #cccccc;box-shadow:0 0 0 75px #009fdf,0 0 0 75px #cccccc}.olnVz448tf{margin:0 auto;width:80px;height:80px;border-radius:70px;overflow:hidden}.olnVz448tf.PGEQVTtAIS{-webkit-box-shadow:0 0 0 10px rgba(0,159,223,0.3);box-shadow:0 0 0 10px rgba(0,159,223,0.3)}.olnVz448tf .xUovWXWQXW{position:relative;margin:5px auto;border-radius:70px;width:70px;height:70px;text-align:center;overflow:hidden;-webkit-box-shadow:0 -150px 0 75px #009fdf,0 0 0 75px #cccccc;box-shadow:0 -150px 0 75px #009fdf,0 0 0 75px #cccccc;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.olnVz448tf .xUovWXWQXW>div{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-transform:rotate(90deg);transform:rotate(90deg)}.olnVz448tf .xUovWXWQXW>div .tge24QM-QD{font-size:12px}.olnVz448tf .xUovWXWQXW>div .CUE2QHCZyY{font-size:12px;color:#009fdf;font-weight:bold}.p1Vhskev3Y .CdVdznAAKd:before{-webkit-transition:height 1s linear;transition:height 1s linear;height:100px}.CdVdznAAKd{background:#cccccc;width:5px;height:100px;margin:0 auto}.CdVdznAAKd:before{content:'';display:block;background:#009fdf;width:100%;height:0;margin:auto}.p1Vhskev3Y .r4idfnFRN8:before{-webkit-transition:width .5s linear;transition:width .5s linear;width:99px}.r4idfnFRN8{background:#cccccc;height:5px;width:99px}.r4idfnFRN8:before{content:'';position:absolute;background:#009fdf;width:0;height:5px;margin:auto;-webkit-transition-delay:0s;transition-delay:0s}.t\+NMcC49tD{position:absolute;width:75px;height:75px}.ns-aY8frxO{top:-70px;left:-72.5px}.rNfwJnXK3i{bottom:-70px;right:-72.5px}.t\+NMcC49tD path{stroke-width:6px;fill:none}.t\+NMcC49tD .M1NN-uTp-j{stroke:#cccccc}.t\+NMcC49tD .p1Vhskev3Y .I5X5IF71-u{-webkit-animation:rnf3HFWFz1 linear .5s forwards;animation:rnf3HFWFz1 linear .5s forwards}.t\+NMcC49tD .I5X5IF71-u{stroke:#009fdf;stroke-dasharray:200;stroke-dashoffset:200}@-webkit-keyframes rnf3HFWFz1{to{stroke-dashoffset:0}}@keyframes rnf3HFWFz1{to{stroke-dashoffset:0}}.p1Vhskev3Y .Xn9hqMcEzB{-webkit-transition:height 1s linear;transition:height 1s linear;height:100%}.Xn9hqMcEzB{display:block;width:100%;height:0%;overflow:hidden}.Xn9hqMcEzB:before{content:'';display:inline-block;position:relative;font-size:35px;top:35px;margin-top:-20px;color:#009fdf;overflow:hidden}._0MLlbijVBe:before{content:'111'}
@-webkit-keyframes closeWindow {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes closeWindow {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.ril__outer {
  background-color: rgba(0, 0, 0, 0.85);
  outline: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  -ms-content-zooming: none;
  -ms-user-select: none;
  -ms-touch-select: none;
  -ms-touch-action: none;
      touch-action: none;
}

.ril__outerClosing {
  opacity: 0;
}

.ril__inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.ril__image,
.ril__imagePrev,
.ril__imageNext {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  max-width: none;
  -ms-content-zooming: none;
  -ms-user-select: none;
  -ms-touch-select: none;
  -ms-touch-action: none;
      touch-action: none;
}

.ril__imageDiscourager {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.ril__navButtons {
  border: none;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 20px;
  height: 34px;
  padding: 40px 30px;
  margin: auto;
  cursor: pointer;
  opacity: 0.7;
}
.ril__navButtons:hover {
  opacity: 1;
}
.ril__navButtons:active {
  opacity: 0.7;
}

.ril__navButtonPrev {
  left: 0;
  background: rgba(0, 0, 0, 0.2)
    url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgd2lkdGg9IjIwIiBoZWlnaHQ9IjM0Ij48cGF0aCBkPSJtIDE5LDMgLTIsLTIgLTE2LDE2IDE2LDE2IDEsLTEgLTE1LC0xNSAxNSwtMTUgeiIgZmlsbD0iI0ZGRiIvPjwvc3ZnPg==')
    no-repeat center;
}

.ril__navButtonNext {
  right: 0;
  background: rgba(0, 0, 0, 0.2)
    url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgd2lkdGg9IjIwIiBoZWlnaHQ9IjM0Ij48cGF0aCBkPSJtIDEsMyAyLC0yIDE2LDE2IC0xNiwxNiAtMSwtMSAxNSwtMTUgLTE1LC0xNSB6IiBmaWxsPSIjRkZGIi8+PC9zdmc+')
    no-repeat center;
}

.ril__downloadBlocker {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7');
  background-size: cover;
}

.ril__caption,
.ril__toolbar {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.ril__caption {
  bottom: 0;
  max-height: 150px;
  overflow: auto;
}

.ril__captionContent {
  padding: 10px 20px;
  color: #fff;
}

.ril__toolbar {
  top: 0;
  height: 50px;
}

.ril__toolbarSide {
  height: 50px;
  margin: 0;
}

.ril__toolbarLeftSide {
  padding-left: 20px;
  padding-right: 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ril__toolbarRightSide {
  padding-left: 0;
  padding-right: 20px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.ril__toolbarItem {
  display: inline-block;
  line-height: 50px;
  padding: 0;
  color: #fff;
  font-size: 120%;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ril__toolbarItemChild {
  vertical-align: middle;
}

.ril__builtinButton {
  width: 40px;
  height: 35px;
  cursor: pointer;
  border: none;
  opacity: 0.7;
}
.ril__builtinButton:hover {
  opacity: 1;
}
.ril__builtinButton:active {
  outline: none;
}

.ril__builtinButtonDisabled {
  cursor: default;
  opacity: 0.5;
}
.ril__builtinButtonDisabled:hover {
  opacity: 0.5;
}

.ril__closeButton {
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgd2lkdGg9IjIwIiBoZWlnaHQ9IjIwIj48cGF0aCBkPSJtIDEsMyAxLjI1LC0xLjI1IDcuNSw3LjUgNy41LC03LjUgMS4yNSwxLjI1IC03LjUsNy41IDcuNSw3LjUgLTEuMjUsMS4yNSAtNy41LC03LjUgLTcuNSw3LjUgLTEuMjUsLTEuMjUgNy41LC03LjUgLTcuNSwtNy41IHoiIGZpbGw9IiNGRkYiLz48L3N2Zz4=')
    no-repeat center;
}

.ril__zoomInButton {
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCI+PGcgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PHBhdGggZD0iTTEgMTlsNi02Ii8+PHBhdGggZD0iTTkgOGg2Ii8+PHBhdGggZD0iTTEyIDV2NiIvPjwvZz48Y2lyY2xlIGN4PSIxMiIgY3k9IjgiIHI9IjciIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSIyIi8+PC9zdmc+')
    no-repeat center;
}

.ril__zoomOutButton {
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCI+PGcgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PHBhdGggZD0iTTEgMTlsNi02Ii8+PHBhdGggZD0iTTkgOGg2Ii8+PC9nPjxjaXJjbGUgY3g9IjEyIiBjeT0iOCIgcj0iNyIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiLz48L3N2Zz4=')
    no-repeat center;
}

.ril__outerAnimating {
  -webkit-animation-name: closeWindow;
          animation-name: closeWindow;
}

@-webkit-keyframes pointFade {
  0%,
  19.999%,
  100% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
}

@keyframes pointFade {
  0%,
  19.999%,
  100% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
}

.ril__loadingCircle {
  width: 60px;
  height: 60px;
  position: relative;
}

.ril__loadingCirclePoint {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.ril__loadingCirclePoint::before {
  content: '';
  display: block;
  margin: 0 auto;
  width: 11%;
  height: 30%;
  background-color: #fff;
  border-radius: 30%;
  -webkit-animation: pointFade 800ms infinite ease-in-out both;
          animation: pointFade 800ms infinite ease-in-out both;
}
.ril__loadingCirclePoint:nth-of-type(1) {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.ril__loadingCirclePoint:nth-of-type(7) {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.ril__loadingCirclePoint:nth-of-type(1)::before,
.ril__loadingCirclePoint:nth-of-type(7)::before {
  -webkit-animation-delay: -800ms;
          animation-delay: -800ms;
}
.ril__loadingCirclePoint:nth-of-type(2) {
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
.ril__loadingCirclePoint:nth-of-type(8) {
  -webkit-transform: rotate(210deg);
          transform: rotate(210deg);
}
.ril__loadingCirclePoint:nth-of-type(2)::before,
.ril__loadingCirclePoint:nth-of-type(8)::before {
  -webkit-animation-delay: -666ms;
          animation-delay: -666ms;
}
.ril__loadingCirclePoint:nth-of-type(3) {
  -webkit-transform: rotate(60deg);
          transform: rotate(60deg);
}
.ril__loadingCirclePoint:nth-of-type(9) {
  -webkit-transform: rotate(240deg);
          transform: rotate(240deg);
}
.ril__loadingCirclePoint:nth-of-type(3)::before,
.ril__loadingCirclePoint:nth-of-type(9)::before {
  -webkit-animation-delay: -533ms;
          animation-delay: -533ms;
}
.ril__loadingCirclePoint:nth-of-type(4) {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.ril__loadingCirclePoint:nth-of-type(10) {
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}
.ril__loadingCirclePoint:nth-of-type(4)::before,
.ril__loadingCirclePoint:nth-of-type(10)::before {
  -webkit-animation-delay: -400ms;
          animation-delay: -400ms;
}
.ril__loadingCirclePoint:nth-of-type(5) {
  -webkit-transform: rotate(120deg);
          transform: rotate(120deg);
}
.ril__loadingCirclePoint:nth-of-type(11) {
  -webkit-transform: rotate(300deg);
          transform: rotate(300deg);
}
.ril__loadingCirclePoint:nth-of-type(5)::before,
.ril__loadingCirclePoint:nth-of-type(11)::before {
  -webkit-animation-delay: -266ms;
          animation-delay: -266ms;
}
.ril__loadingCirclePoint:nth-of-type(6) {
  -webkit-transform: rotate(150deg);
          transform: rotate(150deg);
}
.ril__loadingCirclePoint:nth-of-type(12) {
  -webkit-transform: rotate(330deg);
          transform: rotate(330deg);
}
.ril__loadingCirclePoint:nth-of-type(6)::before,
.ril__loadingCirclePoint:nth-of-type(12)::before {
  -webkit-animation-delay: -133ms;
          animation-delay: -133ms;
}
.ril__loadingCirclePoint:nth-of-type(7) {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.ril__loadingCirclePoint:nth-of-type(13) {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}
.ril__loadingCirclePoint:nth-of-type(7)::before,
.ril__loadingCirclePoint:nth-of-type(13)::before {
  -webkit-animation-delay: 0ms;
          animation-delay: 0ms;
}

.ril__loadingContainer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.ril__imagePrev .ril__loadingContainer,
.ril__imageNext .ril__loadingContainer {
  display: none;
}

.ril__errorContainer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
}
.ril__imagePrev .ril__errorContainer,
.ril__imageNext .ril__errorContainer {
  display: none;
}

.ril__loadingContainer__icon {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}

.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.-tyd-f3fqv{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.B\+9-YaosuX{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.mplHq9EzW7{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.mplHq9EzW7>i,.mplHq9EzW7>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.zkTAgPTjrI{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._7Bjrm34LHk{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.in19LlYMEK{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.WPxPrMFdU9{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.aVif\+B6Vwc{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._9yGKMcSekn{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._02tcTQU5Nf{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}._02tcTQU5Nf .Z0uOiHj\+iA{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}._02tcTQU5Nf .Z0uOiHj\+iA>span{color:rgba(0,0,0,0.65)}.jolqWWSvuA{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.jolqWWSvuA ._1zfvR-cmat{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.jolqWWSvuA ._1zfvR-cmat>span{font-size:8px}.xcA95ODzI6 .ant-popover-inner-content{padding:0}.xcA95ODzI6 .ant-popover-arrow{border-color:#475365 !important}.xcA95ODzI6 .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}._2Yb5fIHwut{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.C9vvTjw0o8{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.C9vvTjw0o8 ._7izg4KUkrH{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.ZkSWSEs56z{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.m\+h2SznIzX{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.m\+h2SznIzX{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}._6koObXDNO3{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.hoicbNjj\+V html,.hoicbNjj\+V body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.hoicbNjj\+V body,.hoicbNjj\+V div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.hoicbNjj\+V textarea{border:none !important;padding-left:0 !important}.hoicbNjj\+V table,.hoicbNjj\+V tr,.hoicbNjj\+V td{page-break-inside:avoid}.hoicbNjj\+V div{page-break-inside:avoid}.hoicbNjj\+V thead{display:table-header-group}.hoicbNjj\+V tfoot{display:table-footer-group}.hoicbNjj\+V *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.hoicbNjj\+V .omwF0jfm32,.hoicbNjj\+V .no-print,.hoicbNjj\+V .react-resizable-handle,.hoicbNjj\+V .fc-whiteboard-toolbar,.hoicbNjj\+V .ant-modal-root,.hoicbNjj\+V .ant-alert,.hoicbNjj\+V .CsJ3M0RmY6,.hoicbNjj\+V .QVQHNJb72r{display:none !important}.hoicbNjj\+V .h30xaP-\+\+L{display:none !important}}body{margin:0 !important}body{height:100vh;width:100vw;background-color:white}#root{height:100%;width:100%}div::-webkit-scrollbar,section::-webkit-scrollbar{width:8px;height:8px}div::-webkit-scrollbar-thumb,section::-webkit-scrollbar-thumb{background-color:#808080}.ant-pagination a.ant-pagination-item-link{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:32px}.ant-calendar-date-panel .ant-calendar-header .ant-calendar-prev-year-btn,.ant-calendar-date-panel .ant-calendar-header .ant-calendar-prev-month-btn,.ant-calendar-date-panel .ant-calendar-header .ant-calendar-next-year-btn,.ant-calendar-date-panel .ant-calendar-header .ant-calendar-next-month-btn{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.ant-btn{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.ant-btn-sm{font-size:13px}.ant-table-tbody .ant-btn-link{padding-left:0;padding-right:0}.ant-table-tbody>tr>td,.ant-table-thead>tr>th{padding:12px 8px !important}.ant-table-tbody>tr>td,.ant-table-thead>tr>th{font-size:14px}.ant-table-tbody>tr.ant-table-measure-row>td{padding:0 !important}.ant-input-search{height:32px}button.ant-alert-close-icon{top:13px}button .ant-modal-close-x{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._hj-f5b2a1eb-9b07_feedback_minimized_label_text{-webkit-transform:rotate(0) !important;transform:rotate(0) !important}a[href="https://www.cnzz.com/stat/website.php?web_id=1279077844"]{display:none}.reactour__helper{background:none !important;color:white !important;-webkit-box-shadow:none !important;box-shadow:none !important}.reactour__helper{font-size:24px}.reactour__helper button.sc-bdVaJa>svg{color:white;font-size:20px}.ant-input-suffix{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.ant-table-column-sorters{padding:4px !important}.ant-modal-content{width:100% !important}.ant-tabs-nav-container{height:45px}.ant-tabs .ant-tabs-left-bar .ant-tabs-tab-btn{height:40px}.ant-tabs-content-holder{height:100%}.ant-select-selection-item-remove{display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important}.ant-select-selection-item-remove{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.ant-input-search-button{border-left:none}.ant-descriptions-view{overflow-y:auto}.ant-btn-circle.ant-btn-lg{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.ant-avatar-image>img{-o-object-fit:contain !important;object-fit:contain !important}@media print{body{-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}input,textarea{border:none !important;padding-left:0 !important}table,tr,td{page-break-inside:avoid}div{page-break-inside:avoid}thead{display:table-header-group}tfoot{display:table-footer-group}.omwF0jfm32,.no-print,.react-resizable-handle,.fc-whiteboard-toolbar,.ant-modal-root,.ant-alert,.QVQHNJb72r{display:none !important}}
._0ahzbx2h2m{position:relative}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.l6pXwYVSRx{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.eKd\+UmNVKI{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}._9MWh8qel57{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}._9MWh8qel57>i,._9MWh8qel57>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}._7N3Ud-jqfx{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._26EBCRh0ym{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.OkTcyaaiKA{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.D3cgIDNJzY{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.Eoh\+0bTTnb{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.iC7Fx9VmlV{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.aAgcBCF3Wu{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.aAgcBCF3Wu ._2wkxYP\+5d1{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.aAgcBCF3Wu ._2wkxYP\+5d1>span{color:rgba(0,0,0,0.65)}.PWKsnvgs69{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.PWKsnvgs69 .o\+yWmBJg6v{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.PWKsnvgs69 .o\+yWmBJg6v>span{font-size:8px}._5JWkLqyoB7 .ant-popover-inner-content{padding:0}._5JWkLqyoB7 .ant-popover-arrow{border-color:#475365 !important}._5JWkLqyoB7 .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.UNgv5NDMGB{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.G3j3tIhTTJ{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.G3j3tIhTTJ ._3IYhXuM6Hy{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.dHsA2KDhzP{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.souBWQR3Dk{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.souBWQR3Dk{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.qYVCwuRMWc{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.OFaa-NNSfE html,.OFaa-NNSfE body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.OFaa-NNSfE body,.OFaa-NNSfE div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.OFaa-NNSfE textarea{border:none !important;padding-left:0 !important}.OFaa-NNSfE table,.OFaa-NNSfE tr,.OFaa-NNSfE td{page-break-inside:avoid}.OFaa-NNSfE div{page-break-inside:avoid}.OFaa-NNSfE thead{display:table-header-group}.OFaa-NNSfE tfoot{display:table-footer-group}.OFaa-NNSfE *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.OFaa-NNSfE .qDaIuPu3pM,.OFaa-NNSfE .no-print,.OFaa-NNSfE .react-resizable-handle,.OFaa-NNSfE .fc-whiteboard-toolbar,.OFaa-NNSfE .ant-modal-root,.OFaa-NNSfE .ant-alert,.OFaa-NNSfE ._8PiBDzVs7z,.OFaa-NNSfE .MRr9froj3h{display:none !important}.OFaa-NNSfE .mJj4U3hjtw{display:none !important}}.mLb-xtWvXO{display:inline-block;height:64px;padding:0 0 0 24px;font-size:20px;line-height:64px;vertical-align:top;cursor:pointer}.mLb-xtWvXO img{display:inline-block;vertical-align:middle}.-gwtjprieM .anticon{margin-right:8px}.-gwtjprieM .ant-dropdown-menu-item{min-width:160px}.zRfL4pK9QD{height:64px;padding:calc((64px - 20px) / 2) 24px;font-size:20px;cursor:pointer;-webkit-transition:all .3s,padding 0s;transition:all .3s,padding 0s}.zRfL4pK9QD:hover{background:rgba(0,0,0,0.025)}.dmTh2DkcQn{float:right;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:100%;overflow:hidden;padding-right:16px}.dmTh2DkcQn>.BWqvPkmBM0{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:100%;cursor:pointer;-webkit-transition:all .3s;transition:all .3s}.dmTh2DkcQn>.BWqvPkmBM0>i{color:rgba(0,0,0,0.85);vertical-align:middle}.dmTh2DkcQn>.BWqvPkmBM0:hover{background:rgba(0,0,0,0.025)}.dmTh2DkcQn>.BWqvPkmBM0.opened{background:rgba(0,0,0,0.025)}.dmTh2DkcQn .WccPixGSof{padding:0 12px}.dmTh2DkcQn .WccPixGSof:hover{background:transparent}.dmTh2DkcQn .WccPixGSof .ant-select-combobox .ant-select-search__field__wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.dmTh2DkcQn ._90RnRp8j7m .z5e0Gbz87G{margin:calc((64px - 24px) / 2) 0;margin-right:8px;color:#6874e2;vertical-align:top;background:rgba(255,255,255,0.85)}.Dto7RL\+rix{height:64px}.Dto7RL\+rix .BWqvPkmBM0{color:rgba(255,255,255,0.85)}.Dto7RL\+rix .BWqvPkmBM0>i{color:rgba(255,255,255,0.85)}.Dto7RL\+rix .BWqvPkmBM0:hover,.Dto7RL\+rix .BWqvPkmBM0.opened{background:#6874e2}.Dto7RL\+rix .BWqvPkmBM0 .ant-badge{color:rgba(255,255,255,0.85)}@media only screen and (max-width:768px){.ant-divider-vertical{vertical-align:baseline;vertical-align:initial}.Q8j18OkIOk{display:none}i.zRfL4pK9QD{padding:22px 12px}.mLb-xtWvXO{position:relative;padding-right:12px;padding-left:12px}.dmTh2DkcQn{position:absolute;top:0;right:12px;background:#fff}.dmTh2DkcQn ._90RnRp8j7m .z5e0Gbz87G{margin-right:0}}._2YF\+dS\+8PS{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._2YF\+dS\+8PS div{text-align:center;margin:8px 0}._2YF\+dS\+8PS img{width:150px;height:150px}
.woRfOg-Dqh{position:relative}
.ant-layout{height:100vh}.ant-layout .ant-pro-sider-fixed{position:fixed !important}.ant-layout .ant-layout-header.ant-pro-layout-header-mix{width:100vw !important}.ant-layout .ant-layout-header.ant-pro-layout-header-mix{padding-left:16px}.ant-layout .ant-pro-layout-content{padding:0px 16px 0 !important;margin:0 !important}.ant-layout .ant-pro-layout-content>div{height:100%}.ant-layout .ant-pro-basicLayout .ant-layout{height:100%;overflow:hidden;background-color:#eff1f7;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial}.ant-layout .ant-pro-basicLayout .ant-layout>div{height:100%}.ant-layout .ant-layout-header{width:auto !important;width:initial !important}.ant-layout .ant-layout-header{-webkit-box-shadow:2px 0 6px rgba(0,21,41,0.35);box-shadow:2px 0 6px rgba(0,21,41,0.35)}.ant-layout .ant-layout-header .owg89ZFHLp{font-size:16px;margin-left:8px;color:rgba(0,0,0,0.45);display:-webkit-box;display:-ms-flexbox;display:flex}.ant-layout .ant-layout-content>div>div{height:calc(100vh - 88px);overflow-x:hidden;overflow-y:auto}.ant-menu{background:rgba(59, 69, 94)}.ant-menu .menu-indicator{height:5px;width:5px;border-radius:50%;background:#acbbdc;display:inline-block;margin-right:8px}.ant-menu .ant-menu-item:hover .NbcCZNEfjl{color:white}.ant-menu .ze4afUQwLD{width:100%;height:100%;display:grid;grid-template-columns:18px 1fr;-webkit-box-align:center;-ms-flex-align:center;align-items:center;grid-gap:0 18px}.ant-menu .ze4afUQwLD .S031znjWc2{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:18px;height:18px}.ant-menu .k-AQFWFhB8{grid-template-columns:100%}.ant-menu .k-AQFWFhB8 .S031znjWc2{height:100%;width:100%}.ant-menu .NbcCZNEfjl{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#acbbdc;height:45px;cursor:pointer;position:relative}.ant-menu .NbcCZNEfjl svg{fill:#acbbdc}.ant-menu .NGPbhD1Hne{position:absolute;right:2px;top:2px}.ant-pro-sider{background:rgba(59, 69, 94) !important}.ant-pro-sider{-webkit-box-flex:0;-ms-flex:0 0 220px;flex:0 0 220px;max-width:220px;min-width:220px;width:220px}.ant-pro-sider>div>.ant-menu{height:calc(100vh - 64px);overflow-y:auto;overflow-x:hidden}.ant-pro-sider .ant-pro-sider-logo#logo{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-shadow:none;box-shadow:none;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:rgba(59, 69, 94);max-height:90px;overflow:hidden}.ant-pro-sider .ant-pro-sider-logo#logo>a{height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.ant-pro-sider .ant-pro-sider-logo#logo h1{display:none}.ant-pro-sider li.ant-menu-item{height:45px !important;line-height:45px !important}.ant-pro-sider li.ant-menu-item:hover{color:white}.ant-pro-sider span.ant-pro-menu-item{display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important;-webkit-box-align:center !important;-ms-flex-align:center !important;align-items:center !important}.ant-pro-sider .ant-menu-submenu{background:rgba(59, 69, 94)}.ant-pro-sider .ant-menu-submenu .ant-menu-item{background:rgba(59, 69, 94)}.ant-pro-sider .ant-menu-submenu .ant-menu-item span{color:#acbbdc;font-size:14px}.ant-pro-sider .ant-menu-submenu .ant-menu-item span:hover{color:white}.ant-pro-sider .ant-menu-submenu .ant-menu-item:hover span{color:white}.ant-pro-sider .ant-menu-submenu .ant-menu-item-selected{background-color:#1b2131}.ant-pro-sider .ant-menu-submenu .ant-menu-submenu-title{color:#acbbdc;background:rgba(59, 69, 94);font-size:14px}.ant-pro-sider .ant-menu-submenu .ant-menu-submenu-title:hover{color:white !important}.ant-pro-sider .ant-menu-submenu .ant-menu-submenu-title>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.ant-pro-sider .ant-menu-submenu .ant-menu-submenu-title svg{fill:#acbbdc}.ant-pro-sider .ant-menu-submenu-inline > .ant-menu-submenu-title .ant-menu-submenu-arrow:before{background:#acbbdc !important}.ant-pro-sider .ant-menu-submenu-inline > .ant-menu-submenu-title .ant-menu-submenu-arrow:after{background:#acbbdc !important}.ant-pro-sider .ant-menu-inline-collapsed .ant-menu-submenu-title{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.ant-pro-sider .ant-menu-inline-collapsed .NbcCZNEfjl{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.ant-pro-sider .ant-menu-inline-collapsed .NbcCZNEfjl span{display:none}.ant-pro-sider .ant-menu-inline-collapsed-tooltip,.ant-pro-sider .ant-menu-submenu-popup{display:none !important}.ant-pro-sider .ant-pro-base-menu-item-icon+.ant-pro-base-menu-item-text{-webkit-transform:translateX(8px);transform:translateX(8px)}.dmFu9W8mi7 .gJ5h3qjC2i{margin-top:12px}.dmFu9W8mi7 .jrBYqH{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}
.raDf8AGzIL{color:black;height:100%;width:100%;position:relative}.raDf8AGzIL>div{height:100%}
.PMV8F0r8ys .X9\+XsB9cJg{color:#fff;font-size:26px;text-align:center}.PMV8F0r8ys .tSs87NmPIL{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.PMV8F0r8ys .tSs87NmPIL ._8kuO3mPMs9{margin-bottom:25px}.PMV8F0r8ys .tSs87NmPIL .ant-btn{color:#fff;border:1px solid #fff;background-color:rgba(255,255,255,0.5)}.PMV8F0r8ys .ant-input-group-addon{opacity:.6}.PMV8F0r8ys .ant-input-affix-wrapper{opacity:.6;height:40px;max-height:none;max-height:initial}.PMV8F0r8ys .ant-input-affix-wrapper .anticon{color:#000;opacity:.2}.PMV8F0r8ys .ant-btn{height:40px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.ajfvXycceF{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.tMiKDKo2f\+{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.sktn\+z43s9{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.sktn\+z43s9>i,.sktn\+z43s9>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.g1irjZaOEU{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.aXpAVrg5ss{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.Ows7YZmNul{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.yZ\+DChRshx{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.WpZMFxWIbm{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.WiRJrzFBrb{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.EYeVRZJZaT{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.EYeVRZJZaT .XAysri2E\+x{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.EYeVRZJZaT .XAysri2E\+x>span{color:rgba(0,0,0,0.65)}.A7xLNZPdnp{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.A7xLNZPdnp .UqRpznqJjk{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.A7xLNZPdnp .UqRpznqJjk>span{font-size:8px}.VfnZf2gXIu .ant-popover-inner-content{padding:0}.VfnZf2gXIu .ant-popover-arrow{border-color:#475365 !important}.VfnZf2gXIu .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.sxxnLijOpA{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.A8o1nm7f-x{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.A8o1nm7f-x .dE\+qzgbEP6{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.TIt4rI704s{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.FZdyjEmoKD{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.FZdyjEmoKD{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.S9oBUfZoYU{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.JSYQSzLNzU html,.JSYQSzLNzU body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.JSYQSzLNzU body,.JSYQSzLNzU div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.JSYQSzLNzU textarea{border:none !important;padding-left:0 !important}.JSYQSzLNzU table,.JSYQSzLNzU tr,.JSYQSzLNzU td{page-break-inside:avoid}.JSYQSzLNzU div{page-break-inside:avoid}.JSYQSzLNzU thead{display:table-header-group}.JSYQSzLNzU tfoot{display:table-footer-group}.JSYQSzLNzU *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.JSYQSzLNzU .M\+J2yVsNoL,.JSYQSzLNzU .no-print,.JSYQSzLNzU .react-resizable-handle,.JSYQSzLNzU .fc-whiteboard-toolbar,.JSYQSzLNzU .ant-modal-root,.JSYQSzLNzU .ant-alert,.JSYQSzLNzU .uYBLPyhd8e,.JSYQSzLNzU .qQUjGsOsxr{display:none !important}.JSYQSzLNzU .QIScCY3RLH{display:none !important}}._6nLShj-ENk{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;height:100vh;width:100vw;background:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQ0MCIgaGVpZ2h0PSI5MDAiIHZpZXdCb3g9IjAgMCAxNDQwIDkwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZGVmcz48bGluZWFyR3JhZGllbnQgeDE9IjExMS41MzUlIiB5MT0iMTEwLjUwMyUiIHgyPSItMS4yOTQlIiB5Mj0iLTIuMTQ4JSIgaWQ9ImEiPjxzdG9wIHN0b3AtY29sb3I9IiM0MzRFQUQiIG9mZnNldD0iMCUiLz48c3RvcCBzdG9wLWNvbG9yPSIjOEM4REZGIiBvZmZzZXQ9IjEwMCUiLz48L2xpbmVhckdyYWRpZW50PjxsaW5lYXJHcmFkaWVudCB4MT0iMTA5LjU5NiUiIHkxPSI5NC43OTklIiB4Mj0iLTI1LjA1MSUiIHkyPSI3LjY3NyUiIGlkPSJiIj48c3RvcCBzdG9wLWNvbG9yPSIjMUIzQkQ4IiBvZmZzZXQ9IjAlIi8+PHN0b3Agc3RvcC1jb2xvcj0iIzE3NkNFMCIgb2Zmc2V0PSIzMS40NzQlIi8+PHN0b3Agc3RvcC1jb2xvcj0iIzBCOTJFNyIgb2Zmc2V0PSI0OS4xODQlIi8+PHN0b3Agc3RvcC1jb2xvcj0iIzBCQjZFQiIgb2Zmc2V0PSI3MS4zMjQlIi8+PHN0b3Agc3RvcC1jb2xvcj0iIzAwRTBGMiIgb2Zmc2V0PSIxMDAlIi8+PC9saW5lYXJHcmFkaWVudD48bGluZWFyR3JhZGllbnQgeDE9Ii0xMS4zMTklIiB5MT0iLTI3LjM5NSUiIHgyPSIxMDAlIiB5Mj0iMTA2LjkyNCUiIGlkPSJjIj48c3RvcCBzdG9wLWNvbG9yPSIjMUIzQkQ4IiBvZmZzZXQ9IjAlIi8+PHN0b3Agc3RvcC1jb2xvcj0iIzE3NkNFMCIgb2Zmc2V0PSIzMS40NzQlIi8+PHN0b3Agc3RvcC1jb2xvcj0iIzBCOTJFNyIgb2Zmc2V0PSI0OS4xODQlIi8+PHN0b3Agc3RvcC1jb2xvcj0iIzBCQjZFQiIgb2Zmc2V0PSI3MS4zMjQlIi8+PHN0b3Agc3RvcC1jb2xvcj0iIzAwRTBGMiIgb2Zmc2V0PSIxMDAlIi8+PC9saW5lYXJHcmFkaWVudD48bGluZWFyR3JhZGllbnQgeDE9IjE5Ljk0JSIgeTE9Ii0xMC44NjIlIiB4Mj0iMTIzLjEyMSUiIHkyPSIxMzguNzA2JSIgaWQ9ImQiPjxzdG9wIHN0b3AtY29sb3I9IiMxQjNCRDgiIG9mZnNldD0iMCUiLz48c3RvcCBzdG9wLWNvbG9yPSIjMTc2Q0UwIiBvZmZzZXQ9IjMxLjQ3NCUiLz48c3RvcCBzdG9wLWNvbG9yPSIjMEI5MkU3IiBvZmZzZXQ9IjQ5LjE4NCUiLz48c3RvcCBzdG9wLWNvbG9yPSIjMEJCNkVCIiBvZmZzZXQ9IjcxLjMyNCUiLz48c3RvcCBzdG9wLWNvbG9yPSIjMDBFMEYyIiBvZmZzZXQ9IjEwMCUiLz48L2xpbmVhckdyYWRpZW50PjxsaW5lYXJHcmFkaWVudCB4MT0iLTguMzc3JSIgeTE9IjUwLjAxNCUiIHgyPSI5OS40NjclIiB5Mj0iNTAuMDE0JSIgaWQ9ImUiPjxzdG9wIHN0b3AtY29sb3I9IiM1NEFBRjYiIG9mZnNldD0iMCUiLz48c3RvcCBzdG9wLWNvbG9yPSIjNTI5RUZCIiBvZmZzZXQ9IjI0LjI4OSUiLz48c3RvcCBzdG9wLWNvbG9yPSIjNDk3NkRCIiBvZmZzZXQ9IjU4LjIwOSUiLz48c3RvcCBzdG9wLWNvbG9yPSIjMzk2OUQzIiBvZmZzZXQ9IjkyLjQyMiUiLz48c3RvcCBzdG9wLWNvbG9yPSIjNDU2REQwIiBvZmZzZXQ9IjEwMCUiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGZpbGw9IiNGRkYiIGQ9Ik0xIDBoMTQ0MHY5MDBIMXoiLz48cGF0aCBkPSJNMTA4Ni42NTkgMTE1OS4zMThsLTE0MC4wNjggMzcuNTNjLTUuMzM1IDEuNDMtMTAuODE4LTEuNzM2LTEyLjI0OC03LjA3LTEuNDMtNS4zMzUgMS43MzctMTAuODE4IDcuMDcxLTEyLjI0OGwxMzYuMTE1LTM2LjQ3Mi0zLjgzNC03LjY2OC0yNC4xMDQgNi40NTljLTUuMzM1IDEuNDMtMTAuODE4LTEuNzM3LTEyLjI0OC03LjA3MS0xLjQzLTUuMzM1IDEuNzM3LTEwLjgxOCA3LjA3MS0xMi4yNDhsMjAuMTUxLTUuNEw3MTYgNDE4aDkwMHY5MDBoLTQ1MGwtNzkuMzQxLTE1OC42ODJ6IiBmaWxsPSJ1cmwoI2EpIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTc2IC00MTgpIi8+PGcgb3BhY2l0eT0iLjYiPjxwYXRoIGQ9Ik0xODQ0IDEwMzEuNWMwIDEzMi4wODMtMTA3LjQxNyAyMzkuNS0yMzkuNSAyMzkuNVMxMzY1IDExNjMuOTggMTM2NSAxMDMxLjVjMC0xMzIuMDgzIDEwNy40MTctMjM5LjUgMjM5LjUtMjM5LjUgMTMyLjQ4IDAgMjM5LjUgMTA3LjQxNyAyMzkuNSAyMzkuNXoiIGZpbGw9InVybCgjYikiIGZpbGwtcnVsZT0ibm9uemVybyIgb3BhY2l0eT0iLjEiIHRyYW5zZm9ybT0ic2NhbGUoLTEgMSkgcm90YXRlKC0yOCAtNzUwLjI1MyA2OTA0Ljg1KSIvPjxwYXRoIGQ9Ik0zNTUgOTQ2LjVjMCA0NC4zOTUtMzYuMTA1IDgwLjUtODAuNSA4MC41UzE5NCA5OTEuMDMgMTk0IDk0Ni41YzAtNDQuMzk1IDM2LjEwNS04MC41IDgwLjUtODAuNSA0NC41MyAwIDgwLjUgMzYuMTA1IDgwLjUgODAuNXoiIGZpbGw9InVybCgjYykiIGZpbGwtcnVsZT0ibm9uemVybyIgb3BhY2l0eT0iLjA5MSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTE3NiAtNDE4KSIvPjxwYXRoIGQ9Ik01MDggMjU0YzAgMTQwLjA4LTExMy45MiAyNTQtMjU0IDI1NEMxMTMuOTIgNTA4IDAgMzk0LjUwMiAwIDI1NCAwIDExMy45MiAxMTMuOTIgMCAyNTQgMGMxNDAuNTAyIDAgMjU0IDExMy45MiAyNTQgMjU0eiIgZmlsbD0idXJsKCNiKSIgZmlsbC1ydWxlPSJub256ZXJvIiBvcGFjaXR5PSIuMSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTE3NiAtNDE4KSIvPjxwYXRoIGQ9Ik04NjIgMTE5Ni41YzAgNDQuMzk1LTM2LjEwNSA4MC41LTgwLjUgODAuNXMtODAuNS0zNS45Ny04MC41LTgwLjVjMC00NC4zOTUgMzYuMTA1LTgwLjUgODAuNS04MC41IDQ0LjUzIDAgODAuNSAzNi4xMDUgODAuNSA4MC41em0zMzUgMTAxYzAgNDQuMzk1LTM2LjEwNSA4MC41LTgwLjUgODAuNXMtODAuNS0zNS45Ny04MC41LTgwLjVjMC00NC4zOTUgMzYuMTA1LTgwLjUgODAuNS04MC41IDQ0LjUzIDAgODAuNSAzNi4xMDUgODAuNSA4MC41eiIgZmlsbD0idXJsKCNjKSIgZmlsbC1ydWxlPSJub256ZXJvIiBvcGFjaXR5PSIuMDkxIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTc2IC00MTgpIi8+PGcgb3BhY2l0eT0iLjIyOCI+PHBhdGggZD0iTTgwIDQwYzAgMjIuMDYtMTcuOTQgNDAtNDAgNDBTMCA2Mi4xMjYgMCA0MEMwIDE3Ljk0IDE3Ljk0IDAgNDAgMGMyMi4xMjYgMCA0MCAxNy45NCA0MCA0MHoiIG9wYWNpdHk9Ii4yIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMjg5IDEwNCkiIGZpbGw9InVybCgjZCkiIGZpbGwtcnVsZT0ibm9uemVybyIvPjwvZz48ZyBvcGFjaXR5PSIuMjU4Ij48cGF0aCBkPSJNMTA5IDU0LjVjMCAzMC4wNTYtMjQuNDQ0IDU0LjUtNTQuNSA1NC41UzAgODQuNjQ3IDAgNTQuNUMwIDI0LjQ0NCAyNC40NDQgMCA1NC41IDAgODQuNjQ3IDAgMTA5IDI0LjQ0NCAxMDkgNTQuNXoiIG9wYWNpdHk9Ii4xIiB0cmFuc2Zvcm09Im1hdHJpeCgtMSAwIDAgMSA4MjkgMzUpIiBmaWxsPSJ1cmwoI2UpIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48L2c+PC9nPjxwYXRoIGQ9Ik05MTcuODU1IDc3Mi43MjZsMTgwLjU2NS00OC4zODNjNS4zMzUtMS40MyAxMC44MTkgMS43MzcgMTIuMjQ4IDcuMDcxIDEuNDMgNS4zMzUtMS43MzYgMTAuODE4LTcuMDcxIDEyLjI0OGwtMTc2LjgxIDQ3LjM3Ni04LjkzMi0xOC4zMTJ6bS00MC41MDUgNTguMjkzbDE0OC4wNy0zOS42NzZjNS4zMzUtMS40MyAxMC44MTkgMS43MzcgMTIuMjQ4IDcuMDcxIDEuNDMgNS4zMzUtMS43MzYgMTAuODE4LTcuMDcxIDEyLjI0OGwtMjM5LjU1IDY0LjE4N2E5Ljk2NyA5Ljk2NyAwIDAxLTQuMDQ3LjIzNmw5MC4zNS00NC4wNjZ6IiBmaWxsPSIjRkZGIi8+PC9nPjwvc3ZnPg==);background-size:cover}._6nLShj-ENk .ant-tabs .ant-tabs-tab.ant-tabs-tab-active .ant-tabs-tab-btn{color:white}.w83\+OcFpKi{height:56px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;color:white}.rJubvPCmu0{position:absolute;width:400px;right:10vw;top:45%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.rJubvPCmu0 .psrt396MkA{width:100%;height:100px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.rJubvPCmu0 .hSvqD\+o7pi{margin-top:24px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.rJubvPCmu0 .hSvqD\+o7pi .ant-btn{height:40px;color:#fff;border:none;background-color:rgba(255,255,255,0.5)}.rJubvPCmu0 ._1Jl9ZQ\+84e{color:#fff}.rJubvPCmu0 ._1Jl9ZQ\+84e :hover{color:#95a1f0}.rJubvPCmu0 .jw7seG3W0d{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-top:16px}.rJubvPCmu0 .jw7seG3W0d .RpY9soQfIp{color:#fff}.rJubvPCmu0 .ant-tabs .ant-input-affix-wrapper{width:400px;opacity:.8;height:40px;max-height:none;max-height:initial}.rJubvPCmu0 .ant-tabs .ant-input-affix-wrapper .anticon{color:#000;opacity:.2}.rJubvPCmu0 .ant-input-group .ant-select-selector{height:40px;opacity:.8}.rJubvPCmu0 .ant-input-group .ant-select-selection-item{line-height:40px}.rJubvPCmu0 .ant-tabs-top>.ant-tabs-nav:before{border:none}.rJubvPCmu0 .ant-tabs-nav-list{height:50px;padding-left:110px;border-bottom:none}.rJubvPCmu0 .ant-tabs-nav-list .ant-tabs-ink-bar{background:white}.rJubvPCmu0 .ant-tabs-nav-list .ant-tabs-tab-btn{color:rgba(255,255,255,0.65)}.rJubvPCmu0 .ant-tabs-nav-list .ant-tabs-tab-active{color:white}.Pw4tnLEKWA{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.Pw4tnLEKWA .V0upAgZhRs{height:250px;overflow:hidden;overflow-y:auto}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.-lIsUHFVKP{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}._9mon3Brg5Q{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.cLmUwB1IdE{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.cLmUwB1IdE>i,.cLmUwB1IdE>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.sluBz1V44r{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._0pNvGwD-CE{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.vmcnXJcofc{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.OwElgHrW6T{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.GU\+k03qQL3{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.XfQbrnkCSP{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.k8zYtiMmWu{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.k8zYtiMmWu .dtFmS8qEaC{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.k8zYtiMmWu .dtFmS8qEaC>span{color:rgba(0,0,0,0.65)}._0cKW4pEQLE{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}._0cKW4pEQLE .DR0t\+0XLbK{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}._0cKW4pEQLE .DR0t\+0XLbK>span{font-size:8px}._6zf-M\+LbHe .ant-popover-inner-content{padding:0}._6zf-M\+LbHe .ant-popover-arrow{border-color:#475365 !important}._6zf-M\+LbHe .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}._6htx6welEI{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.MNXN\+9VOuX{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.MNXN\+9VOuX .\+gT5BQ-0Y4{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.kt0IOP7tYU{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.EO3RvQ4Cws{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.EO3RvQ4Cws{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.Wj-u8TkWQp{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.Y-vJWwV4-q html,.Y-vJWwV4-q body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.Y-vJWwV4-q body,.Y-vJWwV4-q div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.Y-vJWwV4-q textarea{border:none !important;padding-left:0 !important}.Y-vJWwV4-q table,.Y-vJWwV4-q tr,.Y-vJWwV4-q td{page-break-inside:avoid}.Y-vJWwV4-q div{page-break-inside:avoid}.Y-vJWwV4-q thead{display:table-header-group}.Y-vJWwV4-q tfoot{display:table-footer-group}.Y-vJWwV4-q *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.Y-vJWwV4-q .ezaW1BilqJ,.Y-vJWwV4-q .no-print,.Y-vJWwV4-q .react-resizable-handle,.Y-vJWwV4-q .fc-whiteboard-toolbar,.Y-vJWwV4-q .ant-modal-root,.Y-vJWwV4-q .ant-alert,.Y-vJWwV4-q .O87TCo6F6h,.Y-vJWwV4-q .SHLRvAQlyb{display:none !important}.Y-vJWwV4-q .eEZzWwfkrO{display:none !important}}.J\+KUk2KUlK{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;-webkit-box-shadow:none;box-shadow:none;padding:24px}.J\+KUk2KUlK .R9G\+xgjvTX{width:100%;margin-bottom:24px;font-size:24px;font-weight:bold;color:rgba(0,0,0,0.75)}.J\+KUk2KUlK .haa7Io887m{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:24px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.akMP8CoKWQ{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.TP4F6ae4tp{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.zt0fno8f0I{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.zt0fno8f0I>i,.zt0fno8f0I>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.MogXXAQYVj{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.\+CV8XWBko9{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}._1NrpOOxk6-{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.JBJ\+zTpuaJ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.nOxX\+qMn3s{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.W0ASd50Hge{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.kNL7JEvBt2{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.kNL7JEvBt2 .qu3YhOo-tO{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.kNL7JEvBt2 .qu3YhOo-tO>span{color:rgba(0,0,0,0.65)}.JvEZ1khOot{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.JvEZ1khOot .eqCaZ6IGzM{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.JvEZ1khOot .eqCaZ6IGzM>span{font-size:8px}.Br9n3fOnfK .ant-popover-inner-content{padding:0}.Br9n3fOnfK .ant-popover-arrow{border-color:#475365 !important}.Br9n3fOnfK .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}._5r5rxdKQ-A{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.iaBlnyTJju{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.iaBlnyTJju .vEVtkP9vNT{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.VClbEncDLf{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.J9tePgDkkd{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.J9tePgDkkd{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}._49quzROH6p{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{._2pMh9PF4kB html,._2pMh9PF4kB body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}._2pMh9PF4kB body,._2pMh9PF4kB div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}._2pMh9PF4kB textarea{border:none !important;padding-left:0 !important}._2pMh9PF4kB table,._2pMh9PF4kB tr,._2pMh9PF4kB td{page-break-inside:avoid}._2pMh9PF4kB div{page-break-inside:avoid}._2pMh9PF4kB thead{display:table-header-group}._2pMh9PF4kB tfoot{display:table-footer-group}._2pMh9PF4kB *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}._2pMh9PF4kB .gmz5rHEdTH,._2pMh9PF4kB .no-print,._2pMh9PF4kB .react-resizable-handle,._2pMh9PF4kB .fc-whiteboard-toolbar,._2pMh9PF4kB .ant-modal-root,._2pMh9PF4kB .ant-alert,._2pMh9PF4kB .TyiWQ2hj8-,._2pMh9PF4kB .\+G5czBlryS{display:none !important}._2pMh9PF4kB .yAXxwWLGfD{display:none !important}}.BiHm-XUKKV{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;-webkit-box-shadow:none;box-shadow:none;padding:24px;padding-top:0;padding-left:0}.BiHm-XUKKV .ZFPfsACH3-{margin-bottom:24px}.BiHm-XUKKV .uKTi7yQWkw{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:24px;color:rgba(0,0,0,0.65)}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.J0835PZSwU{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}._8T54YEdMx9{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.WJb7fM3spn{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.WJb7fM3spn>i,.WJb7fM3spn>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.qEky3sGgm-{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.usDCu1Jpiv{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}._5t9LCieCSe{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.w5tDjI3awm{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.JVSDoK6r5a{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.B3MLCgrhY6{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.x6zo72p-jT{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.x6zo72p-jT .SRxrlRDZ9S{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.x6zo72p-jT .SRxrlRDZ9S>span{color:rgba(0,0,0,0.65)}.HHBDaktjKw{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.HHBDaktjKw ._6oX98LOVXR{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.HHBDaktjKw ._6oX98LOVXR>span{font-size:8px}.Yl4vJBPBTi .ant-popover-inner-content{padding:0}.Yl4vJBPBTi .ant-popover-arrow{border-color:#475365 !important}.Yl4vJBPBTi .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.wL0-OYUSjb{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.m4tJKjOYqX{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.m4tJKjOYqX .\+5uOph4fo6{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}._59\+t6b5FeP{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.K2PDkYhdNF{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.K2PDkYhdNF{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.iDawdx1WcW{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.KVemKu1r1A html,.KVemKu1r1A body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.KVemKu1r1A body,.KVemKu1r1A div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.KVemKu1r1A textarea{border:none !important;padding-left:0 !important}.KVemKu1r1A table,.KVemKu1r1A tr,.KVemKu1r1A td{page-break-inside:avoid}.KVemKu1r1A div{page-break-inside:avoid}.KVemKu1r1A thead{display:table-header-group}.KVemKu1r1A tfoot{display:table-footer-group}.KVemKu1r1A *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.KVemKu1r1A .V1eKKZNQ15,.KVemKu1r1A .no-print,.KVemKu1r1A .react-resizable-handle,.KVemKu1r1A .fc-whiteboard-toolbar,.KVemKu1r1A .ant-modal-root,.KVemKu1r1A .ant-alert,.KVemKu1r1A .\-6YApqLnyX,.KVemKu1r1A .O40pP8riqb{display:none !important}.KVemKu1r1A ._04HliefkHS{display:none !important}}.Pyvdc3U8DV{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;-webkit-box-shadow:none;box-shadow:none;padding:24px;padding-top:0;padding-left:0}.Pyvdc3U8DV .sG74CBUIfz{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:24px;color:rgba(0,0,0,0.65)}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.XfXz\+-Mw68{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.G0enNPmBze{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.XzbheRv9ez{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.XzbheRv9ez>i,.XzbheRv9ez>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}._1xFVXzGqD5{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.pobyZjvgsz{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.pG1gBTijCr{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.q5L4s5TgjZ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}._7eIByQMuz6{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.kAunbEnfym{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.OX90FK\+zMM{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.OX90FK\+zMM .F1tR3doy-G{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.OX90FK\+zMM .F1tR3doy-G>span{color:rgba(0,0,0,0.65)}.XTcs5IiHFU{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.XTcs5IiHFU .Tq1pPIVJ7x{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.XTcs5IiHFU .Tq1pPIVJ7x>span{font-size:8px}.tuSwtIbn2k .ant-popover-inner-content{padding:0}.tuSwtIbn2k .ant-popover-arrow{border-color:#475365 !important}.tuSwtIbn2k .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.vvnnHwCzKm{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.oZJndwsBhh{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.oZJndwsBhh ._48s9BzytM0{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.-SqbPwZq9l{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.\+eX3CA8KQo{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.\+eX3CA8KQo{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}._2QtoMAeCx0{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.ZkM9m7yqvS html,.ZkM9m7yqvS body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.ZkM9m7yqvS body,.ZkM9m7yqvS div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.ZkM9m7yqvS textarea{border:none !important;padding-left:0 !important}.ZkM9m7yqvS table,.ZkM9m7yqvS tr,.ZkM9m7yqvS td{page-break-inside:avoid}.ZkM9m7yqvS div{page-break-inside:avoid}.ZkM9m7yqvS thead{display:table-header-group}.ZkM9m7yqvS tfoot{display:table-footer-group}.ZkM9m7yqvS *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.ZkM9m7yqvS .UCX5uWJi9Q,.ZkM9m7yqvS .no-print,.ZkM9m7yqvS .react-resizable-handle,.ZkM9m7yqvS .fc-whiteboard-toolbar,.ZkM9m7yqvS .ant-modal-root,.ZkM9m7yqvS .ant-alert,.ZkM9m7yqvS .Q0qdpulmuA,.ZkM9m7yqvS .XFZbw-zzNi{display:none !important}.ZkM9m7yqvS .MmzdSgXP6y{display:none !important}}.hCBb-HX370{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;-webkit-box-shadow:none;box-shadow:none;padding:24px}.hCBb-HX370 .uOXFbxYvsL{width:100%;margin-bottom:24px;font-size:24px;font-weight:bold;color:rgba(0,0,0,0.75)}.hCBb-HX370 .aYe5\+QB82s{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:24px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}._10kJTJrQSe{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.t1eleLya7f{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.KpdstZrBu4{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.KpdstZrBu4>i,.KpdstZrBu4>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.UCIN4KkvgG{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.iftxDli0ut{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}._7I\+ETu6Ljr{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.lX5UeEOROY{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.H9kj27WfXi{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.rL1u15ZrIt{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._2UVh7faiZn{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}._2UVh7faiZn .fW3Cgt2yB9{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}._2UVh7faiZn .fW3Cgt2yB9>span{color:rgba(0,0,0,0.65)}.zi\+XNCmO83{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.zi\+XNCmO83 .U\+HVWd7DQ3{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.zi\+XNCmO83 .U\+HVWd7DQ3>span{font-size:8px}.PWVd4kmu53 .ant-popover-inner-content{padding:0}.PWVd4kmu53 .ant-popover-arrow{border-color:#475365 !important}.PWVd4kmu53 .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.fCZCnf7eIl{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.W6lT1OTgKT{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.W6lT1OTgKT .eNpwAhBWKu{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.WzpflVmCdU{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.umxSngksnO{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.umxSngksnO{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}._0EG4UnxHeo{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.LnpFTHmWec html,.LnpFTHmWec body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.LnpFTHmWec body,.LnpFTHmWec div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.LnpFTHmWec textarea{border:none !important;padding-left:0 !important}.LnpFTHmWec table,.LnpFTHmWec tr,.LnpFTHmWec td{page-break-inside:avoid}.LnpFTHmWec div{page-break-inside:avoid}.LnpFTHmWec thead{display:table-header-group}.LnpFTHmWec tfoot{display:table-footer-group}.LnpFTHmWec *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.LnpFTHmWec .LKR-uXm3wK,.LnpFTHmWec .no-print,.LnpFTHmWec .react-resizable-handle,.LnpFTHmWec .fc-whiteboard-toolbar,.LnpFTHmWec .ant-modal-root,.LnpFTHmWec .ant-alert,.LnpFTHmWec .P1YaQc7Pej,.LnpFTHmWec .dq3JjwYrto{display:none !important}.LnpFTHmWec .tDl-i9H3VK{display:none !important}}._4yn7CUXafh{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;-webkit-box-shadow:none;box-shadow:none;padding:24px;padding-top:0;padding-left:0}._4yn7CUXafh ._4e1GCFux-b{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:24px;color:rgba(0,0,0,0.65)}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.kZTtc1UQAQ{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.ltJ8AEsC2a{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.wKaBgFwu5T{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.wKaBgFwu5T>i,.wKaBgFwu5T>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.QF4ois-aqS{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.LnChbuyfQj{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.uKt9D6JJQe{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.m4yMxRXcMr{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.ZTwszdRGX3{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.D\+G8oChuyJ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.VIBv0Mo1-O{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.VIBv0Mo1-O ._40HUQpRBye{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.VIBv0Mo1-O ._40HUQpRBye>span{color:rgba(0,0,0,0.65)}.B1CkAjDYuk{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.B1CkAjDYuk .kt2Rj2IBft{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.B1CkAjDYuk .kt2Rj2IBft>span{font-size:8px}.gQ1zzZXNnd .ant-popover-inner-content{padding:0}.gQ1zzZXNnd .ant-popover-arrow{border-color:#475365 !important}.gQ1zzZXNnd .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}._6Fck9Y1WWA{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.cXeFhZ68re{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.cXeFhZ68re .UpGP0vGYzd{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.pjmrlhpiEa{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.mF0iHAAuEG{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.mF0iHAAuEG{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.dQlNo1Tcom{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.pUxyz1qTVW html,.pUxyz1qTVW body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.pUxyz1qTVW body,.pUxyz1qTVW div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.pUxyz1qTVW textarea{border:none !important;padding-left:0 !important}.pUxyz1qTVW table,.pUxyz1qTVW tr,.pUxyz1qTVW td{page-break-inside:avoid}.pUxyz1qTVW div{page-break-inside:avoid}.pUxyz1qTVW thead{display:table-header-group}.pUxyz1qTVW tfoot{display:table-footer-group}.pUxyz1qTVW *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.pUxyz1qTVW .eONyME50u6,.pUxyz1qTVW .no-print,.pUxyz1qTVW .react-resizable-handle,.pUxyz1qTVW .fc-whiteboard-toolbar,.pUxyz1qTVW .ant-modal-root,.pUxyz1qTVW .ant-alert,.pUxyz1qTVW .my-R1vactX,.pUxyz1qTVW ._3TMs05w1Vr{display:none !important}.pUxyz1qTVW .m0HVZM7Yoa{display:none !important}}.\+ufOCqU-8K{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;-webkit-box-shadow:none;box-shadow:none;padding:24px}.\+ufOCqU-8K ._5NNtRKYr1M{width:100%;margin-bottom:24px;font-size:24px;font-weight:bold;color:rgba(0,0,0,0.75)}.\+ufOCqU-8K .KKBmtr0zSB{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:24px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}._19Lr7z7Enc{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.CR0\+sMnKwI{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.HOIxAc-VVs{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.HOIxAc-VVs>i,.HOIxAc-VVs>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.simAigVMtn{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.Nleqi6W7H7{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.SF7qIWjfLY{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.MOATgawhzx{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.hegAn1dK\+4{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.KGWyy\+xnFs{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.zqb7Ch1SLn{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.zqb7Ch1SLn ._9leT53ozy7{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.zqb7Ch1SLn ._9leT53ozy7>span{color:rgba(0,0,0,0.65)}.Y2UoPeoIYs{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.Y2UoPeoIYs .sH-agwXe8C{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.Y2UoPeoIYs .sH-agwXe8C>span{font-size:8px}._4yDh0UBrMt .ant-popover-inner-content{padding:0}._4yDh0UBrMt .ant-popover-arrow{border-color:#475365 !important}._4yDh0UBrMt .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.me7boFLgeC{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.jWFUt\+ogTR{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.jWFUt\+ogTR ._4XDKWR-ha2{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.JXgEOoF0pT{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.gLbC\+SEGkV{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.gLbC\+SEGkV{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.l9F6uFncPI{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.Liyd1jAGKh html,.Liyd1jAGKh body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.Liyd1jAGKh body,.Liyd1jAGKh div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.Liyd1jAGKh textarea{border:none !important;padding-left:0 !important}.Liyd1jAGKh table,.Liyd1jAGKh tr,.Liyd1jAGKh td{page-break-inside:avoid}.Liyd1jAGKh div{page-break-inside:avoid}.Liyd1jAGKh thead{display:table-header-group}.Liyd1jAGKh tfoot{display:table-footer-group}.Liyd1jAGKh *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.Liyd1jAGKh .F9heNAao-E,.Liyd1jAGKh .no-print,.Liyd1jAGKh .react-resizable-handle,.Liyd1jAGKh .fc-whiteboard-toolbar,.Liyd1jAGKh .ant-modal-root,.Liyd1jAGKh .ant-alert,.Liyd1jAGKh .-lnSmQCe7B,.Liyd1jAGKh .oL4neoqDoG{display:none !important}.Liyd1jAGKh .aNciq527k\+{display:none !important}}.LBynYBnV9M{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;-webkit-box-shadow:none;box-shadow:none;padding:24px}.LBynYBnV9M .f7mV1hMx2V{width:100%;margin-bottom:24px;font-size:24px;font-weight:bold;color:rgba(0,0,0,0.75)}.LBynYBnV9M .GThHaeR2OE{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:24px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.gSnYI7hvGA{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.nNkkU02tGl{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.bbemSFLwrA{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.bbemSFLwrA>i,.bbemSFLwrA>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}._2WTObAB8E8{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.Z9tpgtBT1k{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}._3n1SlTi1OL{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.kpXYnZ8wYM{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.mfwPqFPuNf{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.flNP5jMZew{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.MBHrAuPhXp{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.MBHrAuPhXp .mikH3H0vaW{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.MBHrAuPhXp .mikH3H0vaW>span{color:rgba(0,0,0,0.65)}.xerGqQREka{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.xerGqQREka .nqRda8B2w3{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.xerGqQREka .nqRda8B2w3>span{font-size:8px}._09sbkwtqxS .ant-popover-inner-content{padding:0}._09sbkwtqxS .ant-popover-arrow{border-color:#475365 !important}._09sbkwtqxS .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.dt9arWHtPf{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.M\+yowmmQtH{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.M\+yowmmQtH .u\+Gdw7fBVX{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.rowGEv30ln{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.YDdx2ICHMa{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.YDdx2ICHMa{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.f\+cE18BKfu{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.A4MNLgzKCh html,.A4MNLgzKCh body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.A4MNLgzKCh body,.A4MNLgzKCh div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.A4MNLgzKCh textarea{border:none !important;padding-left:0 !important}.A4MNLgzKCh table,.A4MNLgzKCh tr,.A4MNLgzKCh td{page-break-inside:avoid}.A4MNLgzKCh div{page-break-inside:avoid}.A4MNLgzKCh thead{display:table-header-group}.A4MNLgzKCh tfoot{display:table-footer-group}.A4MNLgzKCh *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.A4MNLgzKCh .avd1dqq7h8,.A4MNLgzKCh .no-print,.A4MNLgzKCh .react-resizable-handle,.A4MNLgzKCh .fc-whiteboard-toolbar,.A4MNLgzKCh .ant-modal-root,.A4MNLgzKCh .ant-alert,.A4MNLgzKCh .Q\+-cLt9Am7,.A4MNLgzKCh ._33YHFPZ9Be{display:none !important}.A4MNLgzKCh .Js\+8vjYw0j{display:none !important}}.\+e79tKyolK{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;-webkit-box-shadow:none;box-shadow:none;padding:24px}.\+e79tKyolK .uIK0Z2oHxk{width:100%;margin-bottom:24px;font-size:24px;font-weight:bold;color:rgba(0,0,0,0.75)}.\+e79tKyolK .wc5OgCl0Oa{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:24px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.D5wdPeeXrO{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}._10VC6x0vdb{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.En\+d6k6T7T{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.En\+d6k6T7T>i,.En\+d6k6T7T>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.lsUGQhIZSd{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.PCCWDJ6OuW{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.bs4cl24jAK{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.TRCGuWbVFP{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.h4kwg2NDGh{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.gN-VF8Gwps{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.UVZ5Ut292a{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.UVZ5Ut292a .l2nLWWPuc8{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.UVZ5Ut292a .l2nLWWPuc8>span{color:rgba(0,0,0,0.65)}.h9a\+1v0o4a{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.h9a\+1v0o4a .sgJtlwSBSL{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.h9a\+1v0o4a .sgJtlwSBSL>span{font-size:8px}.MfL149Mdy8 .ant-popover-inner-content{padding:0}.MfL149Mdy8 .ant-popover-arrow{border-color:#475365 !important}.MfL149Mdy8 .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.-VKoJsJIA3{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.EYcPbpxoO8{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.EYcPbpxoO8 .a60y66JgIy{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}._5sqwbtTwkl{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.FvXSq6iGNQ{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.FvXSq6iGNQ{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.TqbDWzaUlr{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.Otox-B16gM html,.Otox-B16gM body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.Otox-B16gM body,.Otox-B16gM div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.Otox-B16gM textarea{border:none !important;padding-left:0 !important}.Otox-B16gM table,.Otox-B16gM tr,.Otox-B16gM td{page-break-inside:avoid}.Otox-B16gM div{page-break-inside:avoid}.Otox-B16gM thead{display:table-header-group}.Otox-B16gM tfoot{display:table-footer-group}.Otox-B16gM *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.Otox-B16gM .dyURZPICKZ,.Otox-B16gM .no-print,.Otox-B16gM .react-resizable-handle,.Otox-B16gM .fc-whiteboard-toolbar,.Otox-B16gM .ant-modal-root,.Otox-B16gM .ant-alert,.Otox-B16gM ._1TIyScqRI\+,.Otox-B16gM .eYTSdV0eIo{display:none !important}.Otox-B16gM .oNNWQJce0X{display:none !important}}.mgCRGE6SaE{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;-webkit-box-shadow:none;box-shadow:none;padding:24px;padding-top:0;padding-left:0}.mgCRGE6SaE .lQ2dHfTMzd{margin-bottom:24px}.mgCRGE6SaE .zTdtS2rale{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:24px;color:rgba(0,0,0,0.65)}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}._067C\+PYU3f{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.pUX8VQZ71F{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.IddeLWIh4g{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.IddeLWIh4g>i,.IddeLWIh4g>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.xJTvYxNbgJ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.oHfNmuZ2Xl{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}._2HEnvC9m90{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.a-yA5dnmKb{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}._56ReWS-L0X{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.J\+3qUp3PNv{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.D98AHPP2PJ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.D98AHPP2PJ ._08nCY8JHAc{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.D98AHPP2PJ ._08nCY8JHAc>span{color:rgba(0,0,0,0.65)}.bRs11SU6X1{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.bRs11SU6X1 .zOvsvVBKPy{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.bRs11SU6X1 .zOvsvVBKPy>span{font-size:8px}._5EqSvIy9kf .ant-popover-inner-content{padding:0}._5EqSvIy9kf .ant-popover-arrow{border-color:#475365 !important}._5EqSvIy9kf .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.qSru9xrxJP{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.ajFkVmhoQm{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.ajFkVmhoQm .YCT7SN1BVR{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.YAVsIeE67q{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.BOzVugqGoO{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.BOzVugqGoO{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.JCJ\+aBKVIf{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.WKPh8ZcD0i html,.WKPh8ZcD0i body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.WKPh8ZcD0i body,.WKPh8ZcD0i div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.WKPh8ZcD0i textarea{border:none !important;padding-left:0 !important}.WKPh8ZcD0i table,.WKPh8ZcD0i tr,.WKPh8ZcD0i td{page-break-inside:avoid}.WKPh8ZcD0i div{page-break-inside:avoid}.WKPh8ZcD0i thead{display:table-header-group}.WKPh8ZcD0i tfoot{display:table-footer-group}.WKPh8ZcD0i *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.WKPh8ZcD0i .fHs--BeTwu,.WKPh8ZcD0i .no-print,.WKPh8ZcD0i .react-resizable-handle,.WKPh8ZcD0i .fc-whiteboard-toolbar,.WKPh8ZcD0i .ant-modal-root,.WKPh8ZcD0i .ant-alert,.WKPh8ZcD0i .nxr0d6FDuF,.WKPh8ZcD0i .OWr2C5pfpc{display:none !important}.WKPh8ZcD0i .HpLOC2TIxZ{display:none !important}}.X-6yOeEWa1{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;overflow:auto;padding:24px;padding-top:0}.X-6yOeEWa1 .WtWc8M2LCp{width:100%;margin-bottom:24px;font-size:24px;font-weight:bold;color:rgba(0,0,0,0.75)}.X-6yOeEWa1 .kTe\+uT3hBy{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:24px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.QziMSevhlb{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.UpMbihP25I{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.wHvk9haL7k{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.wHvk9haL7k>i,.wHvk9haL7k>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.-jWcxwAbR4{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.I54Ifj92mL{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.OVVbmipWg\+{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.WBZvQm7qwT{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}._6-SP3s6XUG{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.HtOobuIePi{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.kzVNl6kY\+f{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.kzVNl6kY\+f .-IdExSqXAw{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.kzVNl6kY\+f .-IdExSqXAw>span{color:rgba(0,0,0,0.65)}._2iabXjFufB{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}._2iabXjFufB .b7NJ\+nSaQE{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}._2iabXjFufB .b7NJ\+nSaQE>span{font-size:8px}.\-2AgF2o-kK .ant-popover-inner-content{padding:0}.\-2AgF2o-kK .ant-popover-arrow{border-color:#475365 !important}.\-2AgF2o-kK .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.SeeA3eQZSK{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.NRkuu4pwME{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.NRkuu4pwME .eLl\+5uiZ1H{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.InZH2YT3Gj{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.QW8iLcMlFH{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.QW8iLcMlFH{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.sfzQfpiLJo{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.QHbsRr5--Y html,.QHbsRr5--Y body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.QHbsRr5--Y body,.QHbsRr5--Y div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.QHbsRr5--Y textarea{border:none !important;padding-left:0 !important}.QHbsRr5--Y table,.QHbsRr5--Y tr,.QHbsRr5--Y td{page-break-inside:avoid}.QHbsRr5--Y div{page-break-inside:avoid}.QHbsRr5--Y thead{display:table-header-group}.QHbsRr5--Y tfoot{display:table-footer-group}.QHbsRr5--Y *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.QHbsRr5--Y .v7X3RXUTjz,.QHbsRr5--Y .no-print,.QHbsRr5--Y .react-resizable-handle,.QHbsRr5--Y .fc-whiteboard-toolbar,.QHbsRr5--Y .ant-modal-root,.QHbsRr5--Y .ant-alert,.QHbsRr5--Y .nY0z05DGN1,.QHbsRr5--Y .-PxtBEkkOa{display:none !important}.QHbsRr5--Y ._4NTAoi93bp{display:none !important}}.bhRzJST02p{position:relative}
:root {
    --jexcel-border-color:#000;
}

.jexcel_container {
    display:inline-block;
    padding-right:2px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-scroll-chaining: none;
        overscroll-behavior: contain;
    outline: none;
}

.jexcel_container.fullscreen {
    position:fixed;
    top:0px;
    left:0px;
    width:100%;
    height:100%;
    z-index:21;
}

.jexcel_container.fullscreen .jexcel_content {
    overflow:auto;
    width:100%;
    height:100%;
    background-color:#ffffff;
}

.jexcel_container.with-toolbar .jexcel > thead > tr > td {
    top: 0;
}

.jexcel_container.fullscreen.with-toolbar {
    height: calc(100% - 46px);
}

.jexcel_content {
    display:inline-block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right:3px;
    padding-bottom:3px;
    position:relative;
    scrollbar-width: thin;
    scrollbar-color: #666 transparent;
}

@supports (-moz-appearance:none) {
    .jexcel_content { padding-right:10px; } 
}

.jexcel_content::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

.jexcel_content::-webkit-scrollbar-track {
    background: #eee;
}
 
.jexcel_content::-webkit-scrollbar-thumb {
  background: #666; 
}

.jexcel {
    border-collapse: separate;
    table-layout: fixed;
    white-space:  nowrap;
    empty-cells: show;
    border: 0px;
    background-color: #fff;
    width: 0;

    border-top: 1px solid transparent;
    border-left: 1px solid transparent;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

.jexcel > thead > tr > td
{
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-right: 1px solid transparent;
    border-bottom: 1px solid transparent;
    background-color: #f3f3f3;
    padding: 2px;
    cursor: pointer;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    overflow: hidden;
    position: sticky;
    top: 0;
    z-index:2;
}

.with-toolbar .jexcel > thead > tr > td
{
    top:42px;
}

.jexcel > thead > tr > td.dragging
{
    background-color:#fff;
    opacity:0.5;
}

.jexcel > thead > tr > td.selected
{
    background-color:#dcdcdc;
}

.jexcel > thead > tr > td.arrow-up
{
    background-repeat:no-repeat;
    background-position:center right 5px;
    background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='none' d='M0 0h24v24H0V0z'/%3E%3Cpath d='M7 14l5-5 5 5H7z' fill='gray'/%3E%3C/svg%3E");
    text-decoration:underline;
}

.jexcel > thead > tr > td.arrow-down
{
    background-repeat:no-repeat;
    background-position:center right 5px;
    background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='none' d='M0 0h24v24H0V0z'/%3E%3Cpath d='M7 10l5 5 5-5H7z' fill='gray'/%3E%3C/svg%3E");
    text-decoration:underline;
}

.jexcel > tbody > tr > td:first-child
{
    position:relative;
    background-color:#f3f3f3;
    text-align:center;
}

.jexcel > tbody.resizable > tr > td:first-child::before
{
    content:'\00a0';
    width:100%;
    height:3px;
    position:absolute;
    bottom:0px;
    left:0px;
    cursor:row-resize;
}

.jexcel > tbody.draggable > tr > td:first-child::after
{
    content:'\00a0';
    width:3px;
    height:100%;
    position:absolute;
    top:0px;
    right:0px;
    cursor:move;
}

.jexcel > tbody > tr.dragging > td
{
    background-color:#eee;
    opacity:0.5;
}

.jexcel > tbody > tr > td
{
    border-top:1px solid #ccc;
    border-left:1px solid #ccc;
    border-right:1px solid transparent;
    border-bottom:1px solid transparent;
    padding:4px;
    white-space: nowrap;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    line-height:1em;
}

.jexcel > tbody > tr > td:last-child
{
    overflow:hidden;
}

.jexcel > tbody > tr > td > img
{
    display:inline-block;
    max-width:100px;
}

.jexcel > tbody > tr > td.readonly
{
    color:rgba(0,0,0,0.3)
}
.jexcel > tbody > tr.selected > td:first-child
{
    background-color:#dcdcdc;
}
.jexcel > tbody > tr > td > select,
.jexcel > tbody > tr > td > input,
.jexcel > tbody > tr > td > textarea
{
    border:0px;
    border-radius:0px;
    outline:0px;
    width:100%;
    margin:0px;
    padding:0px;
    background-color:transparent;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

.jexcel > tbody > tr > td > textarea
{
    padding-top:6px !important;
}

.jexcel > tbody > tr > td > textarea
{
    resize: none;
}

.jexcel > tbody > tr > td > input[type=checkbox]
{
    width:12px;
    margin-top:2px;
}
.jexcel > tbody > tr > td > input[type=radio]
{
    width:12px;
    margin-top:2px;
}

.jexcel > tbody > tr > td > select
{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-repeat: no-repeat;
    background-position-x: 100%;
    background-position-y: 40%;
    background-image: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSdibGFjaycgaGVpZ2h0PScyNCcgdmlld0JveD0nMCAwIDI0IDI0JyB3aWR0aD0nMjQnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2Zyc+PHBhdGggZD0nTTcgMTBsNSA1IDUtNXonLz48cGF0aCBkPSdNMCAwaDI0djI0SDB6JyBmaWxsPSdub25lJy8+PC9zdmc+);
}

.jexcel > tbody > tr > td.jexcel_dropdown
{
    background-repeat: no-repeat;
    background-position:top 50% right 5px;
    background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='none' d='M0 0h24v24H0V0z'/%3E%3Cpath d='M7 10l5 5 5-5H7z' fill='lightgray'/%3E%3C/svg%3E");
    text-overflow: ellipsis;
    overflow-x:hidden;
}

.jexcel > tbody > tr > td.jexcel_dropdown.jexcel_comments
{
    background:url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='none' d='M0 0h24v24H0V0z'/%3E%3Cpath d='M7 10l5 5 5-5H7z' fill='lightgray'/%3E%3C/svg%3E") top 50% right 5px no-repeat, url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAACXBIWXMAAAsTAAALEwEAmpwYAAAFuGlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDUgNzkuMTYzNDk5LCAyMDE4LzA4LzEzLTE2OjQwOjIyICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdEV2dD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlRXZlbnQjIiB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iIHhtbG5zOnBob3Rvc2hvcD0iaHR0cDovL25zLmFkb2JlLmNvbS9waG90b3Nob3AvMS4wLyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxOSAoV2luZG93cykiIHhtcDpDcmVhdGVEYXRlPSIyMDE5LTAxLTMxVDE4OjU1OjA4WiIgeG1wOk1ldGFkYXRhRGF0ZT0iMjAxOS0wMS0zMVQxODo1NTowOFoiIHhtcDpNb2RpZnlEYXRlPSIyMDE5LTAxLTMxVDE4OjU1OjA4WiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDphMTlhZDJmOC1kMDI2LTI1NDItODhjOS1iZTRkYjkyMmQ0MmQiIHhtcE1NOkRvY3VtZW50SUQ9ImFkb2JlOmRvY2lkOnBob3Rvc2hvcDpkOGI5NDUyMS00ZjEwLWQ5NDktYjUwNC0wZmU1N2I3Nzk1MDEiIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDplMzdjYmE1ZS1hYTMwLWNkNDUtYTAyNS1lOWYxZjk2MzUzOGUiIGRjOmZvcm1hdD0iaW1hZ2UvcG5nIiBwaG90b3Nob3A6Q29sb3JNb2RlPSIzIj4gPHhtcE1NOkhpc3Rvcnk+IDxyZGY6U2VxPiA8cmRmOmxpIHN0RXZ0OmFjdGlvbj0iY3JlYXRlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDplMzdjYmE1ZS1hYTMwLWNkNDUtYTAyNS1lOWYxZjk2MzUzOGUiIHN0RXZ0OndoZW49IjIwMTktMDEtMzFUMTg6NTU6MDhaIiBzdEV2dDpzb2Z0d2FyZUFnZW50PSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxOSAoV2luZG93cykiLz4gPHJkZjpsaSBzdEV2dDphY3Rpb249InNhdmVkIiBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOmExOWFkMmY4LWQwMjYtMjU0Mi04OGM5LWJlNGRiOTIyZDQyZCIgc3RFdnQ6d2hlbj0iMjAxOS0wMS0zMVQxODo1NTowOFoiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCBDQyAyMDE5IChXaW5kb3dzKSIgc3RFdnQ6Y2hhbmdlZD0iLyIvPiA8L3JkZjpTZXE+IDwveG1wTU06SGlzdG9yeT4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4En6MDAAAAX0lEQVQYlX3KOw6AIBBAwS32RpJADXfx0pTET+ERZJ8F8RODFtONsG0QAoh0CSDM82dqodaBdQXnfoLZQM7gPai+wjNNE8R4pTuAYNZSKZASqL7CMy0LxNgJp30fKYUDi3+vIqb/+rUAAAAASUVORK5CYII=') top right no-repeat;
}

.jexcel > tbody > tr > td > .color
{
    width:90%;
    height:10px;
    margin:auto;
}

.jexcel > tbody > tr > td > a {
    text-decoration: underline;
}

.jexcel > tbody > tr > td.highlight > a {
    color: blue;
    cursor: pointer;
}

.jexcel > tfoot > tr > td
{
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-right: 1px solid transparent;
    border-bottom: 1px solid transparent;
    background-color: #f3f3f3;
    padding: 2px;
    cursor: pointer;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    overflow: hidden;
}

.jexcel .highlight {
    background-color:rgba(0,0,0,0.05);
}

.jexcel .highlight-top {
    border-top:1px solid #000; /* var(--jexcel-border-color);*/
    -webkit-box-shadow: 0px -1px #ccc;
            box-shadow: 0px -1px #ccc;
}

.jexcel .highlight-left {
    border-left:1px solid #000; /* var(--jexcel-border-color);*/
    -webkit-box-shadow: -1px 0px #ccc;
            box-shadow: -1px 0px #ccc;
}

.jexcel .highlight-right {
    border-right:1px solid #000; /* var(--jexcel-border-color);*/
}

.jexcel .highlight-bottom {
    border-bottom:1px solid #000; /* var(--jexcel-border-color);*/
}

.jexcel .highlight-top.highlight-left {
    box-shadow: -1px -1px #ccc;
    -webkit-box-shadow: -1px -1px #ccc;
    -moz-box-shadow: -1px -1px #ccc;
}

.jexcel .highlight-selected
{
    background-color:rgba(0,0,0,0.0);
}
.jexcel .selection
{
    background-color:rgba(0,0,0,0.05);
}
.jexcel .selection-left
{
    border-left:1px dotted #000;
}
.jexcel .selection-right
{
    border-right:1px dotted #000;
}
.jexcel .selection-top
{
    border-top:1px dotted #000;
}
.jexcel .selection-bottom
{
    border-bottom:1px dotted #000;
}
.jexcel_corner
{
    position:absolute;
    background-color: rgb(0, 0, 0);
    height: 1px;
    width: 1px;
    border: 1px solid rgb(255, 255, 255);
    top:-2000px;
    left:-2000px;
    cursor:crosshair;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    -webkit-box-sizing: initial;
            box-sizing: initial;
    z-index:30;
    padding: 2px;
}

.jexcel .editor
{
    overflow:visible !important;
}

.jexcel .editor
{
    outline:0px solid transparent;
    overflow:visible;
    white-space: nowrap;
    text-align:left;
    padding:0px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

.jexcel .editor > input
{
    padding-left:4px;
}

.jexcel .editor .jupload
{
    position:fixed;
    top:100%;
    z-index:40;
    -webkit-user-select:none;
       -moz-user-select:none;
        -ms-user-select:none;
            user-select:none;
    -webkit-font-smoothing: antialiased;
    font-size: .875rem;
    letter-spacing: .2px;
    border-radius: 4px;
    -webkit-box-shadow: 0 8px 10px 1px rgba(0,0,0,0.14), 0 3px 14px 2px rgba(0,0,0,0.12), 0 5px 5px -3px rgba(0,0,0,0.2);
    box-shadow: 0 8px 10px 1px rgba(0,0,0,0.14), 0 3px 14px 2px rgba(0,0,0,0.12), 0 5px 5px -3px rgba(0,0,0,0.2);
    padding:10px;
    background-color:#fff;
    width:300px;
    min-height:225px;
    margin-top:2px;
}

.jexcel .editor .jupload img
{
    width:100%;
    height:auto;
}

.jexcel .editor .jexcel_richtext
{
    position:fixed;
    top:100%;
    z-index:40;
    -webkit-user-select:none;
       -moz-user-select:none;
        -ms-user-select:none;
            user-select:none;
    -webkit-font-smoothing: antialiased;
    font-size: .875rem;
    letter-spacing: .2px;
    -webkit-box-shadow: 0 8px 10px 1px rgba(0,0,0,0.14), 0 3px 14px 2px rgba(0,0,0,0.12), 0 5px 5px -3px rgba(0,0,0,0.2);
    box-shadow: 0 8px 10px 1px rgba(0,0,0,0.14), 0 3px 14px 2px rgba(0,0,0,0.12), 0 5px 5px -3px rgba(0,0,0,0.2);
    padding:10px;
    background-color:#fff;
    min-width:280px;
    max-width:310px;
    margin-top:2px;
    text-align:left;
}

.jexcel .editor .jclose:after
{
    position:absolute;
    top:0;
    right:0;
    margin:10px;
    content:'close';
    font-family:'Material icons';
    font-size:24px;
    width:24px;
    height:24px;
    line-height:24px;
    cursor:pointer;
    text-shadow: 0px 0px 5px #fff;
}

.jexcel, .jexcel td, .jexcel_corner
{
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}

.jexcel_textarea
{
    position:absolute;
    top:-999px;
    left:-999px;
    width:1px;
    height:1px;
}
.jexcel .dragline
{
    position:absolute;
}
.jexcel .dragline div
{
    position:relative;
    top:-6px;
    height:5px;
    width:22px;
}
.jexcel .dragline div:hover
{
    cursor:move;
}

.jexcel .onDrag
{
    background-color:rgba(0,0,0,0.6);
}

.jexcel .error
{
    border:1px solid red;
}

.jexcel thead td.resizing
{
    border-right-style:dotted !important;
    border-right-color:red !important;
}

.jexcel tbody tr.resizing > td
{
    border-bottom-style:dotted !important;
    border-bottom-color:red !important;
}

.jexcel tbody td.resizing
{
    border-right-style:dotted !important;
    border-right-color:red !important;
}

.jexcel .jdropdown-header
{
    border:0px !important;
    outline:none !important;
    width:100% !important;
    height:100% !important;
    padding:0px !important;
    padding-left:8px !important;
}

.jexcel .jdropdown-container
{
    margin-top:1px;
}

.jexcel .jdropdown-container-header {
    padding: 0px;
    margin: 0px;
    height: inherit;
}

.jexcel .jdropdown-picker
{
    border:0px !important;
    padding:0px !important;
}

.jexcel .jdropdown-picker
{
    width:inherit;
    height:inherit;
}

.jexcel .jexcel_comments
{
    background:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAACXBIWXMAAAsTAAALEwEAmpwYAAAFuGlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDUgNzkuMTYzNDk5LCAyMDE4LzA4LzEzLTE2OjQwOjIyICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdEV2dD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlRXZlbnQjIiB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iIHhtbG5zOnBob3Rvc2hvcD0iaHR0cDovL25zLmFkb2JlLmNvbS9waG90b3Nob3AvMS4wLyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxOSAoV2luZG93cykiIHhtcDpDcmVhdGVEYXRlPSIyMDE5LTAxLTMxVDE4OjU1OjA4WiIgeG1wOk1ldGFkYXRhRGF0ZT0iMjAxOS0wMS0zMVQxODo1NTowOFoiIHhtcDpNb2RpZnlEYXRlPSIyMDE5LTAxLTMxVDE4OjU1OjA4WiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDphMTlhZDJmOC1kMDI2LTI1NDItODhjOS1iZTRkYjkyMmQ0MmQiIHhtcE1NOkRvY3VtZW50SUQ9ImFkb2JlOmRvY2lkOnBob3Rvc2hvcDpkOGI5NDUyMS00ZjEwLWQ5NDktYjUwNC0wZmU1N2I3Nzk1MDEiIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDplMzdjYmE1ZS1hYTMwLWNkNDUtYTAyNS1lOWYxZjk2MzUzOGUiIGRjOmZvcm1hdD0iaW1hZ2UvcG5nIiBwaG90b3Nob3A6Q29sb3JNb2RlPSIzIj4gPHhtcE1NOkhpc3Rvcnk+IDxyZGY6U2VxPiA8cmRmOmxpIHN0RXZ0OmFjdGlvbj0iY3JlYXRlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDplMzdjYmE1ZS1hYTMwLWNkNDUtYTAyNS1lOWYxZjk2MzUzOGUiIHN0RXZ0OndoZW49IjIwMTktMDEtMzFUMTg6NTU6MDhaIiBzdEV2dDpzb2Z0d2FyZUFnZW50PSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxOSAoV2luZG93cykiLz4gPHJkZjpsaSBzdEV2dDphY3Rpb249InNhdmVkIiBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOmExOWFkMmY4LWQwMjYtMjU0Mi04OGM5LWJlNGRiOTIyZDQyZCIgc3RFdnQ6d2hlbj0iMjAxOS0wMS0zMVQxODo1NTowOFoiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCBDQyAyMDE5IChXaW5kb3dzKSIgc3RFdnQ6Y2hhbmdlZD0iLyIvPiA8L3JkZjpTZXE+IDwveG1wTU06SGlzdG9yeT4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4En6MDAAAAX0lEQVQYlX3KOw6AIBBAwS32RpJADXfx0pTET+ERZJ8F8RODFtONsG0QAoh0CSDM82dqodaBdQXnfoLZQM7gPai+wjNNE8R4pTuAYNZSKZASqL7CMy0LxNgJp30fKYUDi3+vIqb/+rUAAAAASUVORK5CYII=');
    background-repeat: no-repeat;
    background-position: top right;
}

.jexcel .sp-replacer
{
    margin: 2px;
    border:0px;
}

.jexcel > thead > tr.jexcel_filter > td > input
{
    border:0px;
    width:100%;
    outline:none;
}

.jexcel_about {
    float: right;
    font-size: 0.7em;
    padding: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: none;
}
.jexcel_about a {
    color: #ccc;
    text-decoration: none;
}

.jexcel_about img {
    display: none;
}

.jexcel_filter
{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack:justify;
        -ms-flex-pack:justify;
            justify-content:space-between;
    margin-bottom:4px;
}

.jexcel_filter > div
{
    padding:8px;
    -webkit-box-align:center;
        -ms-flex-align:center;
            align-items:center;
}

.jexcel_pagination
{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack:justify;
        -ms-flex-pack:justify;
            justify-content:space-between;
    -webkit-box-align:center;
        -ms-flex-align:center;
            align-items:center;
}

.jexcel_pagination > div
{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    padding:10px;
}

.jexcel_pagination > div:last-child
{
    padding-right:10px;
    padding-top:10px;
}

.jexcel_pagination > div > div
{
    text-align:center;
    width:36px;
    height:36px;
    line-height:34px;
    border:1px solid #ccc;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-left:2px;
    cursor:pointer;
}

.jexcel_page
{
    font-size:0.8em;
}

.jexcel_page_selected
{
    font-weight:bold;
    background-color:#f3f3f3;
}

.jexcel_toolbar
{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    background-color:#f3f3f3;
    border:1px solid #ccc;
    padding:4px;
    margin:0px 2px 4px 1px;
    position:sticky;
    top:0px;
    z-index:21;
}

.jexcel_toolbar:empty
{
    display:none;
}

.jexcel_toolbar i.jexcel_toolbar_item 
{
    width:24px;
    height:24px;
    padding:4px;
    cursor:pointer;
    display:inline-block;
}

.jexcel_toolbar i.jexcel_toolbar_item:hover 
{
    background-color:#ddd;
}

.jexcel_toolbar select.jexcel_toolbar_item 
{
    margin-left:2px;
    margin-right:2px;
    display:inline-block;
    border:0px;
    background-color:transparent;
    padding-right:10px;
}

.jexcel .dragging-left
{
    background-repeat: no-repeat;
    background-position:top 50% left 0px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M14 7l-5 5 5 5V7z'/%3E%3Cpath fill='none' d='M24 0v24H0V0h24z'/%3E%3C/svg%3E");
}

.jexcel .dragging-right
{
    background-repeat: no-repeat;
    background-position:top 50% right 0px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M10 17l5-5-5-5v10z'/%3E%3Cpath fill='none' d='M0 24V0h24v24H0z'/%3E%3C/svg%3E");
}

.jexcel_tabs .jexcel_tab
{
    display:none;
}

.jexcel_tabs .jexcel_tab_link
{
    display:inline-block;
    padding:10px;
    padding-left:20px;
    padding-right:20px;
    margin-right:5px;
    margin-bottom:5px;
    background-color:#f3f3f3;
    cursor:pointer;
}

.jexcel_tabs .jexcel_tab_link.selected
{
    background-color:#ddd;
}

.jexcel_hidden_index > tbody > tr > td:first-child,
.jexcel_hidden_index > thead > tr > td:first-child, 
.jexcel_hidden_index > colgroup > col:first-child
{
    display:none;
}



.jexcel .jrating {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}
.jexcel .jrating > div {
    zoom: 0.55;
}

.jexcel .copying-top {
    border-top:1px dashed #000;
}

.jexcel .copying-left {
    border-left:1px dashed #000;
}

.jexcel .copying-right {
    border-right:1px dashed #000;
}

.jexcel .copying-bottom {
    border-bottom:1px dashed #000;
}

.jexcel .jexcel_column_filter {
    background-repeat: no-repeat;
    background-position: top 50% right 5px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='gray' width='18px' height='18px'%3E%3Cpath d='M10 18h4v-2h-4v2zM3 6v2h18V6H3zm3 7h12v-2H6v2z'/%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3C/svg%3E");
    text-overflow: ellipsis;
    overflow: hidden;
    padding: 0px;
    padding-left: 6px;
    padding-right: 20px;
}

.jexcel thead .jexcel_freezed {
    z-index: 3 !important;
    box-shadow: 2px 0px 2px 0.2px #ccc !important;
    -webkit-box-shadow: 2px 0px 2px 0.2px #ccc !important;
    -moz-box-shadow: 2px 0px 2px 0.2px #ccc !important;
}

.jexcel thead .jexcel_freezed {
    left: 0px;
}

.jexcel tbody .jexcel_freezed {
    box-shadow: 1px 1px 1px 1px #ccc !important;
    -webkit-box-shadow: 2px 4px 4px 0.1px #ccc !important;
    -moz-box-shadow: 2px 4px 4px 0.1px #ccc !important;
}

.jexcel tbody .jexcel_freezed {
    position: relative;
    background-color: #fff;
}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.C5YyqHhRJi{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.wYNwR6ZYi9{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.v4qyMCOfES{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.v4qyMCOfES>i,.v4qyMCOfES>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.ztejzR59kl{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.-seBM7dRst{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.z1pAZYq356{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.qIbnrVCgO3{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.Te7UskuyPB{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.RemvNhIkkt{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.IcdAT\+9FH0{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.IcdAT\+9FH0 .WRgIaGIqcs{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.IcdAT\+9FH0 .WRgIaGIqcs>span{color:rgba(0,0,0,0.65)}.-wiBtIRnjr{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.-wiBtIRnjr .KsC4rrIu6O{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.-wiBtIRnjr .KsC4rrIu6O>span{font-size:8px}.FwpnND8oUA .ant-popover-inner-content{padding:0}.FwpnND8oUA .ant-popover-arrow{border-color:#475365 !important}.FwpnND8oUA .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.Ze4cZsJFQK{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.Y1Q-k5CYd7{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.Y1Q-k5CYd7 .zR1IaIZDW2{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}._1T4mpLjBTh{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.l8kcH19Ru5{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.l8kcH19Ru5{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.oBPos6W4\+0{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.JeV6j-1A-Y html,.JeV6j-1A-Y body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.JeV6j-1A-Y body,.JeV6j-1A-Y div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.JeV6j-1A-Y textarea{border:none !important;padding-left:0 !important}.JeV6j-1A-Y table,.JeV6j-1A-Y tr,.JeV6j-1A-Y td{page-break-inside:avoid}.JeV6j-1A-Y div{page-break-inside:avoid}.JeV6j-1A-Y thead{display:table-header-group}.JeV6j-1A-Y tfoot{display:table-footer-group}.JeV6j-1A-Y *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.JeV6j-1A-Y ._30QoA2JMWd,.JeV6j-1A-Y .no-print,.JeV6j-1A-Y .react-resizable-handle,.JeV6j-1A-Y .fc-whiteboard-toolbar,.JeV6j-1A-Y .ant-modal-root,.JeV6j-1A-Y .ant-alert,.JeV6j-1A-Y ._5Z\+ZUcl0wT,.JeV6j-1A-Y .HNS7LYyegN{display:none !important}.JeV6j-1A-Y .blil55RJv7{display:none !important}}.-seBM7dRst{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.Bc-S1L43MH{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.Rhh6rLFXwi{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.YSvBnAxIqw{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.YSvBnAxIqw>i,.YSvBnAxIqw>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.omlQXUUnzb{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.F2QWhspkXl{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.QQ47XakoWu{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.Y-PJi0o-Ie{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.zN7QyVcHGk{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.dH-rdyOhI6{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.goMu0CBY0p{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.goMu0CBY0p .KDc8AU9LiF{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.goMu0CBY0p .KDc8AU9LiF>span{color:rgba(0,0,0,0.65)}.PIx-tATvPm{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.PIx-tATvPm .q32yPMjueF{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.PIx-tATvPm .q32yPMjueF>span{font-size:8px}.PoVEynyo0F .ant-popover-inner-content{padding:0}.PoVEynyo0F .ant-popover-arrow{border-color:#475365 !important}.PoVEynyo0F .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.TxcRutvSKG{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.q6Kg2uMlMX{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.q6Kg2uMlMX .ev2eLGfmo5{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.HDvRaiD37Y{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.\-2m-kj5ncT{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.\-2m-kj5ncT{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.vTvxSf2Kdc{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.fmddaw9Sfp html,.fmddaw9Sfp body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.fmddaw9Sfp body,.fmddaw9Sfp div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.fmddaw9Sfp textarea{border:none !important;padding-left:0 !important}.fmddaw9Sfp table,.fmddaw9Sfp tr,.fmddaw9Sfp td{page-break-inside:avoid}.fmddaw9Sfp div{page-break-inside:avoid}.fmddaw9Sfp thead{display:table-header-group}.fmddaw9Sfp tfoot{display:table-footer-group}.fmddaw9Sfp *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.fmddaw9Sfp .-FlyZ7i4Jh,.fmddaw9Sfp .no-print,.fmddaw9Sfp .react-resizable-handle,.fmddaw9Sfp .fc-whiteboard-toolbar,.fmddaw9Sfp .ant-modal-root,.fmddaw9Sfp .ant-alert,.fmddaw9Sfp .XdymKU2zej,.fmddaw9Sfp .owrdX5D7dV{display:none !important}.fmddaw9Sfp .FVq2Ri528d{display:none !important}}.hYUEXPUQYQ{position:relative}
.jiRNznA8wU{position:relative}
._50Prj2mkGe{position:relative}
.glZ4-z4KwH{position:relative}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.QHvdn6kzq6{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}._7B90SdsyMA{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.-\+ugjk\+ABh{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.-\+ugjk\+ABh>i,.-\+ugjk\+ABh>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.nEP2itJZBy{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.ZV0bGfY-xq{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.oAaUxzRTVO{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.Rc\+F2-RfA1{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}._0lWMyQ-DBG{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._2niiT5iCHy{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._7grXJSvn3l{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}._7grXJSvn3l .QdzB0hS1wD{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}._7grXJSvn3l .QdzB0hS1wD>span{color:rgba(0,0,0,0.65)}.y2b67dXV3v{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.y2b67dXV3v .dz3-KS9-j2{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.y2b67dXV3v .dz3-KS9-j2>span{font-size:8px}._8U7LObxn4U .ant-popover-inner-content{padding:0}._8U7LObxn4U .ant-popover-arrow{border-color:#475365 !important}._8U7LObxn4U .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.MIt3eOcgdo{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.ps-fCMGec6{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.ps-fCMGec6 ._8CuvEsIUaJ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.fhD5QLizIB{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.fm32ceuWDk{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.fm32ceuWDk{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.OdicmNWH1J{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{._6Wnq5adoT2 html,._6Wnq5adoT2 body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}._6Wnq5adoT2 body,._6Wnq5adoT2 div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}._6Wnq5adoT2 textarea{border:none !important;padding-left:0 !important}._6Wnq5adoT2 table,._6Wnq5adoT2 tr,._6Wnq5adoT2 td{page-break-inside:avoid}._6Wnq5adoT2 div{page-break-inside:avoid}._6Wnq5adoT2 thead{display:table-header-group}._6Wnq5adoT2 tfoot{display:table-footer-group}._6Wnq5adoT2 *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}._6Wnq5adoT2 ._7JBzaLpQKW,._6Wnq5adoT2 .no-print,._6Wnq5adoT2 .react-resizable-handle,._6Wnq5adoT2 .fc-whiteboard-toolbar,._6Wnq5adoT2 .ant-modal-root,._6Wnq5adoT2 .ant-alert,._6Wnq5adoT2 .P8qMfkYAlB,._6Wnq5adoT2 .t6Oc03LfoC{display:none !important}._6Wnq5adoT2 ._577xCHZ7xl{display:none !important}}
.P8Am76\+Aid{position:relative;overflow:auto}.P8Am76\+Aid .ant-legacy-form{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.P8Am76\+Aid .ant-row{height:auto !important;height:initial !important}.P8Am76\+Aid .ant-row{-webkit-box-flex:1;-ms-flex:1 1 45px;flex:1 1 45px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.jWvGymIler{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.x\+Jw\+rrfBi{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.CBuy9\+QtJ4{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.CBuy9\+QtJ4>i,.CBuy9\+QtJ4>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.LcKLDt\+HS0{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._6H7KdFgx80{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.FPlCkhnOvm{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.GFkAiz5cfa{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.oBqzotpb1s{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.WVYyTs8-n9{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.r3AgIrL5ay{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.r3AgIrL5ay ._4j3ptgehf4{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.r3AgIrL5ay ._4j3ptgehf4>span{color:rgba(0,0,0,0.65)}.PD1syIvlYI{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.PD1syIvlYI .H2XqcyWEWr{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.PD1syIvlYI .H2XqcyWEWr>span{font-size:8px}._2-l7T8GOo4 .ant-popover-inner-content{padding:0}._2-l7T8GOo4 .ant-popover-arrow{border-color:#475365 !important}._2-l7T8GOo4 .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.fTrUXL3Ee1{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}._1rcw5ICaJN{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._1rcw5ICaJN .WBmUEyTQEB{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.S89HkLBvnb{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.yq1mmvw7Ol{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.yq1mmvw7Ol{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.MMFA3lRUdF{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{._279s304HSk html,._279s304HSk body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}._279s304HSk body,._279s304HSk div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}._279s304HSk textarea{border:none !important;padding-left:0 !important}._279s304HSk table,._279s304HSk tr,._279s304HSk td{page-break-inside:avoid}._279s304HSk div{page-break-inside:avoid}._279s304HSk thead{display:table-header-group}._279s304HSk tfoot{display:table-footer-group}._279s304HSk *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}._279s304HSk .ZrkQFZfyvj,._279s304HSk .no-print,._279s304HSk .react-resizable-handle,._279s304HSk .fc-whiteboard-toolbar,._279s304HSk .ant-modal-root,._279s304HSk .ant-alert,._279s304HSk .M5hwPlKBd3,._279s304HSk .YWJ9BpIb1c{display:none !important}._279s304HSk .aKnXDVRxHO{display:none !important}}.qQhSqx4NB9{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;padding:16px;padding-bottom:50px}.\+CSBUEEGZ9{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;position:fixed;height:60px;bottom:0;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12);z-index:9;width:100vw;left:0;padding:0 10vw}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.IDHholKGXF{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.XbZnzsiVlN{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}._2PTu1zFCPH{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}._2PTu1zFCPH>i,._2PTu1zFCPH>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.saFF87KZNk{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.i7WCH\+JMJ7{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}._7oNcN2qDkk{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.YlqWaGYb16{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.Plsn1h8rJv{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.wrR69sEA9y{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.SHQrrS\+Ip6{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.SHQrrS\+Ip6 .hGwJJI1U3m{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.SHQrrS\+Ip6 .hGwJJI1U3m>span{color:rgba(0,0,0,0.65)}.Sd0YpdgZiL{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.Sd0YpdgZiL .C-JSbD7JIg{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.Sd0YpdgZiL .C-JSbD7JIg>span{font-size:8px}.LDhLG6wYgF .ant-popover-inner-content{padding:0}.LDhLG6wYgF .ant-popover-arrow{border-color:#475365 !important}.LDhLG6wYgF .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.vvO7q-Hfrc{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.f5er4d5c0F{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.f5er4d5c0F ._6lmMAmWLxA{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.tjUz0RJkY8{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.ridbWneJ6f{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.ridbWneJ6f{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.tHYDjAW4B3{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.WqCEo5qWjP html,.WqCEo5qWjP body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.WqCEo5qWjP body,.WqCEo5qWjP div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.WqCEo5qWjP textarea{border:none !important;padding-left:0 !important}.WqCEo5qWjP table,.WqCEo5qWjP tr,.WqCEo5qWjP td{page-break-inside:avoid}.WqCEo5qWjP div{page-break-inside:avoid}.WqCEo5qWjP thead{display:table-header-group}.WqCEo5qWjP tfoot{display:table-footer-group}.WqCEo5qWjP *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.WqCEo5qWjP ._2w9mj1i2ZQ,.WqCEo5qWjP .no-print,.WqCEo5qWjP .react-resizable-handle,.WqCEo5qWjP .fc-whiteboard-toolbar,.WqCEo5qWjP .ant-modal-root,.WqCEo5qWjP .ant-alert,.WqCEo5qWjP .-CxKq9fzm1,.WqCEo5qWjP .guyG-7xVea{display:none !important}.WqCEo5qWjP .x5GWkVgmq8{display:none !important}}.DE\+8qYUFB2{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;padding:24px}.DE\+8qYUFB2 .AmLpEdNLsA{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}
.DuNOAuw5kz{width:1200px;margin:0 auto;padding:4vh 0;background-color:#fff;color:rgba(0,0,0,0.87)}.ULE1xOPUS6{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._9X1TljgEHv{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.Sob7mtDM8j{font-weight:bold}.Sob7mtDM8j>p:first-child{font-size:24px}.ukhu4lPuSz{display:grid;grid-gap:4px 8px;grid-template-columns:repeat(6, 1fr);width:100%;margin:4vh 0}@media screen and (max-width:1650px){.DuNOAuw5kz{width:1000px}}@media screen and (max-width:1366px){.DuNOAuw5kz{width:84vw}}@media screen and (max-width:1024px){.DuNOAuw5kz{width:90vw}}@media screen and (max-width:800px){.DuNOAuw5kz{width:calc(100vw - 4rem)}.ukhu4lPuSz{grid-template-columns:repeat(4, 1fr)}}@media screen and (max-width:600px){.DuNOAuw5kz{width:calc(100vw - 3rem)}.ukhu4lPuSz{grid-template-columns:repeat(3, 1fr)}}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.R-p5aSpsHf{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.i47l-fvLCi{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.tXbmjXRmeX{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.tXbmjXRmeX>i,.tXbmjXRmeX>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.t6tbGvITjZ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.vc71Qeo2K-{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.sLMPM3DpSJ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}._2AY8i7rs72{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.IMMNpzItUT{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.Kfv2ZZovyU{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.NdfUHrEpWP{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.NdfUHrEpWP .qQ\+4LG5ZZz{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.NdfUHrEpWP .qQ\+4LG5ZZz>span{color:rgba(0,0,0,0.65)}.ifRZtBedfF{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.ifRZtBedfF .-siQvS7TdQ{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.ifRZtBedfF .-siQvS7TdQ>span{font-size:8px}.ADh-S8fDWO .ant-popover-inner-content{padding:0}.ADh-S8fDWO .ant-popover-arrow{border-color:#475365 !important}.ADh-S8fDWO .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.MEatB5DUsj{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.eY6Ml2UqvD{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.eY6Ml2UqvD .tVxvZXaNxt{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.j-BtcKPDG4{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.EnK4qaas5G{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.EnK4qaas5G{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}._6VAoCHqbzp{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.XNALyTkbdu html,.XNALyTkbdu body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.XNALyTkbdu body,.XNALyTkbdu div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.XNALyTkbdu textarea{border:none !important;padding-left:0 !important}.XNALyTkbdu table,.XNALyTkbdu tr,.XNALyTkbdu td{page-break-inside:avoid}.XNALyTkbdu div{page-break-inside:avoid}.XNALyTkbdu thead{display:table-header-group}.XNALyTkbdu tfoot{display:table-footer-group}.XNALyTkbdu *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.XNALyTkbdu .NDLcR92b7x,.XNALyTkbdu .no-print,.XNALyTkbdu .react-resizable-handle,.XNALyTkbdu .fc-whiteboard-toolbar,.XNALyTkbdu .ant-modal-root,.XNALyTkbdu .ant-alert,.XNALyTkbdu .Sh4Z2y46h3,.XNALyTkbdu .vEABvpzrkv{display:none !important}.XNALyTkbdu .BGW6B3lnHF{display:none !important}}._4OENtLejos{position:relative;height:100%;width:100%}.j4JBrr4cx4{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;padding:8px 16px;padding-top:0;overflow-y:auto}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.QNVgAQt\+iF{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.\+nMBE-raK\+{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.P3Fxf6tCuv{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.P3Fxf6tCuv>i,.P3Fxf6tCuv>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.bKUbWeH-sf{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.rcFGPLx5y8{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.pQAnpyY2S3{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.Zh91GQEYan{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.STnO9-HBup{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.hB75o7QimX{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.VocnMYeIU\+{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.VocnMYeIU\+ .zn261mmUJt{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.VocnMYeIU\+ .zn261mmUJt>span{color:rgba(0,0,0,0.65)}.TrChWCGoqH{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.TrChWCGoqH .U\+qvY3hc79{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.TrChWCGoqH .U\+qvY3hc79>span{font-size:8px}.b9sjt9fJMO .ant-popover-inner-content{padding:0}.b9sjt9fJMO .ant-popover-arrow{border-color:#475365 !important}.b9sjt9fJMO .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.OdT97TOyGa{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.Q3ugQ1AJO6{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.Q3ugQ1AJO6 .Ym27vRfj80{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.AV21Q2XQlf{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.V5rIZAVJE3{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.V5rIZAVJE3{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.ZqwoHi2Ola{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.sgDfaDXPXF html,.sgDfaDXPXF body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.sgDfaDXPXF body,.sgDfaDXPXF div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.sgDfaDXPXF textarea{border:none !important;padding-left:0 !important}.sgDfaDXPXF table,.sgDfaDXPXF tr,.sgDfaDXPXF td{page-break-inside:avoid}.sgDfaDXPXF div{page-break-inside:avoid}.sgDfaDXPXF thead{display:table-header-group}.sgDfaDXPXF tfoot{display:table-footer-group}.sgDfaDXPXF *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.sgDfaDXPXF .YyXt5aWCTI,.sgDfaDXPXF .no-print,.sgDfaDXPXF .react-resizable-handle,.sgDfaDXPXF .fc-whiteboard-toolbar,.sgDfaDXPXF .ant-modal-root,.sgDfaDXPXF .ant-alert,.sgDfaDXPXF .orFm4KpemX,.sgDfaDXPXF .JxnZq4aH-\+{display:none !important}.sgDfaDXPXF .fjrnfo5w0E{display:none !important}}.rXakiGVNdJ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.Y8XYbHYRtQ{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.gAhPHRLs6S{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.rnlCFOuEXS{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.rnlCFOuEXS>i,.rnlCFOuEXS>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.SxCRV8GiRn{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.alHkjCVl5I{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.JFv3GwCNy-{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.okmidzzTDN{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}._5BP85w9jmQ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.YdOebAEoyJ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.scfNgZiKsc{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.scfNgZiKsc .KhFY6Ktalr{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.scfNgZiKsc .KhFY6Ktalr>span{color:rgba(0,0,0,0.65)}.Ls5xyLYC25{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.Ls5xyLYC25 .QwD6dYe7t1{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.Ls5xyLYC25 .QwD6dYe7t1>span{font-size:8px}._6uAAiE02-k .ant-popover-inner-content{padding:0}._6uAAiE02-k .ant-popover-arrow{border-color:#475365 !important}._6uAAiE02-k .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}._0wHktFuwkU{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.gah3JDEk3D{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.gah3JDEk3D .rOYp4Z-eqX{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.x2OrbHDSyP{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.vnst0RSwVE{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.vnst0RSwVE{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.eivFaQO5pr{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.aBduHwr0Yi html,.aBduHwr0Yi body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.aBduHwr0Yi body,.aBduHwr0Yi div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.aBduHwr0Yi textarea{border:none !important;padding-left:0 !important}.aBduHwr0Yi table,.aBduHwr0Yi tr,.aBduHwr0Yi td{page-break-inside:avoid}.aBduHwr0Yi div{page-break-inside:avoid}.aBduHwr0Yi thead{display:table-header-group}.aBduHwr0Yi tfoot{display:table-footer-group}.aBduHwr0Yi *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.aBduHwr0Yi .piaYzV7jjH,.aBduHwr0Yi .no-print,.aBduHwr0Yi .react-resizable-handle,.aBduHwr0Yi .fc-whiteboard-toolbar,.aBduHwr0Yi .ant-modal-root,.aBduHwr0Yi .ant-alert,.aBduHwr0Yi .OTmeiGwohL,.aBduHwr0Yi .D3QvpdHf0Q{display:none !important}.aBduHwr0Yi .G6RCEsvOVC{display:none !important}}.Wzwrf2sdEQ{position:relative}.MU45-W-Roy{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;height:180px;padding:16px 24px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.Aj5G3YM6jJ{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.OMgxZSQkek{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.K0jiuWblC5{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.K0jiuWblC5>i,.K0jiuWblC5>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.qJdgoqYRVf{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.skWSxvKY7D{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.AnMVW6j4u3{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.a9YBlCee0E{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}._84WXXYFKbc{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.HEs5A\+66kz{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.SQGfukxEzW{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.SQGfukxEzW ._5RU3OQRLOL{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.SQGfukxEzW ._5RU3OQRLOL>span{color:rgba(0,0,0,0.65)}._58vYTpW9jM{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}._58vYTpW9jM ._8zEpPaPLKW{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}._58vYTpW9jM ._8zEpPaPLKW>span{font-size:8px}.qDipB7SoVw .ant-popover-inner-content{padding:0}.qDipB7SoVw .ant-popover-arrow{border-color:#475365 !important}.qDipB7SoVw .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}._7CJgBdHaeC{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.mmo7m52dy7{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.mmo7m52dy7 ._8svPGI9eKl{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}._71QGXqBfde{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.X-CRoM4Rn-{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.X-CRoM4Rn-{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.BHF6w7Yb37{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{._3dCroGpQuj html,._3dCroGpQuj body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}._3dCroGpQuj body,._3dCroGpQuj div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}._3dCroGpQuj textarea{border:none !important;padding-left:0 !important}._3dCroGpQuj table,._3dCroGpQuj tr,._3dCroGpQuj td{page-break-inside:avoid}._3dCroGpQuj div{page-break-inside:avoid}._3dCroGpQuj thead{display:table-header-group}._3dCroGpQuj tfoot{display:table-footer-group}._3dCroGpQuj *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}._3dCroGpQuj .LXqq-5gs3o,._3dCroGpQuj .no-print,._3dCroGpQuj .react-resizable-handle,._3dCroGpQuj .fc-whiteboard-toolbar,._3dCroGpQuj .ant-modal-root,._3dCroGpQuj .ant-alert,._3dCroGpQuj ._1kARZNIElv,._3dCroGpQuj .z4oYbBL2yv{display:none !important}._3dCroGpQuj .nvvWP7b4L-{display:none !important}}.sl\+62Eu2ip .page-header-with-date-picker-header{padding:0}.sl\+62Eu2ip .U5esBBC0Ko{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;height:calc(100% - 45px);overflow-y:auto}.sl\+62Eu2ip .XgGCwYIc8a{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;height:45px;border-bottom:1px solid #e8e8e8}.sl\+62Eu2ip .t\+I-4KD0Ox{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;height:45px;color:rgba(0,0,0,0.65)}.sl\+62Eu2ip .t\+I-4KD0Ox .hlv0sdeOl3{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-flex:0;-ms-flex:0 0 20px;flex:0 0 20px;height:20px;margin-right:24px;background-color:#f0f2f5;border-radius:50%}.sl\+62Eu2ip .t\+I-4KD0Ox .WaW6cmC50X{-webkit-box-flex:2;-ms-flex:2 2 1px;flex:2 2 1px}.sl\+62Eu2ip .t\+I-4KD0Ox .l5fH7v2rpg{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-flex:1;-ms-flex:1 1 1px;flex:1 1 1px;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.sl\+62Eu2ip .t\+I-4KD0Ox:nth-child(-n + 3)>.hlv0sdeOl3{color:#fff;background-color:#1890ff}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.cBatBmSNGG{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.ylRowlrpPc{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.BY2zUR5HnZ{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.BY2zUR5HnZ>i,.BY2zUR5HnZ>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.nkyM8FdZ5h{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.OZRmczyLDI{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.QjPexp86MW{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.J2rrPuIK7G{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.TeTzourNk9{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.QyhoanfqjS{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.YbTjfNk9wF{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.YbTjfNk9wF .xEPiTxTm5D{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.YbTjfNk9wF .xEPiTxTm5D>span{color:rgba(0,0,0,0.65)}.kyrbZdZFu6{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.kyrbZdZFu6 .EfrT\+Kjc-k{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.kyrbZdZFu6 .EfrT\+Kjc-k>span{font-size:8px}._8bquFRffkl .ant-popover-inner-content{padding:0}._8bquFRffkl .ant-popover-arrow{border-color:#475365 !important}._8bquFRffkl .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.ppLqQC9Bjn{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}._7Y9TG7DbPW{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._7Y9TG7DbPW .Cywe8v\+-nT{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.he5S28\+iwV{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.e-t5fOBdd8{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.e-t5fOBdd8{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.OcPMk8xRnE{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.atvXAvb2mz html,.atvXAvb2mz body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.atvXAvb2mz body,.atvXAvb2mz div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.atvXAvb2mz textarea{border:none !important;padding-left:0 !important}.atvXAvb2mz table,.atvXAvb2mz tr,.atvXAvb2mz td{page-break-inside:avoid}.atvXAvb2mz div{page-break-inside:avoid}.atvXAvb2mz thead{display:table-header-group}.atvXAvb2mz tfoot{display:table-footer-group}.atvXAvb2mz *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.atvXAvb2mz .h2iuAhQvrA,.atvXAvb2mz .no-print,.atvXAvb2mz .react-resizable-handle,.atvXAvb2mz .fc-whiteboard-toolbar,.atvXAvb2mz .ant-modal-root,.atvXAvb2mz .ant-alert,.atvXAvb2mz .ddWP6hQj0e,.atvXAvb2mz .dXx3fWS2kh{display:none !important}.atvXAvb2mz ._0BgxEf\+TAN{display:none !important}}.rUbjBAXTUY{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;background:transparent;-webkit-box-shadow:none;box-shadow:none;padding-top:0}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.OUqXt5onV6{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.SaHEiMvCYb{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.y-WOauxrdr{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.y-WOauxrdr>i,.y-WOauxrdr>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.Elj21KVueM{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.Vdw6zc06s1{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.FVghREdA73{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.F7dBtwPy57{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.pHjQsy4pMx{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.JpOVx9npen{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._8Qv9JS\+vB5{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}._8Qv9JS\+vB5 ._6\+9Dd7AIzM{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}._8Qv9JS\+vB5 ._6\+9Dd7AIzM>span{color:rgba(0,0,0,0.65)}.Rjl772n4YP{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.Rjl772n4YP .DAoQgH8rpa{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.Rjl772n4YP .DAoQgH8rpa>span{font-size:8px}.-em5jXCfNJ .ant-popover-inner-content{padding:0}.-em5jXCfNJ .ant-popover-arrow{border-color:#475365 !important}.-em5jXCfNJ .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.zxxJhov27v{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.M7Kl3yLKkB{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.M7Kl3yLKkB .yOvY4kz0Ot{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.D2y5I0BwYl{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.eu-RRreoJr{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.eu-RRreoJr{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.B0DBUiPmKa{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.uXN4bcfGKs html,.uXN4bcfGKs body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.uXN4bcfGKs body,.uXN4bcfGKs div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.uXN4bcfGKs textarea{border:none !important;padding-left:0 !important}.uXN4bcfGKs table,.uXN4bcfGKs tr,.uXN4bcfGKs td{page-break-inside:avoid}.uXN4bcfGKs div{page-break-inside:avoid}.uXN4bcfGKs thead{display:table-header-group}.uXN4bcfGKs tfoot{display:table-footer-group}.uXN4bcfGKs *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.uXN4bcfGKs .tdkDajjkAi,.uXN4bcfGKs .no-print,.uXN4bcfGKs .react-resizable-handle,.uXN4bcfGKs .fc-whiteboard-toolbar,.uXN4bcfGKs .ant-modal-root,.uXN4bcfGKs .ant-alert,.uXN4bcfGKs .v-uCT9zaWV,.uXN4bcfGKs .SBTecPJzNw{display:none !important}.uXN4bcfGKs ._6vKlKwxjdM{display:none !important}}.\+howKvj59v{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.\+howKvj59v ._1zV-orhVZo{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;margin-top:16px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.e3c8lfqF30{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}._5TmkyUPebr{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}._3obJlr6Jr6{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}._3obJlr6Jr6>i,._3obJlr6Jr6>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.gXHbsrqoaW{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.-Cu\+9u4Mnp{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}._4uMgzCW5CC{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.-UF0Y6Wv0Y{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.QEqf8tYHD-{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.Yqc07mixLm{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.rJhMjZINB7{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.rJhMjZINB7 .EJ0vQN5mzG{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.rJhMjZINB7 .EJ0vQN5mzG>span{color:rgba(0,0,0,0.65)}.L4wDsuzw5a{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.L4wDsuzw5a .GBJ5BJBz2o{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.L4wDsuzw5a .GBJ5BJBz2o>span{font-size:8px}.OqaF\+53Cbs .ant-popover-inner-content{padding:0}.OqaF\+53Cbs .ant-popover-arrow{border-color:#475365 !important}.OqaF\+53Cbs .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.bCq5pd2lGF{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.jR6fwMJ5QK{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.jR6fwMJ5QK .NLz2HuQDmf{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.fYNHBK0okG{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.OGAEhhZzZW{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.OGAEhhZzZW{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.xvp1JEguoI{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.FcLv2KHflP html,.FcLv2KHflP body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.FcLv2KHflP body,.FcLv2KHflP div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.FcLv2KHflP textarea{border:none !important;padding-left:0 !important}.FcLv2KHflP table,.FcLv2KHflP tr,.FcLv2KHflP td{page-break-inside:avoid}.FcLv2KHflP div{page-break-inside:avoid}.FcLv2KHflP thead{display:table-header-group}.FcLv2KHflP tfoot{display:table-footer-group}.FcLv2KHflP *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.FcLv2KHflP .Y2Nei\+Au4h,.FcLv2KHflP .no-print,.FcLv2KHflP .react-resizable-handle,.FcLv2KHflP .fc-whiteboard-toolbar,.FcLv2KHflP .ant-modal-root,.FcLv2KHflP .ant-alert,.FcLv2KHflP .s8tjMYMNoC,.FcLv2KHflP .OErpa2QxzD{display:none !important}.FcLv2KHflP .xzpZCG4Bat{display:none !important}}.o8\+MW5D292{position:relative;padding:16px}.o2R0XOIoje{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;height:-webkit-fit-content;height:-moz-fit-content;height:fit-content}.o2R0XOIoje .dyBkotstE0{padding:16px 16px 0 16px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}._4mGeNUw4zs{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.Cmav5sFCf1{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.j6TY9lcnZW{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.j6TY9lcnZW>i,.j6TY9lcnZW>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.oAU4O965MI{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.blmQfOBuCD{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.Sxy2OBq34D{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.xkz2bDQ88o{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.IOYbz5aEdw{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.zioG34OXVb{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.vp99gN3raK{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.vp99gN3raK .V90gV6THSw{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.vp99gN3raK .V90gV6THSw>span{color:rgba(0,0,0,0.65)}.c2qug1WHUc{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.c2qug1WHUc .dKwCOig6dS{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.c2qug1WHUc .dKwCOig6dS>span{font-size:8px}.kpkRUN7R4a .ant-popover-inner-content{padding:0}.kpkRUN7R4a .ant-popover-arrow{border-color:#475365 !important}.kpkRUN7R4a .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.iOf5PTRefZ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.onbNdJgvg6{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.onbNdJgvg6 .x6qFiwSvxs{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.RHsLFNLGia{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.Yl6l9QU30m{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.Yl6l9QU30m{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}._3HwUhEjHk4{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{._1Ots\+IK6CD html,._1Ots\+IK6CD body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}._1Ots\+IK6CD body,._1Ots\+IK6CD div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}._1Ots\+IK6CD textarea{border:none !important;padding-left:0 !important}._1Ots\+IK6CD table,._1Ots\+IK6CD tr,._1Ots\+IK6CD td{page-break-inside:avoid}._1Ots\+IK6CD div{page-break-inside:avoid}._1Ots\+IK6CD thead{display:table-header-group}._1Ots\+IK6CD tfoot{display:table-footer-group}._1Ots\+IK6CD *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}._1Ots\+IK6CD .\+rwMUFFjE5,._1Ots\+IK6CD .no-print,._1Ots\+IK6CD .react-resizable-handle,._1Ots\+IK6CD .fc-whiteboard-toolbar,._1Ots\+IK6CD .ant-modal-root,._1Ots\+IK6CD .ant-alert,._1Ots\+IK6CD .TDO91gdFLx,._1Ots\+IK6CD .IgK8oL6CJ1{display:none !important}._1Ots\+IK6CD ._4qR0aHgFWj{display:none !important}}.mJdVgH3TQ9{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.P54k\+2ZX5-{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.kfn-XgLY-v{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.AGcjuXbGzW{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.AGcjuXbGzW>i,.AGcjuXbGzW>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.Io7Cd9ezrz{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.r-EbJ6B3u9{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}._2u\+admnq0T{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.II3Bo9t4dw{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}._50bmpxhl-m{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.KZjSGdfOjL{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.zPRbiWvKkc{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.zPRbiWvKkc .pBqCnpUekN{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.zPRbiWvKkc .pBqCnpUekN>span{color:rgba(0,0,0,0.65)}._7Bv\+959VW7{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}._7Bv\+959VW7 .YvTFf66FCU{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}._7Bv\+959VW7 .YvTFf66FCU>span{font-size:8px}.WFVUDxIMcl .ant-popover-inner-content{padding:0}.WFVUDxIMcl .ant-popover-arrow{border-color:#475365 !important}.WFVUDxIMcl .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.F-MNjv3HQX{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.JhJ9iT6pFf{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.JhJ9iT6pFf .WsF2JgH0a3{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.Hc6BYjZdYA{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.Tg\+CRF7P0U{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.Tg\+CRF7P0U{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.tzGD39Qqlc{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.dVM--00t3j html,.dVM--00t3j body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.dVM--00t3j body,.dVM--00t3j div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.dVM--00t3j textarea{border:none !important;padding-left:0 !important}.dVM--00t3j table,.dVM--00t3j tr,.dVM--00t3j td{page-break-inside:avoid}.dVM--00t3j div{page-break-inside:avoid}.dVM--00t3j thead{display:table-header-group}.dVM--00t3j tfoot{display:table-footer-group}.dVM--00t3j *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.dVM--00t3j ._9IRzcRhL0W,.dVM--00t3j .no-print,.dVM--00t3j .react-resizable-handle,.dVM--00t3j .fc-whiteboard-toolbar,.dVM--00t3j .ant-modal-root,.dVM--00t3j .ant-alert,.dVM--00t3j .MUgR-lPsSp,.dVM--00t3j .EjiE9lqNT2{display:none !important}.dVM--00t3j .Z5DdXl7vt5{display:none !important}}.fGrYMAYT5v{overflow:auto;height:100%;padding-bottom:12px}.fGrYMAYT5v ._0n36\+54VgS{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;height:auto}.fGrYMAYT5v ._0-vz0xEBof{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;height:auto;margin-top:24px}.fGrYMAYT5v .iW7O6cC8mB{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;height:auto;padding:0 16px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.i2XWFvK2qn{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.IPOlgzP-Ll{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.lOm2tu1DyT{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.lOm2tu1DyT>i,.lOm2tu1DyT>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.g6Ltps3Jna{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.xTzHwNQfDI{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.qauW9t\+IoS{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}._6HbYYLt\+EP{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.kE4xXzrmno{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._75wz\+qDi79{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.L6jdRcC9HS{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.L6jdRcC9HS .VoozAd4Pgc{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.L6jdRcC9HS .VoozAd4Pgc>span{color:rgba(0,0,0,0.65)}._0C-EVfsAYV{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}._0C-EVfsAYV .DgwnbWIIwA{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}._0C-EVfsAYV .DgwnbWIIwA>span{font-size:8px}.aOtv1xAn8w .ant-popover-inner-content{padding:0}.aOtv1xAn8w .ant-popover-arrow{border-color:#475365 !important}.aOtv1xAn8w .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.G05RmUJqpI{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.i3MVuPZbNZ{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.i3MVuPZbNZ ._6cO52fW-i3{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.rogCQv0dFd{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.T4AxAKKG5m{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.T4AxAKKG5m{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.XJ210fa1Nf{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.DUHQ1vGu1Y html,.DUHQ1vGu1Y body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.DUHQ1vGu1Y body,.DUHQ1vGu1Y div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.DUHQ1vGu1Y textarea{border:none !important;padding-left:0 !important}.DUHQ1vGu1Y table,.DUHQ1vGu1Y tr,.DUHQ1vGu1Y td{page-break-inside:avoid}.DUHQ1vGu1Y div{page-break-inside:avoid}.DUHQ1vGu1Y thead{display:table-header-group}.DUHQ1vGu1Y tfoot{display:table-footer-group}.DUHQ1vGu1Y *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.DUHQ1vGu1Y .Ik4DijMvxO,.DUHQ1vGu1Y .no-print,.DUHQ1vGu1Y .react-resizable-handle,.DUHQ1vGu1Y .fc-whiteboard-toolbar,.DUHQ1vGu1Y .ant-modal-root,.DUHQ1vGu1Y .ant-alert,.DUHQ1vGu1Y .TGtLKyuAek,.DUHQ1vGu1Y ._240cUJOuYp{display:none !important}.DUHQ1vGu1Y .ghnshX8waA{display:none !important}}.dtdzRLrYjF{position:relative;height:100vh;width:100vw;overflow:hidden;background-color:rgba(18, 12, 57);padding:16px;padding-top:0}.dtdzRLrYjF .ant-row,.dtdzRLrYjF h2{height:9vh;font-size:2.5vw;font-weight:bolder;color:white;width:100vw}.dtdzRLrYjF h2{margin-bottom:0}.dtdzRLrYjF div::-webkit-scrollbar{display:none}.dtdzRLrYjF .ant-badge{line-height:inherit;height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.dtdzRLrYjF .ant-badge .ant-badge-count{top:16px;zoom:1.2;right:-16px}.YHg2sewM8Q{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.YHg2sewM8Q ._6cO52fW-i3{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}._0bbd3VLFYN{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.DaHZqNTxdK{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.Hce\+rj\+IQe{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.wFyzha-DBy{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.wFyzha-DBy>i,.wFyzha-DBy>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.AD0HD9mkVt{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.m44PHzmU6d{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.E3jvfAB0U\+{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}._43OI92zqWF{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.vw22DJo\+D6{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.QGW2aUffnG{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._9oAvhkup5Q{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}._9oAvhkup5Q .QpGfZB2\+qd{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}._9oAvhkup5Q .QpGfZB2\+qd>span{color:rgba(0,0,0,0.65)}.oCY8O6aBwg{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.oCY8O6aBwg ._9Usxas\+d\+Y{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.oCY8O6aBwg ._9Usxas\+d\+Y>span{font-size:8px}._2CsOUUUm7W .ant-popover-inner-content{padding:0}._2CsOUUUm7W .ant-popover-arrow{border-color:#475365 !important}._2CsOUUUm7W .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.bSnsrisyyU{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.Uh7LQYsIyz{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.Uh7LQYsIyz .v2CGijEIBs{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.jLj\+iA8yse{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.rMubnHMUQy{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.rMubnHMUQy{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.C3gfGLWS6u{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.S-CZmRrj9s html,.S-CZmRrj9s body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.S-CZmRrj9s body,.S-CZmRrj9s div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.S-CZmRrj9s textarea{border:none !important;padding-left:0 !important}.S-CZmRrj9s table,.S-CZmRrj9s tr,.S-CZmRrj9s td{page-break-inside:avoid}.S-CZmRrj9s div{page-break-inside:avoid}.S-CZmRrj9s thead{display:table-header-group}.S-CZmRrj9s tfoot{display:table-footer-group}.S-CZmRrj9s *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.S-CZmRrj9s .I1S4mPUEf9,.S-CZmRrj9s .no-print,.S-CZmRrj9s .react-resizable-handle,.S-CZmRrj9s .fc-whiteboard-toolbar,.S-CZmRrj9s .ant-modal-root,.S-CZmRrj9s .ant-alert,.S-CZmRrj9s ._4HmdomaS2d,.S-CZmRrj9s ._2ztc9oZPek{display:none !important}.S-CZmRrj9s .Pie-WKE3dm{display:none !important}}.Gx6z-tz-hA{position:relative;height:100vh;width:100vw;overflow:hidden;background-color:rgba(18, 12, 57);padding:16px;padding-top:0}.Gx6z-tz-hA .ant-row,.Gx6z-tz-hA h2{height:9vh;font-size:2.5vw;font-weight:bolder;color:white;width:100vw}.Gx6z-tz-hA .ant-badge{line-height:inherit}.Gx6z-tz-hA .ant-badge .ant-badge-count{top:16px;zoom:1.2;right:-16px}.Gx6z-tz-hA h2{margin-bottom:0}.Gx6z-tz-hA div::-webkit-scrollbar{display:none}.O1JQ42gsaa{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.O1JQ42gsaa .v2CGijEIBs{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.NKwqDaieh2{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}._0-q9loIPyU{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.jvSulB4gQ0{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.Y\+RolkSkXu{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.Y\+RolkSkXu>i,.Y\+RolkSkXu>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.DHbkxprP9s{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.zvc8-O4ZdE{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.SC28HdrzF1{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.h5V3diqp2N{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}._7G-WkUmueK{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.jY7Kkp6bXV{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.i6u5bxU0j2{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.i6u5bxU0j2 .Hwht6BD7Nn{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.i6u5bxU0j2 .Hwht6BD7Nn>span{color:rgba(0,0,0,0.65)}.NMXKUGgSFh{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.NMXKUGgSFh .r\+pPBS1xqR{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.NMXKUGgSFh .r\+pPBS1xqR>span{font-size:8px}.bdSs1Cy77H .ant-popover-inner-content{padding:0}.bdSs1Cy77H .ant-popover-arrow{border-color:#475365 !important}.bdSs1Cy77H .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.cnXiJKnsLe{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.wAfbSYA3tI{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.wAfbSYA3tI .fq5-A3BW4a{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.Jr8oyyugJL{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}._9QI93q1P-3{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{._9QI93q1P-3{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}._5wtLVb2ONW{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.RE9u\+vgvRx html,.RE9u\+vgvRx body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.RE9u\+vgvRx body,.RE9u\+vgvRx div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.RE9u\+vgvRx textarea{border:none !important;padding-left:0 !important}.RE9u\+vgvRx table,.RE9u\+vgvRx tr,.RE9u\+vgvRx td{page-break-inside:avoid}.RE9u\+vgvRx div{page-break-inside:avoid}.RE9u\+vgvRx thead{display:table-header-group}.RE9u\+vgvRx tfoot{display:table-footer-group}.RE9u\+vgvRx *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.RE9u\+vgvRx .TgW\+ojvtvG,.RE9u\+vgvRx .no-print,.RE9u\+vgvRx .react-resizable-handle,.RE9u\+vgvRx .fc-whiteboard-toolbar,.RE9u\+vgvRx .ant-modal-root,.RE9u\+vgvRx .ant-alert,.RE9u\+vgvRx .jfLQsbfS4G,.RE9u\+vgvRx ._2A0mQY\+AbI{display:none !important}.RE9u\+vgvRx .WrWpMYU\+0e{display:none !important}}.fPTzc5hQhx{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.fPTzc5hQhx .ot4SY8UUfv{width:250px;height:40px;line-height:40px;display:inline-block}.fPTzc5hQhx ._2Xt7srfXhc{width:250px;height:30px;line-height:30px;display:inline-block;font-size:14px}.VzYt6qdij2 .qb1oj\+wYx7{height:120px;width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:space-evenly;-ms-flex-pack:space-evenly;justify-content:space-evenly;font-family:PingFangSC-Regular;font-size:14px;color:rgba(0,0,0,0.65);line-height:24px}.VzYt6qdij2 .qb1oj\+wYx7 ._8ApAAfjM4x{display:-webkit-box;display:-ms-flexbox;display:flex}.VzYt6qdij2 .qb1oj\+wYx7 ._8ApAAfjM4x .ant-btn{color:#6874e2;border-color:#6874e2}._6MAlsdTaj9{width:100%;height:1000px}._6MAlsdTaj9 .wRHcRNACgX{height:60px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.M\+kKIETQC4{width:100%}.M\+kKIETQC4 .X2YwxIMPuT{color:red;font-size:16px;margin:20px}.M\+kKIETQC4 .A2PofOyyIF{color:#4a4a4a;font-size:14px;margin:20px;white-space:pre-wrap}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.s7T3x8O0vx{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.yyzPDRul\+6{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.l7KwdUUwhk{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.l7KwdUUwhk>i,.l7KwdUUwhk>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.ETn6mmEiry{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.lt5bzgn0yZ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.lwHSXmBSp\+{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.px\+gynIMlw{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.HOpH9FRw2i{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.mjiSe1agDq{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.pIsCpwbJyv{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.pIsCpwbJyv .\+0QU\+bvW\+l{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.pIsCpwbJyv .\+0QU\+bvW\+l>span{color:rgba(0,0,0,0.65)}._8g-QIwXvT\+{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}._8g-QIwXvT\+ .j26Hym\+bQl{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}._8g-QIwXvT\+ .j26Hym\+bQl>span{font-size:8px}.cO8iyRHw5r .ant-popover-inner-content{padding:0}.cO8iyRHw5r .ant-popover-arrow{border-color:#475365 !important}.cO8iyRHw5r .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}._3MgsJL15D5{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.ldE1dgw1x5{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.ldE1dgw1x5 .EtEtz-P7Z1{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.f0A5UMTBhU{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}._7WcQOQqkrZ{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{._7WcQOQqkrZ{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}._9KkdBzK7Or{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.Hx8f5O\+Ntp html,.Hx8f5O\+Ntp body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.Hx8f5O\+Ntp body,.Hx8f5O\+Ntp div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.Hx8f5O\+Ntp textarea{border:none !important;padding-left:0 !important}.Hx8f5O\+Ntp table,.Hx8f5O\+Ntp tr,.Hx8f5O\+Ntp td{page-break-inside:avoid}.Hx8f5O\+Ntp div{page-break-inside:avoid}.Hx8f5O\+Ntp thead{display:table-header-group}.Hx8f5O\+Ntp tfoot{display:table-footer-group}.Hx8f5O\+Ntp *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.Hx8f5O\+Ntp .uWcTZvuoj0,.Hx8f5O\+Ntp .no-print,.Hx8f5O\+Ntp .react-resizable-handle,.Hx8f5O\+Ntp .fc-whiteboard-toolbar,.Hx8f5O\+Ntp .ant-modal-root,.Hx8f5O\+Ntp .ant-alert,.Hx8f5O\+Ntp .F\+o\+Lmq5oR,.Hx8f5O\+Ntp ._3aWAamnfXO{display:none !important}.Hx8f5O\+Ntp .yY7qJNT\+53{display:none !important}}.yq4bHEB5PL{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;padding:8px 24px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.dLFzdViA\+Q{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}._8UZHpoOt5u{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.hQ7h0IfDH4{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.hQ7h0IfDH4>i,.hQ7h0IfDH4>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.-zLgYTrCny{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.uAJ\+Xtg4vP{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.A2SxulOxgx{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.j-Pz47Po38{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.HJqZsRRDer{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.xLI\+YTiPkh{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._6Z70rNmCyi{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}._6Z70rNmCyi ._3KnMPn\+svU{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}._6Z70rNmCyi ._3KnMPn\+svU>span{color:rgba(0,0,0,0.65)}.Nas7U35\+Sd{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.Nas7U35\+Sd .uNX-SQLpUQ{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.Nas7U35\+Sd .uNX-SQLpUQ>span{font-size:8px}.y-k3MVeVoz .ant-popover-inner-content{padding:0}.y-k3MVeVoz .ant-popover-arrow{border-color:#475365 !important}.y-k3MVeVoz .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.zFnfjiY9Hd{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.KMFRZ86j2w{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.KMFRZ86j2w .PxjVVvJaE0{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}._8JA5UteWlf{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}._4Za9-dDLLt{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{._4Za9-dDLLt{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.JZmaBZAij4{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.mp2BXPEPYL html,.mp2BXPEPYL body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.mp2BXPEPYL body,.mp2BXPEPYL div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.mp2BXPEPYL textarea{border:none !important;padding-left:0 !important}.mp2BXPEPYL table,.mp2BXPEPYL tr,.mp2BXPEPYL td{page-break-inside:avoid}.mp2BXPEPYL div{page-break-inside:avoid}.mp2BXPEPYL thead{display:table-header-group}.mp2BXPEPYL tfoot{display:table-footer-group}.mp2BXPEPYL *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.mp2BXPEPYL .EoDwQDcXK-,.mp2BXPEPYL .no-print,.mp2BXPEPYL .react-resizable-handle,.mp2BXPEPYL .fc-whiteboard-toolbar,.mp2BXPEPYL .ant-modal-root,.mp2BXPEPYL .ant-alert,.mp2BXPEPYL .SV7ggt-Sj-,.mp2BXPEPYL ._7C5mqi5cC8{display:none !important}.mp2BXPEPYL .OY15tgAahm{display:none !important}}.dUjgG6pG-W ._5Vue0fnRJC{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;font-size:18px;margin-bottom:24px;font-weight:bold}.dUjgG6pG-W ._5Vue0fnRJC .ant-btn{color:#6874e2;border-color:#6874e2}.dUjgG6pG-W .wp8kMv8YAu .Pr1W3GPbT3{margin:16px 0;font-size:16px;font-weight:bold}.wNkHxn\+z\+2{border:1px solid rgba(0,0,0,0.05)}.wNkHxn\+z\+2 .lOakXMkAwS{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.wNkHxn\+z\+2 .ant-row{height:50px;line-height:50px;padding:0 16px}.wNkHxn\+z\+2 .ant-row .ant-col{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.wNkHxn\+z\+2 .ant-row:nth-child(even){background:#fafafa}._1RE-LPkfEb{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:50px;line-height:50px;margin-top:24px}

/**
 * (c) jSuites Javascript Web Components
 *
 * Website: https://jsuites.net
 * Description: Create amazing web based applications.
 *
 * MIT License
 *
 */

:root {
    --button-color: #298BA8; 
    --active-color: #007aff;
}

.unselectable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.jdragging {
    opacity:0.2;
    filter: alpha(opacity=20);
}

.jupload.input {
    padding-right:18px;
    background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black' width='18px' height='18px'%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M17 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V7l-4-4zm-5 16c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm3-10H5V5h10v4z'/%3E%3C/svg%3E");
    background-position:top 50% right 5px;
    background-repeat:no-repeat;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background-size: auto auto;
    background-size: initial;
    height: 33px;
    min-height: 0;
    min-height: initial;
}

.jupload.input img {
    width: auto !important;
    width: initial !important;
}

.jupload.input img {
    max-width: 100%;
    height: 100%;
}

.jupload {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFAAAABQCAYAAACOEfKtAAAACXBIWXMAAAsTAAALEwEAmpwYAAA7emlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4KPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxMzggNzkuMTU5ODI0LCAyMDE2LzA5LzE0LTAxOjA5OjAxICAgICAgICAiPgogICA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPgogICAgICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIgogICAgICAgICAgICB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iCiAgICAgICAgICAgIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIKICAgICAgICAgICAgeG1sbnM6cGhvdG9zaG9wPSJodHRwOi8vbnMuYWRvYmUuY29tL3Bob3Rvc2hvcC8xLjAvIgogICAgICAgICAgICB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIKICAgICAgICAgICAgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZmLzEuMC8iCiAgICAgICAgICAgIHhtbG5zOmV4aWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20vZXhpZi8xLjAvIj4KICAgICAgICAgPHhtcDpDcmVhdG9yVG9vbD5BZG9iZSBQaG90b3Nob3AgQ0MgMjAxNyAoV2luZG93cyk8L3htcDpDcmVhdG9yVG9vbD4KICAgICAgICAgPHhtcDpDcmVhdGVEYXRlPjIwMTctMTItMzFUMjI6NDM6MzBaPC94bXA6Q3JlYXRlRGF0ZT4KICAgICAgICAgPHhtcDpNb2RpZnlEYXRlPjIwMTgtMDEtMDFUMjA6MDM6MjNaPC94bXA6TW9kaWZ5RGF0ZT4KICAgICAgICAgPHhtcDpNZXRhZGF0YURhdGU+MjAxOC0wMS0wMVQyMDowMzoyM1o8L3htcDpNZXRhZGF0YURhdGU+CiAgICAgICAgIDxkYzpmb3JtYXQ+aW1hZ2UvcG5nPC9kYzpmb3JtYXQ+CiAgICAgICAgIDxwaG90b3Nob3A6Q29sb3JNb2RlPjM8L3Bob3Rvc2hvcDpDb2xvck1vZGU+CiAgICAgICAgIDx4bXBNTTpJbnN0YW5jZUlEPnhtcC5paWQ6ZDE3NGVkY2UtNWZkNC0wODRkLTkzNzAtZDRhODVmMzdkNjdiPC94bXBNTTpJbnN0YW5jZUlEPgogICAgICAgICA8eG1wTU06RG9jdW1lbnRJRD54bXAuZGlkOjBmYzcxZDEyLTg1MGUtY2E0NS05MzE4LWRhYjI5YWZhMmQ4MjwveG1wTU06RG9jdW1lbnRJRD4KICAgICAgICAgPHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD54bXAuZGlkOjBmYzcxZDEyLTg1MGUtY2E0NS05MzE4LWRhYjI5YWZhMmQ4MjwveG1wTU06T3JpZ2luYWxEb2N1bWVudElEPgogICAgICAgICA8eG1wTU06SGlzdG9yeT4KICAgICAgICAgICAgPHJkZjpTZXE+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6YWN0aW9uPmNyZWF0ZWQ8L3N0RXZ0OmFjdGlvbj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0Omluc3RhbmNlSUQ+eG1wLmlpZDowZmM3MWQxMi04NTBlLWNhNDUtOTMxOC1kYWIyOWFmYTJkODI8L3N0RXZ0Omluc3RhbmNlSUQ+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDp3aGVuPjIwMTctMTItMzFUMjI6NDM6MzBaPC9zdEV2dDp3aGVuPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6c29mdHdhcmVBZ2VudD5BZG9iZSBQaG90b3Nob3AgQ0MgMjAxNyAoV2luZG93cyk8L3N0RXZ0OnNvZnR3YXJlQWdlbnQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OmFjdGlvbj5zYXZlZDwvc3RFdnQ6YWN0aW9uPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6aW5zdGFuY2VJRD54bXAuaWlkOjk2MTA5Y2Y0LTEwM2ItNTc0Ny1hZWE3LWI5NDMxOWY0NWFkZjwvc3RFdnQ6aW5zdGFuY2VJRD4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OndoZW4+MjAxOC0wMS0wMVQyMDowMjoyMFo8L3N0RXZ0OndoZW4+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDpzb2Z0d2FyZUFnZW50PkFkb2JlIFBob3Rvc2hvcCBDQyAyMDE3IChXaW5kb3dzKTwvc3RFdnQ6c29mdHdhcmVBZ2VudD4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OmNoYW5nZWQ+Lzwvc3RFdnQ6Y2hhbmdlZD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6YWN0aW9uPnNhdmVkPC9zdEV2dDphY3Rpb24+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDppbnN0YW5jZUlEPnhtcC5paWQ6ZDE3NGVkY2UtNWZkNC0wODRkLTkzNzAtZDRhODVmMzdkNjdiPC9zdEV2dDppbnN0YW5jZUlEPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6d2hlbj4yMDE4LTAxLTAxVDIwOjAzOjIzWjwvc3RFdnQ6d2hlbj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OnNvZnR3YXJlQWdlbnQ+QWRvYmUgUGhvdG9zaG9wIENDIDIwMTcgKFdpbmRvd3MpPC9zdEV2dDpzb2Z0d2FyZUFnZW50PgogICAgICAgICAgICAgICAgICA8c3RFdnQ6Y2hhbmdlZD4vPC9zdEV2dDpjaGFuZ2VkPgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgPC9yZGY6U2VxPgogICAgICAgICA8L3htcE1NOkhpc3Rvcnk+CiAgICAgICAgIDx0aWZmOk9yaWVudGF0aW9uPjE8L3RpZmY6T3JpZW50YXRpb24+CiAgICAgICAgIDx0aWZmOlhSZXNvbHV0aW9uPjcyMDAwMC8xMDAwMDwvdGlmZjpYUmVzb2x1dGlvbj4KICAgICAgICAgPHRpZmY6WVJlc29sdXRpb24+NzIwMDAwLzEwMDAwPC90aWZmOllSZXNvbHV0aW9uPgogICAgICAgICA8dGlmZjpSZXNvbHV0aW9uVW5pdD4yPC90aWZmOlJlc29sdXRpb25Vbml0PgogICAgICAgICA8ZXhpZjpDb2xvclNwYWNlPjY1NTM1PC9leGlmOkNvbG9yU3BhY2U+CiAgICAgICAgIDxleGlmOlBpeGVsWERpbWVuc2lvbj44MDwvZXhpZjpQaXhlbFhEaW1lbnNpb24+CiAgICAgICAgIDxleGlmOlBpeGVsWURpbWVuc2lvbj44MDwvZXhpZjpQaXhlbFlEaW1lbnNpb24+CiAgICAgIDwvcmRmOkRlc2NyaXB0aW9uPgogICA8L3JkZjpSREY+CjwveDp4bXBtZXRhPgogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIAo8P3hwYWNrZXQgZW5kPSJ3Ij8+tc8AsgAAACBjSFJNAAB6JQAAgIMAAPn/AACA6QAAdTAAAOpgAAA6mAAAF2+SX8VGAAAGjUlEQVR42uycW2xURRjHf91SoEIBUQpYI8VSVBDExniLERNUJBpQVEDFqE1AEYkX0JCC0YjgBdEYDOIFeVEEFRBilKBogg+KiQoV5Q6Khla8lrZRBLo+zLdazs7ZM2d3zsJu55/sy3dmz5797Vy+y8wWxONxnNJXzCFwAB1AB9ABdHIAHUAH0AF0Cq929fX1ufbMA4HLgSqgHOgPdJJrfwPbgb3AJuBD4KsoH6agrq4uF6CVAncC4wVYGP0ALAVeAva0NYDFwOPARKBzhvc6ArwG1AC/toU5cDSwFXjAAjyAQmACsAOozneATwLLgdMM2/8jLxN1AxYBC/J1CL8F3BjQZhOwCqgFvgd+AuJAT6ACOBMYCVwUcJ91siDlDcC3gRtSXF8IzAe+M7xfOXC3TAOFPm3WA0NzAeDp8oUGASeKrUF60R6Zn6an6CnTgI1pfnYFMAcY43N9GTDueAR4sQylK8RvS0dzgYcsPc9U4Bmfa9XA4uMF4GXypUdkeJ8Z0nNs6hbgdZ9rPcK6OLZX4XbisH5iAd68COABvAHc63NtwbHsgf2B94BKC/faAFwY8Zy8ErhWYx8EbM42wAuAj4ETAtptllh1N9AiC0t/YLCnXV9xT6JUJ6AOKPHYX5HIJ2sAK4BvgQ4+17fJ5LxKIgudzgBGySS/3sAPtKWZwCyPrQk4ydQxtwFwH9BbY4/LIvBEyF5RIF8iG+oC/K7xEUfLEI98EVnsA28/MCQkPIDmLMIDOCDOu1fXZGMVrgJu19gbZCKuJTek62mV2QD4XIoFZT+5o10a2ylRA6wCLtXYp8uikUv6Webr1uoOdIwS4HiNbS/wFLmnZuCgx9Y+hVdhBeBwjW1+BF9uFvBqFiDGDW3a0Cus+gADPLYWVB7PpiaJn5YYZjMigles6W2NskJH0gN1RZ1EJcyWJnvi0hpUbSQK9dRwaDGIqtIGeLbG9o3lnveCT2YmCogVPqvwdpOIKB2A7TU2W+XCiQEZkSggTvGxl8m0NNc2wDKNrcXCF5mASoUFaQYw2xK8Iv4vyvtpmsTxGQHsLPPQLp9frI+FYftyiPY1liAeBs5DZYNS/XgjgTXpApwq4Gaj0k86DbK4YISBmOlwjreaw+8CzvEDJa7bojAATwU+QtUQSg0Wlr4WFwxT2Z4Ta1GZ9Md8rlcDY00ADpFfZViID7/D8oJxrCACPCIjQ6elqOK8ryM9GPg64AM+B1YAW1BJ0r9M/aaQC0YYiAWWne0FQFf0dZnngdsgOaHaXVySLj43XSY3zCRVNclSz9NpTgQRywfAVRr7WcDWmKaxDl4TKuU+LkN4kyOEF1XEMk5GmFf3eOfAKcD5moY/ypy4OsMHeTjDBSPMcF5o8X4NPs70eKAoMYSLJIDuoOl5AwRiJroJWIIq1BwM8DcLDFyPpoAESTEqN/m0aVYlQF1RtRPviB2ZWEQeRJ//Gm0BHqhttieTutJVgkrGBu0FbEbtvmoMgNjLErxEL3yH5L01oxIA79O8aTVqj7ENmWSpGw1DwhZUJTBIf1ieGlZoAFbGxG3pESLIjkolBsMXaVNC9qWrnZTFZJh69SV283v5oHrNlNA9JvGfV0scL+3cm1Q7iaFPKNY6XimTD0fFwuWaRrscqyR11Hgqh2IkZ5gPy7LtdLRKNX7gnzHgkMdYGDIx0FZUrrHVxVBHBLzDup/jlaSrNbbdMWCn5sIAxyspsrlZY18TQ3/mYoxjdpQmkFx8OgKsjAHvat4wlFZZVyce1diWA80x4DOf7Ma8LD+kaYhmGvLZ0ovoa0LP0mpZ1qXXq4Fzs/igiSRBY8BrH3bq0Ca6HlWt82od6iTBfyn9Lj6+Xx2q2nYwSz3Q9FhrE/ZSVX66BPjU51q/RLCR6IEH0KfCe8sQL85SmNRo+Ioa3tgU8Ga2jtS8RaUdPj7gTtQRqS/yfLHogErf+6Xykk52ekOTESm67AbUrvuyPARXAtyPSvz6wduK5myx7pzIcPy3N4D6Z4w3pc0O1IbybAwrWyqSubZUOsYw4DrU4Ro/bUEd3m4wAZjoie8bPtARVNkvVwAWypxu6gqtRW0u0i6kqU4qDUEVUirasANdQ8BhoVSbizai/uRmbhsEtxp1lCPwpJXpWbmBqD++uTWPQ7xm1NaVJeIomzmvIQ8bdpO0zpWozea9Aibf41WHgd9QhaJtqAPia4FfQnv/7l98M5P79zYH0AF0AB1AJwfQAXQAHUCnNPTvAKemiFU6nb96AAAAAElFTkSuQmCC);
    background-repeat: no-repeat;
    background-size: 100px;
    background-position: center;
    background-color: rgba(230, 230, 230, 0.1);
    border: 1px dotted #eee;
    cursor: pointer;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    height: 100%;
    min-height: 180px;
}

.jremove {
    opacity: 0.2;
    filter: alpha(opacity=20);
}


/** Animations **/
.fade-in {
    -webkit-animation: fade-in 2s forwards;
            animation: fade-in 2s forwards;
}

.fade-out {
    -webkit-animation: fade-out 1s forwards;
            animation: fade-out 1s forwards;
}

.slide-left-in {
    position: relative;
    -webkit-animation: slide-left-in 0.4s forwards;
            animation: slide-left-in 0.4s forwards;
}

.slide-left-out {
    position: relative;
    -webkit-animation: slide-left-out 0.4s forwards;
            animation: slide-left-out 0.4s forwards;
}

.slide-right-in {
    position: relative;
    -webkit-animation: slide-right-in 0.4s forwards;
            animation: slide-right-in 0.4s forwards;
}

.slide-right-out {
    position: relative;
    -webkit-animation: slide-right-out 0.4s forwards;
            animation: slide-right-out 0.4s forwards;
}

.slide-top-in {
    position: relative;
    -webkit-animation: slide-top-in 0.4s forwards;
            animation: slide-top-in 0.4s forwards;
}

.slide-top-out {
    position: relative;
    -webkit-animation: slide-top-out 0.2s forwards;
            animation: slide-top-out 0.2s forwards;
}

.slide-bottom-in {
    position: relative;
    -webkit-animation: slide-bottom-in 0.4s forwards;
            animation: slide-bottom-in 0.4s forwards;
}

.slide-bottom-out {
    position: relative;
    -webkit-animation: slide-bottom-out 0.1s forwards;
            animation: slide-bottom-out 0.1s forwards;
}

/** Fadein and Fadeout **/
@keyframes fade-in {
    0% { opacity: 0; }
    100% { opacity: 100; }
}

@-webkit-keyframes fade-in {
    0% { opacity: 0; }
    100% { opacity: 100; }
}

@keyframes fade-out {
    0% { opacity: 100; }
    100% { opacity: 0; }
}

@-webkit-keyframes fade-out {
    0% { opacity: 100; }
    100% { opacity: 0; }
}

/** Keyframes Left to Right **/
@keyframes slide-left-in {
    0% { left: -100%; }
    100% { left: 0%; }
}

@-webkit-keyframes slide-left-in {
    0% { left: -100%; }
    100% { left: 0%; }
}
    
@keyframes slide-left-out {
    0% { left: 0%; }
    100% { left: -100%; }
}

@-webkit-keyframes slide-left-out {
    0% { left: 0%; }
    100% { left: -100%; }
}

/** Keyframes Right to Left **/
@keyframes slide-right-in {
    0% { left: 100%; }
    100% { left: 0%; }
}

@-webkit-keyframes slide-right-in
{
    0% { left: 100%; }
    100% { left: 0%; }
}
    
@keyframes slide-right-out {
    0% { left: 0%; }
    100% { left: 100%; }
}

@-webkit-keyframes slide-right-out {
    0% { left: 0%; }
    100% { left: 100%; }
}

/** Keyframes Top to Bottom **/
@keyframes slide-top-in {
    0% { -webkit-transform: translateY(-100%); transform: translateY(-100%); }
    100% { -webkit-transform: translateY(0%); transform: translateY(0%); }
}

@-webkit-keyframes slide-top-in {
    0% { -webkit-transform: translateY(-100%); transform: translateY(-100%); }
    100% { -webkit-transform: translateY(0%); }
}
    
@keyframes slide-top-out {
    0% { -webkit-transform: translateY(0%); transform: translateY(0%); }
    100% { -webkit-transform: translateY(-100%); transform: translateY(-100%); }
}

@-webkit-keyframes slide-top-out {
    0% { -webkit-transform: translateY(0%); }
    100% { -webkit-transform: translateY(-100%); }
}

/** Keyframes Bottom to Top **/
@keyframes slide-bottom-in {
    0% { -webkit-transform: translateY(100%); transform: translateY(100%); }
    100% { -webkit-transform: translateY(0%); transform: translateY(0%); }
}

@-webkit-keyframes slide-bottom-in {
    0% { -webkit-transform: translateY(100%); transform: translateY(100%); }
    100% { -webkit-transform: translateY(0%); }
}
    
@keyframes slide-bottom-out {
    0% { -webkit-transform: translateY(0%); transform: translateY(0%); }
    100% { -webkit-transform: translateY(100%); transform: translateY(100%); }
}

@-webkit-keyframes slide-bottom-out {
    0% { -webkit-transform: translateY(0%); }
    100% { -webkit-transform: translateY(100%); }
}

@-webkit-keyframes spin {
    from {
        -webkit-transform:rotate(0deg);
    }
    to {
        -webkit-transform:rotate(360deg);
    }
}

@keyframes spin {
    from {
        -webkit-transform:rotate(0deg);
                transform:rotate(0deg);
    }
    to {
        -webkit-transform:rotate(360deg);
                transform:rotate(360deg);
    }
}

.jcalendar {
    position:absolute;
    z-index:9000;
    display:none;
    -webkit-box-sizing:border-box;
            box-sizing:border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent;
    min-width:280px;
}

.jcalendar.jcalendar-focus {
    display:block;
}

.jcalendar .jcalendar-backdrop {
    position:fixed;
    top:0px;
    left:0px;
    z-index:9000;
    min-width:100%;
    min-height:100%;
    background-color:rgba(0,0,0,0.5);
    border:0px;
    padding:0px;
    display:none;
}

.jcalendar .jcalendar-container {
    position:relative;
    -webkit-box-sizing:border-box;
            box-sizing:border-box;
}

.jcalendar .jcalendar-content {
    position:absolute;
    z-index:9001;
    -webkit-box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.39);
    box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.39);
    background-color:#fff;
}

.jcalendar-header {
    text-align:center;
}

.jcalendar-header span {
    margin-right:4px;
    font-size:1.1em;
    font-weight:bold;
}

.jcalendar-prev {
    cursor:pointer;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M15.41 16.59L10.83 12l4.58-4.59L14 6l-6 6 6 6 1.41-1.41z' fill='%23000' /%3E%3Cpath fill='none' d='M0 0h24v24H0V0z'/%3E%3C/svg%3E");
    background-position:center;
    background-repeat:no-repeat;
}

.jcalendar-next {
    cursor:pointer;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z' fill='%23000' /%3E%3Cpath fill='none' d='M0 0h24v24H0V0z'/%3E%3C/svg%3E");
    background-position:center;
    background-repeat:no-repeat;
}

.jcalendar-weekday {
    font-weight: 600;
    background-color: #fcfcfc;
    padding: 14px;
}

.jcalendar-table > table {
    width:100%;
    background-color:#fff;
}

.jcalendar-table > table > thead {
    cursor:pointer;
}

.jcalendar-table thead td {
    padding:10px;
    height:40px;
}

.jcalendar-table > table > tbody td {
    -webkit-box-sizing:border-box;
            box-sizing:border-box;
    cursor:pointer;
    padding:9px;
    font-size:0.9em;
}


.jcalendar-table tfoot td {
    padding:10px;
}

.jcalendar-months td, .jcalendar-years td {
    height:24px;
} 

.jcalendar-input {
    padding-right:18px;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='gray'%3E%3Cpath d='M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 18H4V8h16v13z'/%3E%3Cpath fill='none' d='M0 0h24v24H0z'/%3E%3C/svg%3E");
    background-position:top 50% right 5px;
    background-repeat:no-repeat;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

.jcalendar-done {
    -webkit-box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.39);
    box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.39);
    background-color:#fff;
}

.jcalendar-update {
    border:1px solid #ccc;
    background-color:#fff;
    border-radius:4px;
    padding:5px;
    width:100%;
}

.jcalendar-container select {
    width:55px;
    display:inline-block;
    border:0px;
    padding:4px;
    text-align:center;
    font-size:1.1em;
    -webkit-user-select:none;
       -moz-user-select:none;
        -ms-user-select:none;
            user-select:none;
    margin-right:10px;
}

.jcalendar-container select:first-child {
    margin-right:2px;
}

.jcalendar-selected {
    background-color:#eee;
}

.jcalendar-reset, .jcalendar-confirm {
    text-transform:uppercase;
    cursor:pointer;
    color: #007aff;
    color: var(--active-color);
}

.jcalendar-controls {
    padding:15px;

    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    vertical-align:middle;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align:center;
        -ms-flex-align:center;
            align-items:center;
}

.jcalendar-controls div {
    font-weight:bold;
}

.jcalendar-fullsize  {
    position:fixed;
    width:100%;
    top:0px;
    left:0px;
}

.jcalendar-fullsize .jcalendar-content
{
    position:fixed;
    width:100%;
    left:0px;
    bottom:0px;
}

.jcalendar-focus.jcalendar-fullsize .jcalendar-backdrop {
    display:block;
}

.jcalendar-sunday {
    color: red;
}
.jcalendar-disabled {
    color: #ccc;
}

.jcalendar-time {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
}


.jcolor {
    position: absolute;
    display: none;
    outline: none;
}

.jcolor-input {
    padding-right:18px;
    background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black' width='18px' height='18px'%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M12 3c-4.97 0-9 4.03-9 9s4.03 9 9 9c.83 0 1.5-.67 1.5-1.5 0-.39-.15-.74-.39-1.01-.23-.26-.38-.61-.38-.99 0-.83.67-1.5 1.5-1.5H16c2.76 0 5-2.24 5-5 0-4.42-4.03-8-9-8zm-5.5 9c-.83 0-1.5-.67-1.5-1.5S5.67 9 6.5 9 8 9.67 8 10.5 7.33 12 6.5 12zm3-4C8.67 8 8 7.33 8 6.5S8.67 5 9.5 5s1.5.67 1.5 1.5S10.33 8 9.5 8zm5 0c-.83 0-1.5-.67-1.5-1.5S13.67 5 14.5 5s1.5.67 1.5 1.5S15.33 8 14.5 8zm3 4c-.83 0-1.5-.67-1.5-1.5S16.67 9 17.5 9s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z'/%3E%3C/svg%3E");
    background-position:top 50% right 5px;
    background-repeat:no-repeat;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

.jcolor-content {
    position: absolute;
    left: 0px;
    z-index: 9000;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -webkit-font-smoothing: antialiased;
    font-size: .875rem;
    letter-spacing: .2px;
    border-radius: 4px;
    -webkit-box-shadow: 0 8px 10px 1px rgba(0,0,0,0.14), 0 3px 14px 2px rgba(0,0,0,0.12), 0 5px 5px -3px rgba(0,0,0,0.2);
    box-shadow: 0 8px 10px 1px rgba(0,0,0,0.14), 0 3px 14px 2px rgba(0,0,0,0.12), 0 5px 5px -3px rgba(0,0,0,0.2);
    background-color:#fff;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

.jcolor-controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 10px;
    padding-bottom: 0px;
}

.jcolor-controls div {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    font-size: 1em;
    color: #007aff;
    color: var(--active-color);
    text-transform: uppercase;
    font-weight: bold;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

.jcolor-content table {
    padding: 7px !important;
}

.jcolor-content table {
    border-collapse: separate;
    border-collapse: initial;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

.jcolor-focus {
    display:block;
}

.jcolor table {
    width:100%;
    height:100%;
}

.jcolor td {
    padding: 7px;
    border:2px solid #fff;
}

.jcolor-selected {
    border:2px solid #000 !important;
}

.jcolor-selected {
    background-repeat:no-repeat;
    background-size: 16px;
    background-position: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z' fill='white'/%3E%3C/svg%3E");
}

.jcolor-fullscreen {
    position: fixed;
    bottom: 0px;
    width:100%;
    max-height:250px;
    border-radius: 0px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

.jcolor-fullscreen .jcolor-controls {
    padding: 15px;
    -webkit-box-shadow: 1px 0px 1px 0px rgba(0,0,0,0.39);
    box-shadow: 1px 0px 1px 0px rgba(0,0,0,0.39);
}

.jcolor-reset {
    text-align: left;
}

.jcolor-close {
    text-align: right;
}

.jcolor-backdrop {
    position: fixed;
    top: 0px;
    left: 0px;
    min-width: 100%;
    min-height: 100%;
    background-color: rgba(0,0,0,0.5);
    border: 0px;
    padding: 0px;
    z-index: 8000;
    display: none;
    
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */ /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}

.jcontextmenu {
    position:fixed;
    z-index:10000;
    background:#fff;
    color: #555;
    font-size: 11px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
        user-select: none;
    -webkit-box-shadow: 2px 2px 2px 0px rgba(143, 144, 145, 1);
    box-shadow: 2px 2px 2px 0px rgba(143, 144, 145, 1);
    border: 1px solid #C6C6C6;
    padding: 0px;
    padding-top:4px;
    padding-bottom:4px;
    margin:0px;
    outline:none;
    display:none;
}

.jcontextmenu.jcontextmenu-focus {
    display:inline-block;
}

.jcontextmenu > div {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 8px 8px 8px 32px;
    width: 250px;
    position: relative;
    cursor: default;
    font-size: 11px;
    font-family:sans-serif;
}

.jcontextmenu > div::before {
    content: attr(data-icon);
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 16px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    position: absolute;
    left: 9px;
}

.jcontextmenu > div a {
    color: #555;
    text-decoration: none;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}

.jcontextmenu > div span {
    margin-right:10px;
}

.jcontextmenu .jcontextmenu-disabled a {
    color: #ccc;
}

.jcontextmenu > div:hover {
    background: #ebebeb;
}

.jcontextmenu hr {
    border: 1px solid #e9e9e9;
    border-bottom: 0;
    margin-top:5px;
    margin-bottom:5px;
}

.jcontextmenu > hr:hover {
    background: transparent;
}

.jcontextmenu .jcontextmenu {
  top: 4px;
  left: 99%;
  opacity: 0;
  position: absolute;
}

.jcontextmenu > div:hover > .jcontextmenu {
  display: block;
  opacity: 1;
  -webkit-transform: translate(0, 0) scale(1);
  transform: translate(0, 0) scale(1);
  pointer-events: auto;
}

.jdropdown {
    cursor:pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background:#fff;
    -webkit-tap-highlight-color: transparent;
    display: inline-block;
}

.jdropdown-header::-webkit-input-placeholder {
    color:#000;
}

.jdropdown-header::-moz-placeholder {
    color:#000;
}

.jdropdown-header:-ms-input-placeholder {
    color:#000;
}

.jdropdown-header::-ms-input-placeholder {
    color:#000;
}

.jdropdown-header::placeholder {
    color:#000;
}

.jdropdown-backdrop {
    position:fixed;
    top:0px;
    left:0px;
    min-width:100%;
    min-height:100%;
    background-color:rgba(0,0,0,0.5);
    border:0px;
    padding:0px;
    z-index:8000;
    display:none;
}

.jdropdown-focus {
    position:relative;
}

.jdropdown-focus .jdropdown-container {
    -webkit-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0);
}

.jdropdown-default.jdropdown-focus .jdropdown-header {
    outline:auto 5px -webkit-focus-ring-color;
}

.jdropdown-default.jdropdown-focus .jdropdown-header.jdropdown-add {
    background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='gray' width='24px' height='24px'%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-2 10h-4v4h-2v-4H7v-2h4V7h2v4h4v2z'/%3E%3C/svg%3E");
}

.jdropdown-container-header
{
    padding:0px;
    margin:0px;
    position:relative;
}

.jdropdown-header
{
    padding-right:30px !important;
}

.jdropdown-header
{
    width:100%;
    appearance: none;
    background-repeat: no-repeat;
    background-position:top 50% right 5px;
    background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='none' d='M0 0h24v24H0V0z'/%3E%3Cpath d='M7 10l5 5 5-5H7z' fill='gray'/%3E%3C/svg%3E");
    text-overflow: ellipsis;
    cursor:pointer;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.jdropdown-insert-button
{
    font-size: 1.4em;
    text-transform: uppercase;
    position:absolute;
    right: 30px;
    top: 4px;
    display:none;
}

.jdropdown-container
{
    min-width: inherit;
    -webkit-transform: translate3d(-10000px,0,0);
            transform: translate3d(-10000px,0,0);
    position:absolute;
    z-index:9001;
}

.jdropdown-close
{
    display:none;
    font-size:1em;
    color: #007aff;
    color: var(--active-color);
    text-transform:uppercase;
    text-align:right;
    padding:15px;
    font-weight:bold;
}

.jdropdown-content
{
    min-width:inherit;
    margin:0px;
    -webkit-box-sizing:border-box;
            box-sizing:border-box;
}

.jdropdown-content:empty
{
}

.jdropdown-item
{
    white-space: nowrap;
    text-align: left;
    text-overflow: ellipsis;
    overflow-x: hidden;
    color: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.jdropdown-description
{
    text-overflow: ellipsis;
    overflow: hidden;
    line-height: 1.5em;
}

.jdropdown-image
{
    margin-right:10px;
    width: 32px;
    height: 32px;
    border-radius:20px;
}

.jdropdown-image-small
{
    width:24px;
    height:24px;
}

.jdropdown-title
{
    font-size: 0.7em;
    text-overflow: ellipsis;
    overflow-x: hidden;
    display: block;
}

/** Default visual **/

.jdropdown-default .jdropdown-header
{
    border:1px solid #ccc;
    padding:5px;
    padding-left:10px;
    padding-right:16px;
}

.jdropdown-default .jdropdown-container
{
    background-color:#fff;
}

.jdropdown-default.jdropdown-focus.jdropdown-insert .jdropdown-header {
    padding-right:50px;
}

.jdropdown-default.jdropdown-focus.jdropdown-insert .jdropdown-insert-button {
    display:block;
}

.jdropdown-default .jdropdown-content
{
    min-width:inherit;
    border:1px solid #8fb1e3;
    margin:0px;
    background-color:#fff;
    -webkit-box-sizing:border-box;
            box-sizing:border-box;
    min-height:10px;
    max-height:215px;
    overflow-y:auto;
}

.jdropdown-default .jdropdown-item
{
    padding:4px;
    padding-left:8px;
    padding-right:40px;
}

.jdropdown-default .jdropdown-item:hover
{
    background-color:#1f93ff;
    color:#fff;
}

.jdropdown-default .jdropdown-cursor
{
    background-color:#eee;
}

.jdropdown-default .jdropdown-selected
{
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBkPSJNMCAwaDI0djI0SDB6IiBmaWxsPSJub25lIiAvPjxwYXRoIGQ9Ik05IDE2LjE3TDQuODMgMTJsLTEuNDIgMS40MUw5IDE5IDIxIDdsLTEuNDEtMS40MXoiIGZpbGw9IndoaXRlIiAvPjwvc3ZnPgo=');
    background-repeat:no-repeat;
    background-position:top 50% right 5px;
    background-color:#1f93ff;
    color:#fff;
}

.jdropdown-default .jdropdown-group {
    margin-top:5px;
}

.jdropdown-default .jdropdown-group .jdropdown-item {
    padding-left:16px;
}

.jdropdown-default .jdropdown-group-name {
    padding: 8px;
    font-weight: bold;
    text-align: left;
}

.jdropdown-default .jdropdown-reset_ {
    content:'x';
    position:absolute;
    top:0;
    right:0;
    margin:5px;
    margin-right:10px;
    font-size:12px;
    width:12px;
    cursor:pointer;
    text-shadow: 0px 0px 5px #fff;
    display:none;
    line-height: 1.8em;
}

.jdropdown-default.jdropdown-focus .jdropdown-reset_ {
    display:block;
}

/** Default render for mobile **/

.jdropdown-picker.jdropdown-focus .jdropdown-backdrop {
    display:block;
}

.jdropdown-picker .jdropdown-header {
    outline: none;
}

.jdropdown-picker .jdropdown-container
{
    position:fixed;
    bottom:0px;
    left:0px;
    border-bottom:1px solid #e6e6e8;
    width:100%;
    background-color:#fff;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

.jdropdown-picker .jdropdown-close
{
    -webkit-box-shadow: 0px -1px 5px 0px rgba(0,0,0,0.39);
    box-shadow: 0px -1px 5px 0px rgba(0,0,0,0.39);
    background-color:#fff;
    display:block;
}

.jdropdown-picker .jdropdown-content
{
    overflow-y:scroll;
    height:280px;
    background-color:#fafafa;
    border-top:1px solid #e6e6e8;
}

.jdropdown-picker .jdropdown-group-name
{
    font-size: 1em;
    text-transform: uppercase;
    padding-top:10px;
    padding-bottom:10px;
    display: block;
    border-bottom: 1px solid #e6e6e8;
    padding-left:20px;
    padding-right:20px;
    text-align:center;
    font-weight:bold;
}

.jdropdown-picker .jdropdown-item
{
    font-size: 1em;
    text-transform: uppercase;
    padding-top:10px;
    padding-bottom:10px;
    border-bottom: 1px solid #e6e6e8;
    padding-left:20px;
    padding-right:20px;
}

.jdropdown-picker .jdropdown-selected
{
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBkPSJNMCAwaDI0djI0SDB6IiBmaWxsPSJub25lIiAvPjxwYXRoIGQ9Ik05IDE2LjE3TDQuODMgMTJsLTEuNDIgMS40MUw5IDE5IDIxIDdsLTEuNDEtMS40MXoiIGZpbGw9IndoaXRlIiAvPjwvc3ZnPgo=');
    background-repeat:no-repeat;
    background-position:top 50% right 15px;
    background-color:#1f93ff;
    color:#fff;
}

.jdropdown-picker .jdropdown-cursor
{
    background-color:#1f93ff;
    color:#fff;
}

/** Default render for mobile searchbar **/

.jdropdown-searchbar.jdropdown-focus
{
    top:0px !important;
    left:0px !important;
    width:100% !important;
    height:100% !important;
}

.jdropdown-searchbar.jdropdown-focus
{
    position:fixed;
    background-color:#fafafa;
    padding:0px;
    z-index:9001;
    overflow-y:scroll;
    will-change: scroll-position;
    -webkit-overflow-scrolling: touch;
}

.jdropdown-searchbar.jdropdown-focus .jdropdown-container-header
{
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 9002;
    padding:10px;
    background-color:#fff;
    -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.1);
            box-shadow: 0 1px 2px rgba(0,0,0,.1);
    max-height: 24px;
    width: 100%;
}

.jdropdown-searchbar.jdropdown-focus .jdropdown-header
{
    padding-left: 30px !important;
    padding-right: 60px !important;
}

.jdropdown-searchbar.jdropdown-focus .jdropdown-header
{
    border: 0px;
    background-repeat: no-repeat;
    background-position-x: 0%;
    background-position-y: 40%;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBkPSJNMTUuNSAxNGgtLjc5bC0uMjgtLjI3QzE1LjQxIDEyLjU5IDE2IDExLjExIDE2IDkuNSAxNiA1LjkxIDEzLjA5IDMgOS41IDNTMyA1LjkxIDMgOS41IDUuOTEgMTYgOS41IDE2YzEuNjEgMCAzLjA5LS41OSA0LjIzLTEuNTdsLjI3LjI4di43OWw1IDQuOTlMMjAuNDkgMTlsLTQuOTktNXptLTYgMEM3LjAxIDE0IDUgMTEuOTkgNSA5LjVTNy4wMSA1IDkuNSA1IDE0IDcuMDEgMTQgOS41IDExLjk5IDE0IDkuNSAxNHoiIGZpbGw9IiNlNmU2ZTgiLz48cGF0aCBkPSJNMCAwaDI0djI0SDB6IiBmaWxsPSJub25lIi8+PC9zdmc+);
}

.jdropdown-searchbar.jdropdown-focus .jdropdown-close
{
    display:block;
}

.jdropdown-searchbar .jdropdown-header {
    outline: none;
}

.jdropdown-searchbar .jdropdown-container
{
    margin-top: 40px;
    width:100%;
}

.jdropdown-searchbar .jdropdown-close
{
    position:fixed;
    top:0px;
    right:0px;
}

.jdropdown-searchbar .jdropdown-content
{
    margin-top:10px;
}

.jdropdown-searchbar .jdropdown-group
{
    margin-top:10px;
    margin-bottom:15px;
    background-color:#fff;
}

.jdropdown-searchbar .jdropdown-group-name
{
    border-top: 1px solid #e6e6e8;
    border-bottom: 1px solid #e6e6e8;
    padding:10px;
    padding-left:12px;
    font-weight:bold;
}

.jdropdown-searchbar .jdropdown-group-arrow
{
    float:right;
    width:24px;
    height:24px;
    background-repeat:no-repeat;
}

.jdropdown-searchbar .jdropdown-group-arrow-down
{
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBkPSJNNy40MSA4LjU5TDEyIDEzLjE3bDQuNTktNC41OEwxOCAxMGwtNiA2LTYtNiAxLjQxLTEuNDF6Ii8+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgwVjB6Ii8+PC9zdmc+);
}

.jdropdown-searchbar .jdropdown-group-arrow-up
{
    background-image: url(data:image/svg+xml;base64,CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZD0iTTcuNDEgMTUuNDFMMTIgMTAuODNsNC41OSA0LjU4TDE4IDE0bC02LTYtNiA2eiIvPjxwYXRoIGQ9Ik0wIDBoMjR2MjRIMHoiIGZpbGw9Im5vbmUiLz48L3N2Zz4=);
}

.jdropdown-searchbar .jdropdown-item
{
    padding-top:10px;
    padding-bottom:10px;
    border-bottom: 1px solid #e6e6e8;
    padding-left:15px;
    padding-right:40px;
    background-color:#fff;
    font-size:0.9em;
}

.jdropdown-searchbar .jdropdown-description {
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: calc(100% - 20px);
}

.jdropdown-searchbar .jdropdown-content > .jdropdown-item:first-child
{
    border-top: 1px solid #e6e6e8;
}

.jdropdown-searchbar .jdropdown-selected
{
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBkPSJNMCAwaDI0djI0SDB6IiBmaWxsPSJub25lIi8+PHBhdGggZD0iTTkgMTYuMTdMNC44MyAxMmwtMS40MiAxLjQxTDkgMTkgMjEgN2wtMS40MS0xLjQxeiIgZmlsbD0iIzAwN2FmZiIvPjwvc3ZnPg==');
    background-repeat:no-repeat;
    background-position:top 50% right 15px;
}

/** List render **/

.jdropdown-list
{
}

.jdropdown-list .jdropdown-container
{
    display:block;
}

.jdropdown-list .jdropdown-header
{
    display:none;
}

.jdropdown-list .jdropdown-group
{
    background-color:#fff;
}

.jdropdown-list .jdropdown-group-name
{
    border-bottom: 1px solid #e6e6e8;
    padding-top:10px;
    padding-bottom:10px;
    font-weight:bold;
}

.jdropdown-list .jdropdown-item
{
    padding-top:10px;
    padding-bottom:10px;
    border-bottom: 1px solid #e6e6e8;
    padding-left:10px;
    padding-right:40px;
    background-color:#fff;
}

.jdropdown-list .jdropdown-selected
{
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBkPSJNMCAwaDI0djI0SDB6IiBmaWxsPSJub25lIi8+PHBhdGggZD0iTTkgMTYuMTdMNC44MyAxMmwtMS40MiAxLjQxTDkgMTkgMjEgN2wtMS40MS0xLjQxeiIgZmlsbD0iIzAwN2FmZiIvPjwvc3ZnPg==');
    background-repeat:no-repeat;
    background-position:top 50% right 10px;
}

@media only screen and (max-width : 800px)
{
    .jdropdown-list {
        width:100% !important;
    }
    .jdropdown-list {
        border:0px;
        padding:0px;
    }

    .jdropdown-list .jdropdown-container {
        min-width:100%;
    }

    .jdropdown-searchbar.jdropdown-focus .jdropdown-description {
        text-transform: uppercase;
    }
}

.app .jdropdown-item {
    text-transform:uppercase;
}

.jdropdown-create-container {
    margin: 10px;
    border: 1px solid #ccc;
    border-radius: 2px;
    padding: 6px;
}

.jdropdown-color {
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 12px;
    width: 12px;
    height: 12px;
    margin-right: 6px;
}

.jeditor-container {
    border:1px solid #ccc;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

.jeditor-dragging {
     border:1px dashed #000;
}

.jeditor-container.jeditor-padding {
    padding:10px;
}

.jeditor {
    outline:none;
    word-break: break-word;

}

.jeditor-container.jeditor-padding .jeditor {
    min-height:100px;
    margin-bottom:10px;
    padding:10px;
}

.jeditor-thumbs {
    display:inline-block;
    margin-right:5px;
}

.jeditor-thumbs-container {
    margin-top:15px;
}

.jeditor-thumbs .close {
    position:absolute;
    height:1px;
}

.jeditor-thumbs .close i {
    color:#fff;
    text-shadow: 0px 0px 2px #000;
    position:relative;
    top:5px;
    left:72px;
}

.jeditor-thumbs img {
    border:1px solid #eee;
    width:100px;
    height:100px;
}

.jeditor-users {
    position:absolute;
    border:1px solid #ccc;
    background-color:#fff;
    padding-top:5px;
    padding-bottom:5px;
    max-height:220px;
    overflow-y:scroll;
}

.jeditor-users > div
{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-align:center;
        -ms-flex-align:center;
            align-items:center;
    min-width:220px;
    padding:10px;
    padding-top:5px;
    padding-bottom:5px;
}

.jeditor-users > div:hover
{
    background-color:#efefef;
}

.jeditor-users > div img
{
    width:24px;
    height:24px;
    border-radius:12px;
    margin-right:5px;
}

/** Snippet **/

.jsnippet {
    margin-top:15px;
    cursor:pointer;
    border: 1px solid #eee;
    position:relative;
}

.jsnippet:focus {
    outline: none;
}

.jsnippet img {
    width:100%;
}

.jsnippet .jsnippet-title {
    padding:15px;
    font-size:1.4em;
}

.jsnippet .jsnippet-description {
    padding-left:15px;
    padding-right:15px;
    font-size:1em;
}

.jsnippet .jsnippet-host {
    padding:15px;
    text-transform:uppercase;
    font-size:0.8em;
    color:#777;
    text-align:right;
}

.jsnippet .jsnippet-url {
    display:none;
}

.jeditor .jsnippet:after {
    content:'';
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3C/svg%3E");
    position:absolute;
    top:0;
    right:0;
    margin:14px;
    font-size:24px;
    width:24px;
    height:24px;
    cursor:pointer;
    text-shadow: 0px 0px 5px #fff;
}

.jsnippet * {
    -webkit-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    -ms-user-select: none;
        user-select: none;

    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}

.jeditor img {
    border:2px solid transparent;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    -ms-user-select: none;
        user-select: none;

    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}

.jeditor img:focus {
    border:2px solid #0096FD;
}

.jeditor .pdf {
    background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 512 512' style='enable-background:new 0 0 512 512;' xml:space='preserve'%3E%3Cpath style='fill:%23C30B15;' d='M511.344,274.266C511.77,268.231,512,262.143,512,256C512,114.615,397.385,0,256,0S0,114.615,0,256 c0,117.769,79.53,216.949,187.809,246.801L511.344,274.266z'/%3E%3Cpath style='fill:%2385080E;' d='M511.344,274.266L314.991,77.913L119.096,434.087l68.714,68.714C209.522,508.787,232.385,512,256,512 C391.243,512,501.976,407.125,511.344,274.266z'/%3E%3Cpolygon style='fill:%23FFFFFF;' points='278.328,333.913 255.711,77.913 119.096,77.913 119.096,311.652 '/%3E%3Cpolygon style='fill:%23E8E6E6;' points='392.904,311.652 392.904,155.826 337.252,133.565 314.991,77.913 255.711,77.913 256.067,333.913 '/%3E%3Cpolygon style='fill:%23FFFFFF;' points='314.991,155.826 314.991,77.913 392.904,155.826 '/%3E%3Crect x='119.096' y='311.652' style='fill:%23FC0F1A;' width='273.809' height='122.435'/%3E%3Cg%3E%3Cpath style='fill:%23FFFFFF;' d='M204.871,346.387c13.547,0,21.341,6.659,21.341,18.465c0,12.412-7.795,19.601-21.341,19.601h-9.611 v14.909h-13.471v-52.975L204.871,346.387L204.871,346.387z M195.26,373.858h8.93c5.904,0,9.308-2.952,9.308-8.552 c0-5.525-3.406-8.324-9.308-8.324h-8.93V373.858z'/%3E%3Cpath style='fill:%23FFFFFF;' d='M257.928,346.387c16.649,0,28.152,10.746,28.152,26.487c0,15.666-11.655,26.488-28.683,26.488 h-22.25v-52.975H257.928z M248.619,388.615h9.611c8.249,0,14.151-6.357,14.151-15.665c0-9.384-6.205-15.817-14.757-15.817h-9.006 V388.615z'/%3E%3Cpath style='fill:%23FFFFFF;' d='M308.563,356.982v12.26h23.763v10.596h-23.763v19.525h-13.471v-52.975h39.277v10.595h-25.806 V356.982z'/%3E%3C/g%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: cover;
    width:60px;
    height:60px;
}


.jloading {
    position:fixed;
    z-index:10001;
    width:100%;
    left:0;
    right:0;
    top:0;
    bottom:0;
    background-color: rgba(0,0,0,0.7);
}

.jloading::after {
    content:'';
    display:block;
    margin:0 auto;
    margin-top:50vh;
    width:40px;
    height:40px;
    border-style:solid;
    border-color:white;
    border-top-color:transparent;
    border-width:4px;
    border-radius:50%;
    -webkit-animation: spin .8s linear infinite;
    animation: spin .8s linear infinite;
}

.jloading.spin {
    background-color:transparent;
}

.jloading.spin::after {
    margin:0 auto;
    margin-top:80px;
    border-color:#aaa;
    border-top-color:transparent;
}


.jmodal {
    padding-top:50px !important;
}


.jmodal {
    position:fixed;
    top:50%;
    left:50%;
    width:60%;
    height:60%;
    -webkit-box-shadow: 0 2px 10px rgba(0,0,0,.2);
    -moz-box-shadow: 0 2px 10px rgba(0,0,0,.2);
    border:1px solid #ccc;
    background-color:#fff;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    z-index:9002;
    border-radius: 8px;
}

.jmodal:before {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    content:attr(title);
    padding:15px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-size:1.2em;
    -webkit-box-shadow: 1px 1px 3px rgba(0,0,0,.2);
            box-shadow: 1px 1px 3px rgba(0,0,0,.2);
    background-color: #fff;
    border-radius: 8px 8px 0px 0px;
}

.jmodal_content {
    padding:20px;
    overflow-y:auto;
    max-height:100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    height: -webkit-fill-available;
}
.jmodal.no-title {
    padding-top: 0 !important;
    padding-top: initial !important;
}

.jmodal.no-title:before {
    display:none;
}

.jmodal:after {
    content:'';
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3C/svg%3E");
    position:absolute;
    top:0;
    right:0;
    margin:14px;
    font-size:24px;
    width:24px;
    height:24px;
    cursor:pointer;
    text-shadow: 0px 0px 5px #fff;
}

.jmodal_fullscreen {
    width: 100% !important;
    height: 100% !important;
}

.jmodal_fullscreen {
    top: 0px;
    left: 0px;
    -webkit-transform: none;
            transform: none;
    border-radius: 0px;
}


.jmodal_backdrop {
    position: fixed;
    top: 0px;
    left: 0px;
    min-width: 100%;
    min-height: 100%;
    background-color: rgba(0,0,0,0.5);
    border: 0px;
    padding: 0px;
    z-index: 8000;
    display: none;

  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */ /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}


.jnotification {
    position: fixed;
    z-index: 10000;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px;
    bottom: 0px;
}

.jnotification-container {
    -webkit-box-shadow: 0px 2px 15px -5px rgba(0, 0, 0, 0.7);
    box-shadow: 0px 2px 15px -5px rgba(0, 0, 0, 0.7);
    padding: 12px;
    border-radius: 8px;

    background-color: #000;
    background: rgba(92,92,92,1);
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(92,92,92,1)), to(rgba(77,77,77,1)));
    background: linear-gradient(0deg, rgba(92,92,92,1) 0%, rgba(77,77,77,1) 100%);
    color: #fff;
    width: 320px;
    margin: 30px;
    padding: 20px;
}

.jnotification-close {
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3C/svg%3E");
    font-size: 20px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.jnotification-title {
    font-weight: bold;
}

.jnotification-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 5px;
}

.jnotification-header:empty {
    display: none;
}

.jnotification-image {
    margin-right: 5px;
}

.jnotification-image:empty {
    display: none;
}

.jnotification-image img {
    width: 24px;
}

.jnotification-name {
    text-transform: uppercase;
    font-size: 0.9em;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    letter-spacing: 0.1em;
}

.jnotification-error .jnotification-container {
    background: rgb(182,38,6);
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(170,41,13,1)), to(rgba(149,11,11,1)));
    background: linear-gradient(0deg, rgba(170,41,13,1) 0%, rgba(149,11,11,1) 100%);
}

@media (max-width: 800px) {
    .jnotification {
        top: 0px;
        width: 100%;
    }
    .jnotification-container {
        background: rgba(255,255,255,0.95);
        border: 1px solid #eee;
        color: #444;
        margin: 0px;
        width: auto;
        width: initial;
    }
    .jnotification-error .jnotification-container {
        background: rgba(255,255,255,0.95);
        color: #790909;
    }
    .jnotification-close {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3C/svg%3E");
    }
}

.jnotification-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.jpicker {
    cursor: pointer;
    white-space: nowrap;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline: none;
}

.jpicker-header {
    background-repeat: no-repeat;
    background-position: top 50% right 5px;
    background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='none' d='M0 0h24v24H0V0z'/%3E%3Cpath d='M7 10l5 5 5-5H7z' fill='gray'/%3E%3C/svg%3E");
    text-overflow: ellipsis;
    cursor: pointer;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: left;
    outline: none;

    line-height: 24px;
    padding: 2px;
    padding-left: 12px;
    padding-right: 35px;
    outline: none;
    border-radius: 4px;
}

.jpicker-header:hover {
    background-color: #eee;
}

.jpicker-content {
    position: absolute;
    display: none;
    -webkit-box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.2);
            box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.2);
    border-radius: 4px;
    background-color: #fff;
    padding: 4px;
    z-index: 50;
    text-align: left;
}

.jpicker-content div {
    padding: 6px;
    padding-left: 15px;
    padding-right: 15px;
}

.jpicker-focus > .jpicker-content {
    display: block;
}

.jpicker-content div:hover {
    background-color:#efefef;
}




.jprogressbar
{
    cursor:pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background:#fff;
    -webkit-tap-highlight-color: transparent;
    display: inline-block;
    box-sizing: border-box;
    cursor:pointer;
    border:1px solid #ccc;
    position:relative;
}

.jprogressbar::before {
    content:attr(data-value);
    position:absolute;
    margin:5px;
    margin-left:10px;
}

.jprogressbar-header::-webkit-input-placeholder
{
    color:#000;
}

.jprogressbar-header::-moz-placeholder
{
    color:#000;
}

.jprogressbar-header:-ms-input-placeholder
{
    color:#000;
}

.jprogressbar-header::-ms-input-placeholder
{
    color:#000;
}

.jprogressbar-header::placeholder
{
    color:#000;
}

.jprogressbar::focus {
    outline: auto 5px -webkit-focus-ring-color;
}

.jprogressbar > div {
    background-color: #eee;
    background-color: red;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    height:31px;
}

.jrating {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
}
.jrating > div {
    width:24px;
    height:24px;
    line-height:24px;
    background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z' fill='gray'/%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3C/svg%3E");
}

.jrating .jrating-over {
    background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3C/svg%3E");
    opacity: 0.7;
}

.jrating .jrating-selected {
    background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='red'%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3C/svg%3E");
}


.jslider {
    margin-top:10px;
    margin-bottom:10px;
}

.jslider-container img {
    width:60px;
    margin-right:5px;
    margin-bottom:5px;
}

.jslider-attach {
    cursor:pointer;
}

.jslider-left::before {
    position: fixed;
    left: 10px;
    content:'arrow_back_ios';
    color: #fff;
    width: 30px;
    height: 30px;
    font-family: 'Material Icons';
    font-size: 30px;
    text-shadow: 0px 0px 0px #000;
    text-align: center;
}

.jslider-right::after {
    position: fixed;
    right: 5px;
    content: 'arrow_forward_ios';
    color: #fff;
    width: 30px;
    height: 30px;
    font-family: 'Material Icons';
    font-size: 30px;
    text-shadow: 0px 0px 0px #000;
    text-align: center;
}

.jslider-close {
    width:24px;
    height:24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3C/svg%3E");
    position:fixed;
    top:15px;
    right:15px;
    display:none;
    cursor:pointer;
    z-index:3000;
}

.jslider-preview {
    position:fixed;
    left:0;
    top:0;
    width: 100%;
    min-height:100%;
    z-index:2000;
    margin:0px;
    -webkit-box-sizing:border-box;
            box-sizing:border-box;

    background-color:rgba(0,0,0,0.9);
    -webkit-transition-duration: .4s;
    transition-duration: .4s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;

    align-items: center;
}

.jslider-preview img {
    min-width:70%;
    max-width:100%;
    height:auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin:0 auto;
    vertical-align:middle;
    display:none;
}


.jtabs {
    max-width: 100vw;
    position: relative;
}

.jtabs .jtabs-headers-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.jtabs .jtabs-headers {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    overflow: hidden;
    position: relative;
}

.jtabs .jtabs-headers > div:not(.jtabs-border) {
    padding: 6px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: 1px;
    margin-right: 1px;
    margin-bottom: 1px;
    background-color: #f1f1f1;
    cursor: pointer;
    white-space: nowrap;
    text-align: center;
}

.jtabs .jtabs-headers > div.jtabs-selected {
    background-color: #e8e8e8;
    color: #000;
}

.jtabs .jtabs-headers > div > div {
    color: #555;
    width: 100%;
    overflow: hidden;
}

.jtabs .jtabs-headers i {
    display: block;
    margin: auto;
}

.jtabs .jtabs-content {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

.jtabs .jtabs-content > div {
    display: none;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

.jtabs .jtabs-content > div.jtabs-selected {
    display: block;
}

.jtabs .jtabs-border {
    position: absolute;
    height: 2px;
    background-color: #888;
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transition: all .2s cubic-bezier(0.4,0,0.2,1);
    transition: all .2s cubic-bezier(0.4,0,0.2,1);
    -webkit-transition-property: color,left,-webkit-transform;
    transition-property: color,left,-webkit-transform;
    transition-property: color,left,transform;
    transition-property: color,left,transform,-webkit-transform;
    display: none;
}

.jtabs-animation .jtabs-border {
    display: inline;
    display: initial;
}

.jtabs .jtabs-controls {
    margin: 3px;
    margin-left: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-width: 82px;
}

.jtabs .jtabs-controls > div {
    cursor: pointer;
    background-position: center;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    line-height: 24px;
}

.jtabs .jtabs-prev {
    margin-left: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='gray' width='18px' height='18px'%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z'/%3E%3C/svg%3E");
}

.jtabs .jtabs-prev.disabled {
    margin-left: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='lightgray' width='18px' height='18px'%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z'/%3E%3C/svg%3E");
}

.jtabs .jtabs-next {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='gray' width='18px' height='18px'%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z'/%3E%3C/svg%3E");
}

.jtabs .jtabs-next.disabled {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='lightgray' width='18px' height='18px'%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z'/%3E%3C/svg%3E");
}

.jtabs .jtabs-add {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24' viewBox='0 0 24 24' width='24'%3E%3Cpath d='M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-2 10h-4v4h-2v-4H7v-2h4V7h2v4h4v2z' fill='%23bbbbbb'/%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3C/svg%3E");
}

/** Modern skin **/

.jtabs.jtabs-modern .jtabs-headers > div:not(.jtabs-border) {
    padding: 10px;
    background-color: #fff;
}

.jtabs.jtabs-modern .jtabs-headers > .jtabs-selected  {
    color: #000;
}

.jtabs.jtabs-modern .jtabs-headers > .jtabs-selected .material-icons {
    color: #000;
}

.jtags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
    -ms-flex-pack: flex-start;
    -webkit-box-pack: start;
            justify-content: flex-start;
    padding: 2px;
    border: 1px solid #ccc;
} 

.jtags.jtags-empty:not(.jtags-focus)::before {
    position: absolute;
    margin: 5px;
    color: #ccc;
    content:attr(data-placeholder);
}

.jtags > div {
    padding: 3px;
    padding-left: 10px;
    padding-right: 22px;
    position: relative;
    border-radius: 1px;
    margin: 2px;
    display: block;
    outline: none;
}

.jtags > div::after {
    content: 'x';
    position: absolute;
    top: 4px;
    right: 4px;
    width: 12px;
    height: 12px;
    cursor: pointer;
    font-size: 11px;
    display: none;
}

.jtags_label {
    background-color: #eeeeee !important;
}

.jtags_label::after {
    display: inline-block !important;
}

.jtags_error::after {
    color: #fff  !important;
}

.jtags_error {
    background-color: #d93025 !important;
}

.jtags_error {
    color: #fff;
}


.jtags_search {
    position: absolute;
    display: none;
    -webkit-box-shadow: 0 1px 2px 0 rgba(60,64,67,0.302), 0 2px 6px 2px rgba(60,64,67,0.149);
            box-shadow: 0 1px 2px 0 rgba(60,64,67,0.302), 0 2px 6px 2px rgba(60,64,67,0.149);
    border: none;
    border-radius: 4px;
    width: 280px;
    padding: 8px 0;

    -webkit-box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    -webkit-transition: opacity .218s;
    transition: opacity .218s;
    background: #fff;
    border: 1px solid rgba(0,0,0,.2);
    cursor: pointer;
    margin: 0;
    min-width: 300px;
    outline: none;
    width: auto;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

.jtags_search > div {
    color: #333;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 5px 10px;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.jtags_search > div:hover {
    background-color: #e8eaed;
}

.jtags_search > div > img {
    width: 32px;
    height: 32px;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    border-radius: 16px;
    margin-right: 2px;
}

.jtags_search > div > div {
    overflow: hidden;
    text-overflow: ellipsis;
    margin-left: 2px;
    max-width: 300px;
    white-space: nowrap;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

.jtags_search .selected {
    background-color: #e8eaed;
}

.jtoolbar-container {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
}

.jtoolbar-container {
    border-radius: 2px;
    margin-bottom: 5px;
    -webkit-box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.2);
            box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.2);
}

.jtoolbar {
    cursor: pointer;
    white-space: nowrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding:4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.jtoolbar-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position:fixed;
    bottom: 0;
    margin: 0;
    left: 0;
    width: 100%;
    background: #f7f7f8;
    z-index: 1;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-shadow: 0 -1px 2px rgba(0,0,0,.1);
            box-shadow: 0 -1px 2px rgba(0,0,0,.1);
    border-radius: 0px;
}

.jtoolbar > div {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    vertical-align:middle;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
}

.jtoolbar-mobile > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}

.jtoolbar .jtoolbar-item {
    position: relative;
    text-align: center;
    margin: auto;
    padding: 2px;
    padding-left:4px;
    padding-right:4px;
}

.jtoolbar-mobile .jtoolbar-item {
    -webkit-box-flex:1;
        -ms-flex:1;
            flex:1;
} 

.jtoolbar .jtoolbar-divisor {
    width: 2px;
    height: 24px;
    padding: 0px;
    margin-left: 4px;
    margin-right: 4px;
    background-color: #f2f2f2;
}


.jtoolbar-mobile a
{
    text-decoration:none;
    display:inline-block;
}

.jtoolbar-mobile i {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
}

.jtoolbar-mobile i {
    color:#929292;
}

.jtoolbar-mobile span {
    font-size:0.7em;
    display:block;
    color:#929292;
}

.jtoolbar-mobile .jtoolbar-selected a, .jtoolbar-mobile .jtoolbar-selected i, .jtoolbar-mobile .jtoolbar-selected span {
    color:#007aff !important;
    color:var(--active-color) !important;
}

.jtoolbar-mobile .jtoolbar-selected a, .jtoolbar-mobile .jtoolbar-selected i, .jtoolbar-mobile .jtoolbar-selected span {
    background-color:transparent;
}

.jtoolbar-item {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.jtoolbar-item i {
    display: block;
    color:#333;
}

.jtoolbar-item:hover {
    background-color:#f2f2f2;
}


.jtoolbar .jpicker {
    padding-left:0px;
    padding-right:0px;
}

.jtoolbar .jpicker-header {
    height: 24px;
    line-height: 24px;
    padding: 0px;
    padding-right: 20px;
    padding-left: 4px;
    background-position: top 50% right 0px;
}

.jtoolbar .jpicker-content div {
    padding: 6px;
}

.jtoolbar-active {
    background-color:#eee;
}

.jtoolbar .fa {
    width: 24px;
    height: 24px;
    display: block;
    line-height: 24px;
}

.jtoolbar .jtoolbar-arrow {
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black' width='18px' height='18px'%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z'/%3E%3C/svg%3E");
    width: 16px;
    height: 24px;
}

.jtoolbar-floating {
    position: absolute;
    display: none;
    -webkit-box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.2);
            box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.2);
    border-radius: 4px;
    background-color: #fff;
    padding: 4px;
    z-index: 50;
    text-align: left;
}

.jtoolbar-floating > div {
    display: block;
}

.jtoolbar-arrow-selected .jtoolbar-floating {
    display: block;
}



.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.bYXDjh0dRg{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.CyMcVUyq5c{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.R2Mgjzur8R{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.R2Mgjzur8R>i,.R2Mgjzur8R>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.zMmL32gc5v{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.wpBvOAkTvi{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.XI3en5Fr-c{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.qgLfc7Glvv{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.LuVWnFl17I{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.p0ESsyJ1gf{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._5wkIMXLuaV{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}._5wkIMXLuaV .OHZbfuDX5y{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}._5wkIMXLuaV .OHZbfuDX5y>span{color:rgba(0,0,0,0.65)}.Xi3g\+I21et{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.Xi3g\+I21et .BR7fe545Oo{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.Xi3g\+I21et .BR7fe545Oo>span{font-size:8px}.cBhscC0ByY .ant-popover-inner-content{padding:0}.cBhscC0ByY .ant-popover-arrow{border-color:#475365 !important}.cBhscC0ByY .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.r9fBjV5JkU{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.ve4HI4SPLk{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.ve4HI4SPLk .LtoE9o\+4vz{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.umKpdCFNpP{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.awxoFvf5o5{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.awxoFvf5o5{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.IqEFrwjuIY{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.OKl-AFsXO- html,.OKl-AFsXO- body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.OKl-AFsXO- body,.OKl-AFsXO- div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.OKl-AFsXO- textarea{border:none !important;padding-left:0 !important}.OKl-AFsXO- table,.OKl-AFsXO- tr,.OKl-AFsXO- td{page-break-inside:avoid}.OKl-AFsXO- div{page-break-inside:avoid}.OKl-AFsXO- thead{display:table-header-group}.OKl-AFsXO- tfoot{display:table-footer-group}.OKl-AFsXO- *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.OKl-AFsXO- .JhI7P4XjxV,.OKl-AFsXO- .no-print,.OKl-AFsXO- .react-resizable-handle,.OKl-AFsXO- .fc-whiteboard-toolbar,.OKl-AFsXO- .ant-modal-root,.OKl-AFsXO- .ant-alert,.OKl-AFsXO- .vbIuckRM3X,.OKl-AFsXO- .faFSYFQSfo{display:none !important}.OKl-AFsXO- .NnDr2cMuO5{display:none !important}}.ZWW1KrBxMA .jupload img{width:200px !important;height:200px !important}.ZWW1KrBxMA .jexcel_container,.ZWW1KrBxMA .jexcel_content,.ZWW1KrBxMA .jexcel{width:100%}.ZWW1KrBxMA .jexcel colgroup>col:first-child{width:20px !important}.ZWW1KrBxMA .jexcel .editor .jclose:after{content:'x'}.ZWW1KrBxMA .jexcel>tbody>tr>td,.ZWW1KrBxMA .jexcel>thead>tr>td{border-left:none;border-right:none;font-size:14px;white-space:pre-wrap}.ZWW1KrBxMA .jexcel>tbody>tr>td.readonly{color:#000;word-break:break-all}.ZWW1KrBxMA .jexcel>tbody>tr>td:last-child,.ZWW1KrBxMA .jexcel>thead>tr>td:last-child{border-right:none}
._8KfQpTsORg .ant-table-tbody>tr>td{border-bottom:none !important}._8KfQpTsORg .ant-table-tbody{page-break-inside:auto}._8KfQpTsORg .KhZ-dSwPws:first-child{page-break-after:always}._8KfQpTsORg .KhZ-dSwPws{position:relative;page-break-before:avoid;page-break-after:auto}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.GjEMiaHTpZ{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.jz9-syXdTO{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}._0IHsMeJyQh{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}._0IHsMeJyQh>i,._0IHsMeJyQh>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.sk5NuypHkn{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.k65FdEvIof{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}._5xBgKhB03\+{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.sRozKl594Q{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}._8HO5rGHOvN{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.CE8S0gzzm7{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.CFrcRs7AXv{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.CFrcRs7AXv ._76NY3Xd5zY{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.CFrcRs7AXv ._76NY3Xd5zY>span{color:rgba(0,0,0,0.65)}.oXD3h8kblD{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.oXD3h8kblD .fHRAV7iLjm{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.oXD3h8kblD .fHRAV7iLjm>span{font-size:8px}.mstoRFfnvT .ant-popover-inner-content{padding:0}.mstoRFfnvT .ant-popover-arrow{border-color:#475365 !important}.mstoRFfnvT .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.erTaxYO7n5{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.pzd8VW8vWQ{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.pzd8VW8vWQ .Q96rS9tBrO{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}._9lZJiP1EEK{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.uFbb4Dta1X{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.uFbb4Dta1X{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.E8v8uBkzKy{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.GRF9bWeeji html,.GRF9bWeeji body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.GRF9bWeeji body,.GRF9bWeeji div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.GRF9bWeeji textarea{border:none !important;padding-left:0 !important}.GRF9bWeeji table,.GRF9bWeeji tr,.GRF9bWeeji td{page-break-inside:avoid}.GRF9bWeeji div{page-break-inside:avoid}.GRF9bWeeji thead{display:table-header-group}.GRF9bWeeji tfoot{display:table-footer-group}.GRF9bWeeji *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.GRF9bWeeji .XvaijziAiv,.GRF9bWeeji .no-print,.GRF9bWeeji .react-resizable-handle,.GRF9bWeeji .fc-whiteboard-toolbar,.GRF9bWeeji .ant-modal-root,.GRF9bWeeji .ant-alert,.GRF9bWeeji .dB5t-CJbja,.GRF9bWeeji .L\+g2bjJzau{display:none !important}.GRF9bWeeji ._3dLUT1WzeR{display:none !important}}@media print{html,body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}body,div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}textarea{border:none !important;padding-left:0 !important}table,tr,td{page-break-inside:avoid}div{page-break-inside:avoid}thead{display:table-header-group}tfoot{display:table-footer-group}*{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.XvaijziAiv,.no-print,.react-resizable-handle,.fc-whiteboard-toolbar,.ant-modal-root,.ant-alert,.dB5t-CJbja,.L\+g2bjJzau{display:none !important}._3dLUT1WzeR{display:none !important}}.ZzVcopcQA7{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:-webkit-fit-content;height:-moz-fit-content;height:fit-content;background-color:#eff1f7;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;font-size:3mm}.ZzVcopcQA7 .ant-avatar-image>img{-o-object-fit:contain !important;object-fit:contain !important}.ZzVcopcQA7 .ant-descriptions-row>th,.ZzVcopcQA7 .ant-descriptions-row>td{padding-bottom:0 !important}.ZzVcopcQA7 .ant-descriptions-title{font-size:3.5mm}.ZzVcopcQA7 .ant-descriptions-item-label{font-size:3mm}.ZzVcopcQA7 .ant-input[disabled]{border:none;background-color:#fff;color:rgba(0,0,0,0.75);font-size:3mm;padding:0;margin:0}.ZzVcopcQA7 .ant-divider-inner-text{font-size:3.5mm}.ZzVcopcQA7 .ant-divider-horizontal.ant-divider-with-text{font-size:3.5mm;margin:0}.ZzVcopcQA7 .ant-divider-horizontal{margin:2mm 0}.ZzVcopcQA7 .ant-table-thead>tr>th,.ZzVcopcQA7 .ant-table-tbody>tr>td,.ZzVcopcQA7 .ant-table tfoot>tr>th,.ZzVcopcQA7 .ant-table tfoot>tr>td{padding:0}.ZzVcopcQA7 .ant-divider-horizontal .ant-divider-with-text{page-break-after:avoid;page-break-inside:avoid}.ZzVcopcQA7 div{page-break-after:avoid;page-break-inside:avoid}.ZzVcopcQA7 tbody{page-break-after:avoid;page-break-inside:avoid}.ZzVcopcQA7 .ant-table-content{page-break-after:avoid;page-break-inside:avoid}.ZzVcopcQA7 table{page-break-after:avoid;page-break-inside:avoid;border:none}.ZzVcopcQA7 tr{page-break-after:avoid;page-break-inside:avoid}.ZzVcopcQA7 .jexcel>thead>tr>td{font-size:3mm}.ZzVcopcQA7 .jexcel>tbody>tr>td.readonly{font-size:3mm}.ZzVcopcQA7 .jexcel>tbody>tr>td>img{width:16mm !important;height:16mm !important}.ZzVcopcQA7 .ant-descriptions-item-content{font-size:3mm;line-height:5mm}.ZzVcopcQA7 .ant-descriptions-header{margin-bottom:2mm}.ZzVcopcQA7 .ant-table-cell{max-width:150px}.ZzVcopcQA7 .ant-avatar-image{width:16mm !important;height:16mm !important}.ZzVcopcQA7 colgroup{display:none}.ZzVcopcQA7 .ant-table .ant-table-container:before{display:none}.ZzVcopcQA7 .ant-table-wrapper:before{display:none}@media print{.ZzVcopcQA7{background-color:#fff}}.gRzTpVRIkg{width:210mm;background:white;padding:5mm 5mm 0 5mm}.gRzTpVRIkg .ant-page-header{background-color:rgba(0,0,0,0.45) !important}.gRzTpVRIkg .ant-page-header-heading-title{color:white !important}.a6pYdA5HpY{color:rgba(0,0,0,0.65)}.a6pYdA5HpY .wo0UVBVTeF{color:rgba(0,0,0,0.75)}.a6pYdA5HpY .wo0UVBVTeF .wL3alqMR0r{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.a6pYdA5HpY .wo0UVBVTeF .J\+0Wzo\+o1h{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:100%;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.a6pYdA5HpY .BCYRTnC0a5{margin:2mm}.a6pYdA5HpY .BCYRTnC0a5 .ant-statistic-content-value{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-line-pack:center;align-content:center}.a6pYdA5HpY .BCYRTnC0a5 .TBWKWY9WYJ{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:1.7mm;font-size:3.5mm}.OVXPsd9PZw .ant-table-cell{font-size:3mm !important}.XvaijziAiv{position:fixed;right:5vw;bottom:10vh;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.XvaijziAiv button{margin-bottom:3mm}.\+cYklia5Pv{overflow:hidden}
.react-resizable {
  position: relative;
}
.react-resizable-handle {
  position: absolute;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-origin: content-box;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2IDYiIHN0eWxlPSJiYWNrZ3JvdW5kLWNvbG9yOiNmZmZmZmYwMCIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSI2cHgiIGhlaWdodD0iNnB4Ij48ZyBvcGFjaXR5PSIwLjMwMiI+PHBhdGggZD0iTSA2IDYgTCAwIDYgTCAwIDQuMiBMIDQgNC4yIEwgNC4yIDQuMiBMIDQuMiAwIEwgNiAwIEwgNiA2IEwgNiA2IFoiIGZpbGw9IiMwMDAwMDAiLz48L2c+PC9zdmc+');
  background-position: bottom right;
  padding: 0 3px 3px 0;
}
.react-resizable-handle-sw {
  bottom: 0;
  left: 0;
  cursor: sw-resize;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.react-resizable-handle-se {
  bottom: 0;
  right: 0;
  cursor: se-resize;
}
.react-resizable-handle-nw {
  top: 0;
  left: 0;
  cursor: nw-resize;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.react-resizable-handle-ne {
  top: 0;
  right: 0;
  cursor: ne-resize;
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}
.react-resizable-handle-w,
.react-resizable-handle-e {
  top: 50%;
  margin-top: -10px;
  cursor: ew-resize;
}
.react-resizable-handle-w {
  left: 0;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.react-resizable-handle-e {
  right: 0;
  -webkit-transform: rotate(315deg);
          transform: rotate(315deg);
}
.react-resizable-handle-n,
.react-resizable-handle-s {
  left: 50%;
  margin-left: -10px;
  cursor: ns-resize;
}
.react-resizable-handle-n {
  top: 0;
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}
.react-resizable-handle-s {
  bottom: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.fc-whiteboard-toolbar {
  height: 36px;
  background: rgba(255, 255, 255, 1);
  -webkit-box-shadow: 0px 2px 9px 0px rgba(194, 185, 187, 0.29);
          box-shadow: 0px 2px 9px 0px rgba(194, 185, 187, 0.29);
  border-radius: 13px;
  opacity: 0.9;
  border: 1px solid rgba(230, 236, 247, 1);
  padding: 0 8px;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.fc-whiteboard-toolbar-button,
.fc-whiteboard-toolbar-logo a {
  display: inline-block;
  margin: 2px;
  padding: 3px;
  cursor: pointer;
  width: 20px;
  height: 20px;
  border-radius: 2px;
  border-bottom: transparent solid 1px;
  border-right: transparent solid 1px;

  fill: #333333;

  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
}

.fc-whiteboard-toolbar-separator {
  width: 0px;
  height: 20px;
  margin: 5px 5px;
  border: 1px solid #cad3df;
}

.fc-whiteboard-toolbar-button:hover,
.fc-whiteboard-toolbar-logo a:hover {
  background-color: #eee;
  background: radial-gradient(#eee, #ccc);
  fill: #ff8080;
}

.fc-whiteboard-toolbar-button svg {
  height: 16px;
  width:16px
}

.fc-whiteboard-indicator-container {
  font-size: 13px;
  line-height: 27px;
  height: 27px;
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 2;
}

.fcw-board-holder {
  pointer-events: none;
}

.fc-whiteboard-toolbar {
  pointer-events: auto;
}

.fc-whiteboard-logo {
  display: inline-block;
  margin: 0px;
  padding: 0px;

  fill: #333333;
}

.fc-whiteboard-logo a {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
  padding: 3px;
  width: 20px;
  height: 20px;
}

.fc-whiteboard-logo a:hover {
  fill: #ff8080;
}

.fc-whiteboard-text-editor {
  position: absolute;
  z-index: 20000;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  width: 400px;
  height: 100px;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  pointer-events: auto;


}

.fc-whiteboard-text-editor textarea {
  width: 100%;
  height: 100%;
}

.fc-whiteboard-text-editor .fc-whiteboard-text-editor-button-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 50%;
  min-width: 50px;
  max-width: 500px;
  padding-top: 10px;
  right: 8px;
  bottom: 8px;

  position: absolute;
}

.fc-whiteboard-text-editor .fc-whiteboard-text-editor-button {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0px;
  margin-left: 15px;
  width: 16px;
  height: 16px;

  cursor: pointer;

  fill: #888888;
}

.fc-whiteboard-text-editor .fc-whiteboard-text-editor-button:hover {
  fill: #ff8080;
}

.fcw-page img{
    width: 100%;
    height: 100%;
}

.fcw-board {
  position: relative;
}

.fcw-board-imgs,
.fcw-board-pages,
.fcw-page {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.fcw-board-imgs > div,
.fcw-board-imgs > div > div {
  height: 100%;
}

.fcw-board-img {
  width: 100%;
  height: 100%;
}

.fcw-board-img-wrapper {
  background-image: url(https://i.postimg.cc/RZwf0MRw/image.png);
  background-size: contain;
  background-position: center;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
}

.fcw-board-flip-arrow {
  height: 20px;
  width: 20px;
  cursor: pointer;
}

.fcw-board-controller {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50px;
  height: 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: -30px;
  background-color: #ccc;
  padding: 0 5px;
  margin: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.hjKuIzhSSS{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.AL46lPwI\+P{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.vr1bdq5qPV{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.vr1bdq5qPV>i,.vr1bdq5qPV>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.vAVeofK3Yq{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.rxoF\+HiexT{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.pRbmUfuv7o{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.H\+NzvEJMtG{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.cAxH0U\+lWK{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.dbY63vzr7o{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.-XARPJGJIf{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.-XARPJGJIf .KHwmSfz0Xk{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.-XARPJGJIf .KHwmSfz0Xk>span{color:rgba(0,0,0,0.65)}.ZSvrAerdIu{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.ZSvrAerdIu ._2Rj9Gls0Eq{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.ZSvrAerdIu ._2Rj9Gls0Eq>span{font-size:8px}.Gue\+14fqKY .ant-popover-inner-content{padding:0}.Gue\+14fqKY .ant-popover-arrow{border-color:#475365 !important}.Gue\+14fqKY .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.atVvZwztFJ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.j7VYe0u5dW{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.j7VYe0u5dW .wbqhqDsn-h{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}._9Twp7u\+BI1{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.mH1cXfgbMo{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.mH1cXfgbMo{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}._7\+1ucZePZK{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.uJxMDaT6sP html,.uJxMDaT6sP body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.uJxMDaT6sP body,.uJxMDaT6sP div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.uJxMDaT6sP textarea{border:none !important;padding-left:0 !important}.uJxMDaT6sP table,.uJxMDaT6sP tr,.uJxMDaT6sP td{page-break-inside:avoid}.uJxMDaT6sP div{page-break-inside:avoid}.uJxMDaT6sP thead{display:table-header-group}.uJxMDaT6sP tfoot{display:table-footer-group}.uJxMDaT6sP *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.uJxMDaT6sP .H6GO8GxRYH,.uJxMDaT6sP .no-print,.uJxMDaT6sP .react-resizable-handle,.uJxMDaT6sP .fc-whiteboard-toolbar,.uJxMDaT6sP .ant-modal-root,.uJxMDaT6sP .ant-alert,.uJxMDaT6sP .jm9VlWJn18,.uJxMDaT6sP ._1w2zJvTxNa{display:none !important}.uJxMDaT6sP .lrxaEJJu1Q{display:none !important}}@media print{html,body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}body,div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}textarea{border:none !important;padding-left:0 !important}table,tr,td{page-break-inside:avoid}div{page-break-inside:avoid}thead{display:table-header-group}tfoot{display:table-footer-group}*{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.H6GO8GxRYH,.no-print,.react-resizable-handle,.fc-whiteboard-toolbar,.ant-modal-root,.ant-alert,.jm9VlWJn18,._1w2zJvTxNa{display:none !important}.lrxaEJJu1Q{display:none !important}}.AkTwvASEYI{position:relative}._3Jm1rmXrcd{page-break-before:always}.H6GO8GxRYH{position:fixed;right:5vw;bottom:10vh;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;z-index:99999999}.H6GO8GxRYH .ant-btn-circle{margin-bottom:16px}
.saMvZAewfY{position:relative;background-color:transparent;border:1px solid rgba(0,0,0,0.75)}.AbU7P3VGvF{width:100%;height:32px;font-size:14px;color:rgba(0,0,0,0.75);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.pVrRSygKmk{width:100%;height:-webkit-fit-content;height:-moz-fit-content;height:fit-content;display:-webkit-box;display:-ms-flexbox;display:flex}.YWupjYIdye{border-bottom:1px solid rgba(0,0,0,0.75);border-right:1px solid rgba(0,0,0,0.75);-webkit-box-sizing:border-box;box-sizing:border-box}.DJVbpewauU{border-right:1px solid rgba(0,0,0,0.75);-webkit-box-sizing:border-box;box-sizing:border-box}.zUng5cBxx-{border-bottom:1px solid rgba(0,0,0,0.75);-webkit-box-sizing:border-box;box-sizing:border-box}._4ETiJfAgdf{border-top:1px solid rgba(0,0,0,0.75);-webkit-box-sizing:border-box;box-sizing:border-box}.Xye3JyL1Du{border:none;-webkit-box-sizing:border-box;box-sizing:border-box}._6acjFSgNHG{width:100%;height:32px;line-height:32px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.rLsMJLDn4l{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.kJK176sM\+z{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}._6CQEj41x2s{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}._6CQEj41x2s>i,._6CQEj41x2s>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.zmGt3CsEi3{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.\+NW8na1CRp{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}._8tNoI8OwRe{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.IbIbNy-AK4{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.c52zKM5NEc{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.lLI-yRZsKZ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._38bqgwd\+Oi{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}._38bqgwd\+Oi .foQQfJ2Xiz{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}._38bqgwd\+Oi .foQQfJ2Xiz>span{color:rgba(0,0,0,0.65)}.wieBI0jzdp{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.wieBI0jzdp .E4FKZaBtXD{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.wieBI0jzdp .E4FKZaBtXD>span{font-size:8px}.Lp-0WjFw6d .ant-popover-inner-content{padding:0}.Lp-0WjFw6d .ant-popover-arrow{border-color:#475365 !important}.Lp-0WjFw6d .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}._84EdjKYGms{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.VK-V7ToQvy{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.VK-V7ToQvy .N-fQZQ7fiw{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.m3l6g-376Q{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}._7iBEbI6NTq{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{._7iBEbI6NTq{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.DretwewZgs{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.BMuUN77CwE html,.BMuUN77CwE body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.BMuUN77CwE body,.BMuUN77CwE div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.BMuUN77CwE textarea{border:none !important;padding-left:0 !important}.BMuUN77CwE table,.BMuUN77CwE tr,.BMuUN77CwE td{page-break-inside:avoid}.BMuUN77CwE div{page-break-inside:avoid}.BMuUN77CwE thead{display:table-header-group}.BMuUN77CwE tfoot{display:table-footer-group}.BMuUN77CwE *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.BMuUN77CwE .GLvvgIT8Fr,.BMuUN77CwE .no-print,.BMuUN77CwE .react-resizable-handle,.BMuUN77CwE .fc-whiteboard-toolbar,.BMuUN77CwE .ant-modal-root,.BMuUN77CwE .ant-alert,.BMuUN77CwE .I2LFRgx36f,.BMuUN77CwE .FpemBYZom7{display:none !important}.BMuUN77CwE ._5FZKaRibt6{display:none !important}}:root{--grid-layout-gap:2mm;--grid-column-count:4;--gap-count:calc(var(--grid-column-count) - 1);--total-gap-width:calc(var(--gap-count) * var(--grid-layout-gap));--grid-item--max-width:calc((100% - var(--total-gap-width)) / var(--grid-column-count))}@media print{html,body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}body,div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}textarea{border:none !important;padding-left:0 !important}table,tr,td{page-break-inside:avoid}div{page-break-inside:avoid}thead{display:table-header-group}tfoot{display:table-footer-group}*{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.GLvvgIT8Fr,.no-print,.react-resizable-handle,.fc-whiteboard-toolbar,.ant-modal-root,.ant-alert,.I2LFRgx36f,.FpemBYZom7{display:none !important}._5FZKaRibt6{display:none !important}}.jln4-GZgv8{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:-webkit-fit-content;height:-moz-fit-content;height:fit-content;background-color:#eff1f7;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;color:rgba(0,0,0,0.75);font-size:3.5mm}.jln4-GZgv8 .ant-avatar-image>img{-o-object-fit:contain !important;object-fit:contain !important}.jln4-GZgv8 .ant-descriptions-row>th,.jln4-GZgv8 .ant-descriptions-row>td{padding-bottom:2mm}.jln4-GZgv8 .ant-descriptions-title{font-size:6mm;margin-bottom:2mm}.jln4-GZgv8 .ant-divider-horizontal.ant-divider-with-text{font-size:4.5mm;margin:2.2mm 0}.UB6AZQgdY8{background:white;color:rgba(0,0,0,0.65);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.UB6AZQgdY8 .ant-page-header{background-color:rgba(0,0,0,0.45) !important}.UB6AZQgdY8 .ant-page-header-heading-title{color:white !important}.UB6AZQgdY8 .react-resizable-handle{zoom:1.5}.UB6AZQgdY8 .Gzs1Y5R2js{color:#000}.UB6AZQgdY8 .Gzs1Y5R2js .aW8vqOrgKK{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.UB6AZQgdY8 .Gzs1Y5R2js .aW8vqOrgKK span{margin-top:1mm;font-size:3mm}.UB6AZQgdY8 .Gzs1Y5R2js .hQapwNu73g{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;font-size:4mm;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;font-weight:bold;color:rgba(0,0,0,0.75)}.UB6AZQgdY8 .FpemBYZom7{font-size:6mm;position:absolute;-webkit-transform:translate(-50%);transform:translate(-50%);left:50%;top:50%;cursor:pointer;z-index:999999}.UB6AZQgdY8 .jiFfGtowk7{border:1px solid;page-break-before:avoid;page-break-after:avoid;page-break-inside:auto}.ggxbkZGIPq{background-color:#eff1f7;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;font-weight:bold}._5FZKaRibt6{background-color:#eff1f7;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;font-weight:bold}.Fi11Bwiv-x{width:100%}._9KD8puv2\+6:last-child{margin-bottom:0}.bOKsLKyCeP{width:100%;color:rgba(0,0,0,0.75);text-align:left;padding:1.5mm 4mm;border-bottom:1px solid;padding-left:1rem;font-weight:400}.\+V6qxPqvWR{font-size:3.5mm;padding:16px;min-height:60px}.j4-cD7N758{page-break-inside:avoid !important;page-break-after:auto !important;page-break-before:auto !important}.j4-cD7N758{padding:2mm;width:100%;display:grid;grid-gap:2mm;grid-gap:var(--grid-layout-gap);position:relative;-webkit-box-sizing:border-box;box-sizing:border-box}.VeCIK5M2n7{-webkit-box-flex:1;-ms-flex:1;flex:1;width:100%}.JPB-Q50rz1{position:relative}.ulNkJoyFQU{position:absolute;top:-3.5mm;right:0;color:#bebebe}.o2bMccIfAV{position:absolute;top:-4.9mm}.fWcj3Halht{font-weight:bold;word-wrap:break-word}._8wBEWzOkPx{margin-bottom:4px}._8wBEWzOkPx:last-child{margin-bottom:0}.b0kapyGWR3{color:#3f3f3f;font-weight:200}.IzbOhUmG5c{font-weight:bold}.PQz6FaPcb7{display:inline-block;width:6px;height:6px;border-radius:50%;background-color:#3f3f3f;margin-right:8px;vertical-align:middle;position:relative;top:-1px}._5KFD9Eu8ZF{display:inline-block;margin-left:8px;color:#0f0f0f;border-radius:4px;padding:2px;background-color:#f0f2f5;border:1px solid #979797;cursor:default}.hw9-Ig49S6{color:#595959}.aZ7m10fxog{color:#0f0f0f}.McPSw8EEyM{display:grid;grid-template-columns:repeat(2, 1fr);grid-gap:16px;gap:16px;width:100%}.McPSw8EEyM[\:has\(\%3E\%20\:only-child\)]{grid-template-columns:1fr}.McPSw8EEyM:has(> :only-child){grid-template-columns:1fr}.McPSw8EEyM>div:only-child,.McPSw8EEyM>.NHviJ-PHaW:only-child{grid-column:1;width:100%}.NHviJ-PHaW{border:1px solid;overflow:hidden;background:#fff}
.U-aTtCTSFq{position:relative;width:100%;padding:24px;padding-top:0}.U-aTtCTSFq .v4GJdCNv37{width:100%;margin-bottom:24px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.U-aTtCTSFq .v4GJdCNv37 .tgb0J4ay6v{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.U-aTtCTSFq .WJhqsgbkmB{width:100%;margin-bottom:24px;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.U-aTtCTSFq .WJhqsgbkmB .UDJzyd6Ocj{width:100%;height:38px;background-color:#f7f7f7;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:0 24px;border-bottom:1px solid #d8d8d8}.U-aTtCTSFq .WJhqsgbkmB .UDJzyd6Ocj .QOFjQ3vNxg{width:300px}.U-aTtCTSFq .WJhqsgbkmB .tmCs3ULxZG{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;border:1px solid #f7f7f7;padding-bottom:24px}.U-aTtCTSFq .WJhqsgbkmB .tmCs3ULxZG .oj2gMARhd0{width:100px;margin:24px 0 0 24px}.U-aTtCTSFq .WJhqsgbkmB .tmCs3ULxZG .oj2gMARhd0 .nHxvvvL-BF{width:100%}.U-aTtCTSFq .WJhqsgbkmB .tmCs3ULxZG .oj2gMARhd0 .nHxvvvL-BF .fRLekWKlDp{width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.XAhcM6hcHx{position:relative}
.Q9zcoCkQKW{position:relative;background-color:black}
.uqXQ4EwFLc{position:relative;width:100%;height:100%;padding-top:16px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.qPN-U1A0ja{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.qRPxEO1RpS{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.N5DVcBdIWS{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.N5DVcBdIWS>i,.N5DVcBdIWS>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.eXeBIPZyLi{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.-AouK86fdz{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.Q-7VuPfo-L{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.HNadTP9MM5{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.tRmENvmGLm{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.UEUZogy9iA{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.OtDuXDFkzx{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.OtDuXDFkzx .UuFBm5T26j{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.OtDuXDFkzx .UuFBm5T26j>span{color:rgba(0,0,0,0.65)}.QcnHYO5Bt9{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.QcnHYO5Bt9 .aWjNpaVvZV{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.QcnHYO5Bt9 .aWjNpaVvZV>span{font-size:8px}.VXk-ErElvr .ant-popover-inner-content{padding:0}.VXk-ErElvr .ant-popover-arrow{border-color:#475365 !important}.VXk-ErElvr .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}._8cIv\+lTDyZ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.LBb6qE\+mr1{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.LBb6qE\+mr1 .ltWfHJlBYf{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.pk0O0lOZbI{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.buSkKTj87V{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.buSkKTj87V{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.XmAG9zkqdm{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.BhKO0P4hI9 html,.BhKO0P4hI9 body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.BhKO0P4hI9 body,.BhKO0P4hI9 div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.BhKO0P4hI9 textarea{border:none !important;padding-left:0 !important}.BhKO0P4hI9 table,.BhKO0P4hI9 tr,.BhKO0P4hI9 td{page-break-inside:avoid}.BhKO0P4hI9 div{page-break-inside:avoid}.BhKO0P4hI9 thead{display:table-header-group}.BhKO0P4hI9 tfoot{display:table-footer-group}.BhKO0P4hI9 *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.BhKO0P4hI9 .M6xqtEXPdc,.BhKO0P4hI9 .no-print,.BhKO0P4hI9 .react-resizable-handle,.BhKO0P4hI9 .fc-whiteboard-toolbar,.BhKO0P4hI9 .ant-modal-root,.BhKO0P4hI9 .ant-alert,.BhKO0P4hI9 .u2ZAVh4opl,.BhKO0P4hI9 .ean0Uxzaqa{display:none !important}.BhKO0P4hI9 .Yw\+8rFAMlq{display:none !important}}._7cyUr-k-g-{height:100%;width:100%;padding:24px;background:white;overflow:auto}._7cyUr-k-g- .ant-card-body{padding:0;height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._7cyUr-k-g- .ant-card-meta{padding:28px 24px;height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}._7cyUr-k-g- .ant-card-meta-detail{margin-left:8px}.oom8ymj6BS{height:-webkit-fit-content !important;height:-moz-fit-content !important;height:fit-content !important}.oom8ymj6BS{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;overflow:hidden}.oLPWbh6bLc{max-height:150px !important}.oLPWbh6bLc{width:225px;margin:0 24px 18px 0;-webkit-transition:all .3s;transition:all .3s}.oLPWbh6bLc .HL17IYrxZS{height:47px;line-height:47px;text-align:center;background-color:#fafafa;color:rgba(0,0,0,0.45);border-top:1px solid #f0f0f0}.oLPWbh6bLc:hover{cursor:pointer;border-color:transparent;-webkit-transform:translateY(-8px);transform:translateY(-8px);background-color:#6874e2;-webkit-box-shadow:6px 12px 12px -2px rgba(0,0,0,0.16),0 3px 6px 0 rgba(0,0,0,0.12),0 5px 12px 4px rgba(0,0,0,0.09);box-shadow:6px 12px 12px -2px rgba(0,0,0,0.16),0 3px 6px 0 rgba(0,0,0,0.12),0 5px 12px 4px rgba(0,0,0,0.09)}.oLPWbh6bLc:hover .HL17IYrxZS{color:#fff;background-color:#6874e2;border-top:1px solid #6874e2}.oLPWbh6bLc:hover .eXdFGThIiF{color:#fff !important}._6\+2ErrQ-3i{height:-webkit-fit-content !important;height:-moz-fit-content !important;height:fit-content !important}._6\+2ErrQ-3i{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;padding:24px;margin-bottom:16px}
:root{--brand-1:#ffb300;--brand-2:#ffc233;--brand-3:#ffe48c;--black:#000;--white:#fff;--gray-1:rgba(0,0,0,0.87);--gray-2:rgba(0,0,0,0.54);--gray-3:rgba(0,0,0,0.4);--gray-4:rgba(0,0,0,0.26);--gray-5:rgba(0,0,0,0.2);--gray-6:rgba(0,0,0,0.1);--gray-7:rgba(0,0,0,0.05);--gray-8:rgba(0,0,0,0.03);--light-1:#f2f4f5;--light-2:#fafafa;--blue:#39f;--gray-dark:#333;--green:#62d957;--orange:#f70;--red:#f56262;--yellow:#ffc233;--yellow-light:#fff9db;--shadow-1:0 1.5px 3px 0 rgba(0,0,0,0.06),0 1.5px 3px 0 rgba(0,0,0,0.08);--shadow-2:0 1.5px 2px 0 rgba(0,0,0,0.04),0 1.5px 2px 0 rgba(0,0,0,0.12);--shadow-3:0 6px 6px 0 rgba(0,0,0,0.03),0 4px 2px 0 rgba(0,0,0,0.04);--shadow-4:0 8px 8px 0 rgba(0,0,0,0.03),0 6px 3px 0 rgba(0,0,0,0.02);--shadow-5:0 10px 10px 0 rgba(0,0,0,0.03),0 8px 4px 0 rgba(0,0,0,0.02);--safe-top:0px;--safe-bottom:0px;background-color:#f2f4f5;background-color:var(--light-1)}@supports (top:constant(safe-area-inset-top)){:root{--safe-top:constant(safe-area-inset-top);--safe-bottom:constant(safe-area-inset-bottom)}}@supports (top:env(safe-area-inset-top)){:root{--safe-top:env(safe-area-inset-top);--safe-bottom:env(safe-area-inset-bottom)}}*,:after,:before{-webkit-box-sizing:border-box;box-sizing:border-box}html{line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}body{margin:0;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,Noto Color Emoji;font-size:14px;font-weight:400;line-height:1.5;color:rgba(0,0,0,0.87);color:var(--gray-1)}main{display:block}hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin:0;font-weight:400}ol,p,ul{margin:0}ol,ul{padding:0;list-style-type:none}a{background-color:transparent;color:#39f;color:var(--blue);text-decoration:none}b,strong{font-weight:bolder}small{font-size:80%}img{border-style:none}img,svg{vertical-align:middle}svg{overflow:hidden}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}textarea{overflow:auto;resize:none}[type=checkbox],[type=radio]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none!important}[tabindex="-1"]:focus{outline:0!important}:focus,button:focus{outline:0}.S--invisible{position:absolute;clip:rect(0,0,0,0)}.Avatar{display:inline-block;overflow:hidden;border-radius:50%}.Avatar img{display:block;width:36px;height:36px;-o-object-fit:cover;object-fit:cover}.Avatar--sm img{width:24px;height:24px}.Avatar--lg img{width:40px;height:40px}.Avatar--square{border-radius:4px}.Backdrop{position:fixed;bottom:0;left:0;right:0;z-index:100;-webkit-transition:.3s;transition:.3s;width:100vw;height:100vh;background:rgba(0,0,0,0.2);background:var(--gray-5);opacity:0}.Backdrop.active{opacity:1}.Bubble{max-width:680px;min-width:1px;background:#fff;background:var(--white);border-radius:4px 20px 20px 20px}.Bubble.text{padding:5px 12px;line-height:1.7;white-space:pre-wrap;word-wrap:break-word;word-wrap:break-word}.Bubble.image img{display:block;max-width:100%;height:auto;border-radius:inherit}.Bubble.typing{padding:8px 16px}.Btn{display:inline-block;margin:0;padding:5px 15px;border:1px solid rgba(0,0,0,0.1);border:1px solid var(--gray-6);border-radius:16px;background:#fff;background:var(--white);color:rgba(0,0,0,0.87);color:var(--gray-1);font-weight:400;font-size:14px;line-height:1.5;font-family:inherit;text-align:center;vertical-align:middle;white-space:nowrap;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;-webkit-user-select:none;-ms-user-select:none;-moz-user-select:none;user-select:none}.Btn:not(:disabled){cursor:pointer}.Btn:focus{outline:0}.Btn:disabled{pointer-events:none;border-color:rgba(0,0,0,0.1);border-color:var(--gray-6);background-color:transparent;color:rgba(0,0,0,0.26);color:var(--gray-4)}.Btn--primary{border-color:transparent;background:-webkit-gradient(linear,left top, right top,from(#ffc233),to(#ffb300));background:linear-gradient(90deg,#ffc233,#ffb300);background:-webkit-gradient(linear,left top, right top,from(var(--brand-2)),to(var(--brand-1)));background:linear-gradient(90deg,var(--brand-2),var(--brand-1));color:#fff;color:var(--white)}.Btn--primary:disabled{background:rgba(0,0,0,.06);color:rgba(0,0,0,0.26);color:var(--gray-4)}.Btn--text{padding:0;border:0;background:transparent;color:#39f;color:var(--blue);vertical-align:baseline;vertical-align:initial}.Btn--float{border:0;background:#fff;background:var(--white);-webkit-box-shadow:0 8px 8px 0 rgba(0,0,0,0.03),0 6px 3px 0 rgba(0,0,0,0.02);box-shadow:0 8px 8px 0 rgba(0,0,0,0.03),0 6px 3px 0 rgba(0,0,0,0.02);-webkit-box-shadow:var(--shadow-4);box-shadow:var(--shadow-4);color:#ffb300;color:var(--brand-1)}.Btn--float:active,.Btn--float:hover{background:rgba(0,0,0,.04)}.Btn--sm{padding:1px 5px;border-radius:12px;font-size:12px}.Btn--lg{padding:7px 29px;border-radius:20px;font-size:15px}.Btn--block{display:block;width:100%}.Btn--block+.Btn--block{margin-top:10px}.Card{overflow:hidden;border-radius:12px;background:#fff;background:var(--white);-webkit-box-shadow:0 1.5px 3px 0 rgba(0,0,0,0.06),0 1.5px 3px 0 rgba(0,0,0,0.08);box-shadow:0 1.5px 3px 0 rgba(0,0,0,0.06),0 1.5px 3px 0 rgba(0,0,0,0.08);-webkit-box-shadow:var(--shadow-1);box-shadow:var(--shadow-1)}.Card--xl{width:300px}.Card--lg{width:160px}.Card--md{width:120px}.Card--sm{width:104px}.Card--xs{width:80px}.Card--fluid{width:calc(100% - 48px);max-width:680px;min-width:260px}.CardMedia{position:relative;background-repeat:no-repeat;background-position:50%;background-size:cover}.CardMedia:after{display:block;height:0;content:""}.CardMedia--wide:after{padding-top:56.25%}.CardMedia--square:after{padding-top:100%}.CardMedia-content{position:absolute;top:0;left:0;width:100%;height:100%;overflow:hidden}.CardTitle{padding:10px 12px}.CardTitle--center{padding:4px 2px;text-align:center}.CardTitle-title{font-size:16px}.CardTitle-subtitle{color:rgba(0,0,0,0.4);color:var(--gray-3);font-size:10px}.CardContent{padding:10px 12px}.CardTitle+.CardContent{padding-top:0}.CardText{padding:10px 12px;color:#333;color:var(--gray-dark)}.CardTitle+.CardText{padding-top:0}.CardActions{display:-webkit-box;display:-ms-flexbox;display:flex;padding:10px 12px}.CardText+.CardActions,.CardTitle+.CardActions{padding-top:0}.CardActions .Btn{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;line-height:20px}.CardActions .Btn+.Btn{margin-left:6px}.CardActions--column{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;padding:0}.CardActions--column .Btn{padding:12px;border:0;border-top:1px solid rgba(0,0,0,0.1);border-top:1px solid var(--gray-6);border-radius:0;background:#fff;background:var(--white)}.CardActions--column .Btn:last-child{border-radius:0 0 12px 12px}.CardActions--column .Btn+.Btn{margin:0}.CardActions--column .Btn--primary{color:#ffb300;color:var(--brand-1)}.Divider{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:12px 0;font-size:12px;color:rgba(0,0,0,0.4);color:var(--gray-3)}.Divider:after,.Divider:before{content:"";display:block;-webkit-box-flex:1;-ms-flex:1;flex:1;border-top:1px solid rgba(0,0,0,0.1);border-top:1px solid var(--gray-6)}.Divider--text-center:before,.Divider--text-left:before,.Divider--text-right:before{margin-right:12px}.Divider--text-center:after,.Divider--text-left:after,.Divider--text-right:after{margin-left:12px}.Divider--text-left:before,.Divider--text-right:after{max-width:10%}.Empty{padding:30px;text-align:center}.Empty-img{height:125px}.Empty-tip{margin:20px 0;color:rgba(0,0,0,0.26);color:var(--gray-4)}.Flex{display:-webkit-box;display:-ms-flexbox;display:flex}.Flex--inline{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}.Flex--center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.Flex--d-r{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.Flex--d-rr{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.Flex--d-c{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.Flex--d-cr{-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse}.Flex--w-n{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.Flex--w-w{-ms-flex-wrap:wrap;flex-wrap:wrap}.Flex--w-wr{-ms-flex-wrap:wrap-reverse;flex-wrap:wrap-reverse}.Flex--jc-fs{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.Flex--jc-fe{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.Flex--jc-c{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.Flex--jc-sb{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.Flex--jc-sa{-ms-flex-pack:distribute;justify-content:space-around}.Flex--ai-fs{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.Flex--ai-fe{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.Flex--ai-c{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.FlexItem{-webkit-box-flex:1;-ms-flex:1;flex:1;min-width:0;min-height:0}.HelpText{font-size:12px;color:rgba(0,0,0,0.26);color:var(--gray-4)}.Icon{display:inline-block;width:1em;height:1em;stroke-width:0;fill:currentColor;-webkit-transition:all .3s cubic-bezier(.18,.89,.32,1.28);transition:all .3s cubic-bezier(.18,.89,.32,1.28)}.is-spin{-webkit-animation:spin 1s linear infinite;animation:spin 1s linear infinite}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.IconBtn{padding:0;border:0;background:transparent;color:rgba(0,0,0,0.54);color:var(--gray-2)}.IconBtn.Btn--primary{color:#ffc233;color:var(--brand-2)}.IconBtn:disabled{border-color:rgba(0,0,0,0.1);border-color:var(--gray-6);color:rgba(0,0,0,0.1);color:var(--gray-6)}.IconBtn>.Icon{display:block}.Image{position:relative;display:inline-block;overflow:hidden}.Image--fluid{max-width:100%;height:auto}.InfiniteScroll{overflow-y:scroll;-webkit-overflow-scrolling:touch}.InputWrapper{position:relative}.InputWrapper.is-light.has-counter{padding-bottom:20px}.InputWrapper.is-light.has-counter+.HelpText{margin-top:-18px}.InputWrapper.is-light .Input{padding:2px 12px;border-bottom:1px solid rgba(0,0,0,.12);border-radius:0;background-color:transparent}.InputWrapper.is-light .Input-counter{bottom:0;margin-top:0}.Input{display:block;-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;min-height:24px;padding:8px 12px;border:0;border-radius:10px;font-size:14px;line-height:1.5;color:rgba(0,0,0,0.87);color:var(--gray-1);background-color:#f2f4f5;background-color:var(--light-1);background-clip:padding-box;-webkit-tap-highlight-color:transparent}.Input:focus{outline:none}.Input:focus:not([disabled]):not([readonly])~.Input-line:after,.Input:focus:not([disabled]):not([readonly])~.Input-line:before{width:50%}.Input::-webkit-input-placeholder{color:#ccc}.Input:-ms-input-placeholder{color:#ccc}.Input::-ms-input-placeholder{color:#ccc}.Input::-moz-placeholder{color:#ccc}.Input::placeholder{color:#ccc}.Input-line{position:relative;width:100%}.Input-line:after,.Input-line:before{content:"";position:absolute;bottom:0;width:0;height:1px;background:#ffb300;background:var(--brand-1);-webkit-transition:.2s cubic-bezier(.4,0,.2,1);transition:.2s cubic-bezier(.4,0,.2,1)}.Input-line:before{left:50%}.Input-line:after{right:50%}.Input-counter{position:relative;z-index:1;float:right;margin:-26px 12px 0 0;color:rgba(0,0,0,0.4);color:var(--gray-3);font-size:12px}.Label{display:block;font-size:12px;color:rgba(0,0,0,0.54);color:var(--gray-2)}.List{background:#fff;background:var(--white)}.List--bordered{border:1px solid rgba(0,0,0,0.05);border:1px solid var(--gray-7);border-radius:2px}.ListItem{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:10px 15px;border-top:1px solid rgba(0,0,0,0.05);border-top:1px solid var(--gray-7);color:rgba(0,0,0,0.87);color:var(--gray-1);-webkit-transition:.3s;transition:.3s}.ListItem:first-child{border-top:0}a.ListItem:hover{background:#fafafa;background:var(--light-2);color:#ffb300;color:var(--brand-1);cursor:pointer}.ListItem-content{-webkit-box-flex:1;-ms-flex:1;flex:1}.Loading{padding:15px}.Loading .Icon{color:#ffc233;color:var(--brand-2);font-size:21px}.Loading-tip{margin-left:5px;color:rgba(0,0,0,0.54);color:var(--gray-2)}.MediaObject{display:-webkit-box;display:-ms-flexbox;display:flex}.MediaObject-pic{width:70px;margin-right:10px}.MediaObject-pic>img{display:block;width:100%;height:100%}.MediaObject-info{-webkit-box-flex:1;-ms-flex:1;flex:1}.MediaObject-title{font-size:14px;margin-bottom:6px}.MediaObject-meta{font-size:12px;color:rgba(0,0,0,0.54);color:var(--gray-2)}.Message{position:relative}.Message+.Message{margin-top:12px}.Message.left{-webkit-animation:msgLeft .5s ease-in-out;animation:msgLeft .5s ease-in-out}.Message.left .Bubble{margin-right:18%}.Message.right{-webkit-animation:msgRight .5s ease-in-out;animation:msgRight .5s ease-in-out}.Message.right .Message-content{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.Message.right .Message-content>.Avatar{margin-right:0;margin-left:4px}.Message.right .Bubble{margin-left:28%;border-radius:20px 4px 20px 20px;background:#ffe48c;background:var(--brand-3)}.Message.right .Avatar+.Bubble{margin-left:18%}.Message-meta{margin-bottom:8px;text-align:center}.Message-content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.Message-content>.Avatar{-ms-flex-negative:0;flex-shrink:0;margin-right:4px}.SystemMessage{padding:0 16px;font-size:12px;color:rgba(0,0,0,0.54);color:var(--gray-2);text-align:center}.SystemMessage a{margin-left:5px}@-webkit-keyframes msgLeft{0%{-webkit-transform:translateX(-20px);transform:translateX(-20px);opacity:0}50%{-webkit-transform:translateX(-20px);transform:translateX(-20px);opacity:0}to{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}}@keyframes msgLeft{0%{-webkit-transform:translateX(-20px);transform:translateX(-20px);opacity:0}50%{-webkit-transform:translateX(-20px);transform:translateX(-20px);opacity:0}to{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}}@-webkit-keyframes msgRight{0%{-webkit-transform:translateX(20px);transform:translateX(20px);opacity:0}20%{-webkit-transform:translateX(20px);transform:translateX(20px);opacity:0}to{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}}@keyframes msgRight{0%{-webkit-transform:translateX(20px);transform:translateX(20px);opacity:0}20%{-webkit-transform:translateX(20px);transform:translateX(20px);opacity:0}to{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}}.Modal,.Popup{position:fixed;top:0;right:0;bottom:0;left:0;height:100%;z-index:100;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.Modal.active .Modal-dialog{opacity:1;-webkit-transform:none;transform:none}.Modal-dialog{position:relative;z-index:100;width:320px;border-radius:12px;background:#fff;background:var(--white);-webkit-box-shadow:0 10px 10px 0 rgba(0,0,0,0.03),0 8px 4px 0 rgba(0,0,0,0.02);box-shadow:0 10px 10px 0 rgba(0,0,0,0.03),0 8px 4px 0 rgba(0,0,0,0.02);-webkit-box-shadow:var(--shadow-5);box-shadow:var(--shadow-5);opacity:0;transition:opacity .15s linear,-webkit-transform .3s ease-out;-webkit-transition:opacity .15s linear,-webkit-transform .3s ease-out;transition:transform .3s ease-out,opacity .15s linear;transition:transform .3s ease-out,opacity .15s linear,-webkit-transform .3s ease-out;-webkit-transform:translateY(-50px);transform:translateY(-50px)}@media (max-width:320px){.Modal-dialog{width:300px}}.Modal-header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-sizing:border-box;box-sizing:border-box}.Modal-title{-webkit-box-flex:1;-ms-flex:1;flex:1;padding:10px 15px;font-size:16px}.Modal-close{padding:8px 12px;font-size:16px}.Modal-footer{display:-webkit-box;display:-ms-flexbox;display:flex}.Modal-footer--h{padding:16px 25px}.Modal-footer--h .Btn{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;line-height:20px}.Modal-footer--h .Btn+.Btn{margin-left:12px}.Modal-footer--v{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;padding-top:16px}.Modal-footer--v .Btn{padding:12px;border:0;border-top:1px solid rgba(0,0,0,0.1);border-top:1px solid var(--gray-6);border-radius:0;background:#fff;background:var(--white);color:rgba(0,0,0,0.54);color:var(--gray-2);font-weight:500}.Modal-footer--v .Btn:last-child{border-radius:0 0 12px 12px}.Modal-footer--v .Btn--primary{color:#ffb300;color:var(--brand-1)}.Popup{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.Popup.active .Popup-dialog{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}.Popup-dialog{position:relative;z-index:100;overflow:hidden;width:100%;padding-bottom:env(safe-area-inset-bottom);border-radius:12px 12px 0 0;background:#fff;background:var(--white);-webkit-box-shadow:0 10px 10px 0 rgba(0,0,0,0.03),0 8px 4px 0 rgba(0,0,0,0.02);box-shadow:0 10px 10px 0 rgba(0,0,0,0.03),0 8px 4px 0 rgba(0,0,0,0.02);-webkit-box-shadow:var(--shadow-5);box-shadow:var(--shadow-5);opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);-webkit-transition:.3s;transition:.3s}.Popup-header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-sizing:border-box;box-sizing:border-box}.Popup-title{padding:7px 12px;-webkit-box-flex:1;-ms-flex:1;flex:1;color:rgba(0,0,0,0.54);color:var(--gray-2);font-size:12px}.Popup-close{padding:8px 12px;color:rgba(0,0,0,0.54);color:var(--gray-2);font-size:16px}.Popup-close:hover{color:rgba(0,0,0,0.87);color:var(--gray-1)}.Popup-body.overflow{max-height:300px;max-height:70vh;overflow-y:auto;-webkit-overflow-scrolling:touch}.Popup-footer{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;padding:14px;background:#fff;background:var(--white)}.Popup-footer .Btn+.Btn{margin-top:10px}.Confirm{text-align:center}.Confirm .Modal-body{color:#333;color:var(--gray-dark);padding:0 16px}.S--modalOpen,.S--modalOpen .MessageContainer>.PullToRefresh{overflow:hidden}.S--wide .Popup{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.S--wide .Popup-dialog{width:480px;border-radius:12px}.Navbar{position:relative;z-index:10;display:-webkit-box;display:-ms-flexbox;display:flex;min-height:44px;padding:0 6px;padding-top:0px;padding-top:var(--safe-top);background:#fff;background:var(--white);-webkit-box-shadow:0 6px 6px 0 rgba(0,0,0,0.03),0 4px 2px 0 rgba(0,0,0,0.04);box-shadow:0 6px 6px 0 rgba(0,0,0,0.03),0 4px 2px 0 rgba(0,0,0,0.04);-webkit-box-shadow:var(--shadow-3);box-shadow:var(--shadow-3)}.Navbar .IconBtn{padding:10px;color:rgba(0,0,0,0.54);color:var(--gray-2);font-size:24px}.Navbar-main{-webkit-box-flex:3;-ms-flex:3;flex:3;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.Navbar-left,.Navbar-right{-webkit-box-flex:2;-ms-flex:2;flex:2}.Navbar-right{text-align:right}.Navbar-title{color:rgba(0,0,0,0.87);color:var(--gray-1);font-size:16px;text-align:center}.Navbar-logo{width:auto;height:36px}.Notice{position:absolute;z-index:30;top:12px;left:8px;right:8px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;padding:16px;border-radius:8px;background:#fff9db;background:var(--yellow-light);-webkit-box-shadow:0 4px 5px 0 rgba(0,0,0,.03),0 3px 4px 0 rgba(0,0,0,.06);box-shadow:0 4px 5px 0 rgba(0,0,0,.03),0 3px 4px 0 rgba(0,0,0,.06)}.Notice-close,.Notice-icon{margin-top:3px;color:rgba(0,0,0,0.54);color:var(--gray-2);font-size:16px}.Notice-icon{margin-right:5px}.Notice-close{margin-left:5px}.Notice-content{position:relative;-webkit-box-flex:1;-ms-flex:1;flex:1;min-width:0;color:#333;color:var(--gray-dark);word-wrap:break-word}.Notice-content .collapsed{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;text-overflow:ellipsis}.Notice-actions{margin:5px 0 -8px}.Notice-more{display:block;margin:0 auto;color:rgba(0,0,0,0.54);color:var(--gray-2);-webkit-transition:.3s;transition:.3s}.Notice-more[aria-expanded=true]{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.Popover{position:absolute;top:0;left:0;z-index:1030;font-size:14px;-webkit-transform:translateY(-10px);transform:translateY(-10px)}.Popover-body{border-radius:6px;background:#fff;background:var(--white);-webkit-box-shadow:0 10px 10px 0 rgba(0,0,0,0.03),0 8px 4px 0 rgba(0,0,0,0.02);box-shadow:0 10px 10px 0 rgba(0,0,0,0.03),0 8px 4px 0 rgba(0,0,0,0.02);-webkit-box-shadow:var(--shadow-5);box-shadow:var(--shadow-5)}.Popover-arrow{display:block;width:9px;height:5px;margin-left:10px;fill:#fff;fill:var(--white)}.Price{display:inline;font-size:10px}.Price--original{color:rgba(0,0,0,0.4);color:var(--gray-3);text-decoration:line-through}.Price:not(.Price--original) .Price-integer{font-size:1.4em}.Progress{display:-webkit-box;display:-ms-flexbox;display:flex;height:2px;overflow:hidden;background-color:rgba(0,0,0,0.2);background-color:var(--gray-5);border-radius:100px}.Progress-bar{overflow:hidden;background-color:#39f;background-color:var(--blue);-webkit-transition:width .6s ease;transition:width .6s ease}.Progress--success .Progress-bar{background-color:#62d957;background-color:var(--green)}.Progress--error .Progress-bar{background-color:#f56262;background-color:var(--red)}.PullToRefresh{height:100%;overflow-y:scroll;-webkit-overflow-scrolling:touch}.PullToRefresh-fallback{text-align:center}.PullToRefresh-loadMore{padding:8px}.PullToRefresh-inner{overflow:hidden;min-height:100%}.PullToRefresh-indicator{height:25px;margin-top:-25px;color:grey;text-align:center;line-height:25px}.PullToRefresh-spinner{color:#ffc233;color:var(--brand-2);font-size:24px}.PullToRefresh-transition{transition:-webkit-transform .3s;-webkit-transition:-webkit-transform .3s;transition:transform .3s;transition:transform .3s, -webkit-transform .3s;transition:transform .3s,-webkit-transform .3s}.QuickReplies{position:absolute;left:8px;right:8px;z-index:110;bottom:100%;overflow:hidden;padding:4px 0;background:rgba(242,244,245,.95);-webkit-transition:opacity .3s;transition:opacity .3s}.QuickReplies[data-visible=false]{visibility:hidden;opacity:0}.QuickReply{position:relative;margin:0;padding:5px 11px;border:1px solid #fff;border:1px solid var(--white);border-radius:20px;line-height:1.43;background:#fff;background:var(--white);cursor:pointer;color:rgba(0,0,0,0.87);color:var(--gray-1);-webkit-transition:.15s ease-in-out;transition:.15s ease-in-out}.QuickReply.new:after{content:"";position:absolute;right:-1px;top:2px;width:9px;height:9px;border:1px solid #fff;border:1px solid var(--white);background-color:#f56262;background-color:var(--red);overflow:hidden;border-radius:50%}.QuickReply.highlight{border-color:#ffc233;border-color:var(--brand-2)}.QuickReply-inner{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.QuickReply-img{max-height:16px}.QuickReply-img,.QuickReply-inner>.Icon{margin-right:3px}@media (hover:hover){.QuickReply:hover{border-color:#ffc233;border-color:var(--brand-2)}}.Checkbox,.Radio{position:relative;display:inline-block;margin:0 5px 5px 0;padding:6px 12px;border:1px solid rgba(0,0,0,0.1);border:1px solid var(--gray-6);border-radius:4px;font-weight:500;font-size:12px;line-height:1.5;text-align:center;cursor:pointer;-webkit-transition:.15s ease-in-out;transition:.15s ease-in-out;-webkit-tap-highlight-color:transparent}.RadioGroup--block .Radio{display:block;margin:10px 0 0}.RadioGroup--block .Radio:first-child{margin:0}.CheckboxGroup--block .Checkbox{display:block;margin:10px 0 0}.CheckboxGroup--block .Checkbox:first-child{margin:0}.Checkbox--disabled,.Radio--disabled{border-color:transparent;background:rgba(0,0,0,0.05);background:var(--gray-7);color:rgba(0,0,0,0.26);color:var(--gray-4);cursor:auto}.Checkbox--checked,.Radio--checked{border-color:#ffe48c;border-color:var(--brand-3);background:#ffe48c;background:var(--brand-3);color:rgba(0,0,0,0.87);color:var(--gray-1)}.Checkbox-input,.Radio-input{position:absolute;top:0;left:0;width:100%;height:100%;margin:0;padding:0;opacity:0;cursor:inherit}.RateActions{position:relative;z-index:100;-ms-flex-item-align:end;align-self:flex-end;width:32px;margin:0 8px}.RateBtn{padding:4px;border-radius:50%;background:#fff;background:var(--white);-webkit-box-shadow:0 1.5px 3px 0 rgba(0,0,0,0.06),0 1.5px 3px 0 rgba(0,0,0,0.08);box-shadow:0 1.5px 3px 0 rgba(0,0,0,0.06),0 1.5px 3px 0 rgba(0,0,0,0.08);-webkit-box-shadow:var(--shadow-1);box-shadow:var(--shadow-1);color:rgba(0,0,0,0.54);color:var(--gray-2);font-size:24px;-webkit-transition:.2s;transition:.2s}.RateBtn+.RateBtn{margin-top:9px}.RateBtn.active{-webkit-box-shadow:0;box-shadow:0}.RateBtn[data-type=good].active,.RateBtn[data-type=good]:hover{color:#ffb300;color:var(--brand-1)}.RateBtn[data-type=bad].active,.RateBtn[data-type=bad]:hover{color:#46c2eb}.RichText{word-wrap:break-word;word-wrap:break-word}.ScrollView{overflow:hidden}.ScrollView-scroller{scroll-behavior:smooth;-webkit-overflow-scrolling:touch;-ms-overflow-style:none;scrollbar-width:none}.ScrollView-scroller::-webkit-scrollbar{display:none}.ScrollView--fullWidth{margin:0 -8px}.ScrollView--fullWidth:not(.ScrollView--hasControls) .ScrollView-inner{padding:0 8px}.ScrollView--x .ScrollView-scroller{display:-webkit-box;display:-ms-flexbox;display:flex;overflow-x:scroll;overflow-y:hidden;margin-bottom:-18px;padding-bottom:18px}.ScrollView--x .ScrollView-inner{display:-webkit-box;display:-ms-flexbox;display:flex}.ScrollView--x .ScrollView-item{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;margin-left:8px}.ScrollView--x .ScrollView-item:first-child{margin-left:0}.ScrollView--hasControls{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.ScrollView--hasControls .ScrollView-scroller{-webkit-box-flex:1;-ms-flex:1;flex:1}.ScrollView-control{padding:6px;color:rgba(0,0,0,0.4);color:var(--gray-3);font-size:16px}.ScrollView-control:not(:disabled):hover{color:#ffb300;color:var(--brand-1)}.Step{position:relative;padding-left:24px;padding-bottom:10px}.Step:last-child{padding-bottom:0}.Step:last-child .Step-line{display:none}.Step--active .Step-dot{-webkit-transform:scale(1.5);transform:scale(1.5);background:#ffb300;background:var(--brand-1)}.Step--active .Step-line{background:rgba(0,0,0,0.1);background:var(--gray-6)}.Step--active .Step-desc,.Step--active .Step-title{color:rgba(0,0,0,0.87);color:var(--gray-1)}.Step--disabled .Step-dot,.Step--disabled .Step-line{background:rgba(0,0,0,0.1);background:var(--gray-6)}.Step--disabled .Step-desc,.Step--disabled .Step-title{color:rgba(0,0,0,0.26);color:var(--gray-4)}.Step-dot{top:6px;left:2px;z-index:2;width:8px;height:8px;border-radius:50%}.Step-dot,.Step-line{position:absolute;background:#ffe48c;background:var(--brand-3)}.Step-line{top:13px;left:5px;bottom:-7px;width:2px}.Step-title{color:rgba(0,0,0,0.54);color:var(--gray-2)}.Step-desc{color:rgba(0,0,0,0.4);color:var(--gray-3);font-size:12px}.Tabs-nav{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex}.Tabs-nav::-webkit-scrollbar{display:none}.Tabs--scrollable .Tabs-nav{overflow:hidden;overflow-x:auto;-webkit-overflow-scrolling:touch}.Tabs--scrollable .Tabs-navItem{-webkit-box-flex:0;-ms-flex:0 0 22%;flex:0 0 22%}.Tabs-navItem{-webkit-box-flex:1;-ms-flex:1;flex:1;text-align:center}.Tabs-navLink{display:inline-block;margin:0;padding:8px 3px;border:0;background:transparent;color:#333;color:var(--gray-dark);line-height:20px;font-weight:300;-webkit-transition:.3s;transition:.3s}.Tabs-navLink:hover{cursor:pointer}.Tabs-navLink.active{color:#ffb300;color:var(--brand-1);font-weight:400}.Tabs-navPointer{position:absolute;left:0;bottom:0;height:2px;border-radius:1px;background:#ffc233;background:var(--brand-2);-webkit-transition:.3s cubic-bezier(.4,0,.2,1);transition:.3s cubic-bezier(.4,0,.2,1)}.Tabs-pane{display:none}.Tabs-pane.active{display:block}.Tag{display:inline-block;position:relative;margin:0 4px 0 0;padding:2px 3px;border-radius:4px;color:#ffb300;color:var(--brand-1);font-size:10px;line-height:1.2;white-space:nowrap}.Tag:before{content:"";position:absolute;top:0;left:0;right:0;bottom:0;border-radius:inherit;background:currentColor;opacity:.1}.Text--truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.Text--break{word-break:break-word!important;word-wrap:break-word!important}.Text--ellipsis{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;text-overflow:ellipsis}.Time{display:inline-block;padding:3px;font-size:12px;color:rgba(0,0,0,0.4);color:var(--gray-3)}.Toast,.Toast-content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.Toast{position:fixed;top:50%;left:0;right:0;z-index:200;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-transition:all .3s ease 0s;transition:all .3s ease 0s;-webkit-transform:translateY(-50%);transform:translateY(-50%);opacity:0;visibility:hidden}.Toast[data-type=success] .Icon{color:#62d957;color:var(--green)}.Toast[data-type=error] .Icon{color:#f56262;color:var(--red)}.Toast[data-type=loading] .Icon{color:#ffc233;color:var(--yellow)}.Toast.show{opacity:1;visibility:visible}.Toast .Icon{margin-right:8px;font-size:24px}.Toast-content{min-width:160px;margin:0 20px;padding:18px 20px 18px 28px;border-radius:8px;background:#fff;background:var(--white);-webkit-box-shadow:0 6px 6px 0 rgba(0,0,0,0.03),0 4px 2px 0 rgba(0,0,0,0.04);box-shadow:0 6px 6px 0 rgba(0,0,0,0.03),0 4px 2px 0 rgba(0,0,0,0.04);-webkit-box-shadow:var(--shadow-3);box-shadow:var(--shadow-3)}.Toast-message{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;font-size:16px}.Toolbar{padding:10px 12px 25px}.Toolbar-item{display:inline-block;width:25%;margin-top:20px;text-align:center}.Toolbar-btn{position:relative;display:inline-block;overflow:hidden;width:70px;color:rgba(0,0,0,0.87);color:var(--gray-1);vertical-align:top}.Toolbar-btn:hover{color:#ffb300;color:var(--brand-1);cursor:pointer}.Toolbar-btn:focus{color:rgba(0,0,0,0.87);color:var(--gray-1)}.Toolbar-btnIcon{display:inline-block}.Toolbar-btnIcon .Icon{font-size:40px;-webkit-transition:.3s;transition:.3s}.Toolbar-img{width:40px;height:40px}.Toolbar-btnText{display:block;margin-top:12px;font-size:12px;-webkit-transition:.3s;transition:.3s}[data-tooltip]{position:relative;cursor:pointer}[data-tooltip]:after,[data-tooltip]:before{position:absolute;bottom:100%;left:50%;z-index:200;opacity:0;pointer-events:none;-webkit-transition:all .18s ease-out .18s;transition:all .18s ease-out .18s;-webkit-transform:translate(-50%,4px);transform:translate(-50%,4px);-webkit-transform-origin:top;transform-origin:top}[data-tooltip]:after{content:attr(aria-label);margin-bottom:10px;padding:.5em 1em;border-radius:6px;background:rgba(0,0,0,0.87);background:var(--gray-1);color:#fff;color:var(--white);font-size:12px;white-space:nowrap}[data-tooltip]:before{content:"";width:0;height:0;-webkit-transform-origin:top;transform-origin:top;border:5px solid transparent;border-top:5px solid rgba(0,0,0,0.87);border-top:5px solid var(--gray-1)}[data-tooltip]:hover:after,[data-tooltip]:hover:before{opacity:1;-webkit-transform:translate(-50%);transform:translate(-50%)}.Tree{background:#fff;background:var(--white)}.TreeNode-title{padding:10px 15px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-bottom:1px solid rgba(0,0,0,0.05);border-bottom:1px solid var(--gray-7)}.TreeNode-title:hover{background:#fafafa;background:var(--light-2);color:#ffb300;color:var(--brand-1);cursor:pointer}.TreeNode:last-child .TreeNode-title{border:0}.TreeNode-children-title{background:#fafafa;background:var(--light-2);border-bottom:1px solid rgba(0,0,0,0.05);border-bottom:1px solid var(--gray-7)}.TreeNode-title-text{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical;-webkit-box-flex:1;-ms-flex:1;flex:1}.TreeNode-children{display:none}.TreeNode-children-active{display:block}.Typing{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:20px;-webkit-transition:opacity .1s;transition:opacity .1s}.Typing-dot{display:inline-block;width:8px;height:8px;margin-left:5px;border-radius:50%;background:#ffc233;background:var(--brand-2);-webkit-animation:typing-dot .9s linear infinite;animation:typing-dot .9s linear infinite}.Typing-dot:first-child{margin:0;opacity:.9}.Typing-dot:nth-child(2){opacity:.3;-webkit-animation-delay:.225s;animation-delay:.225s}.Typing-dot:nth-child(3){opacity:.6;-webkit-animation-delay:.45s;animation-delay:.45s}@-webkit-keyframes typing-dot{0%{-webkit-transform:translateY(0);transform:translateY(0)}25%{-webkit-transform:translateY(6px);transform:translateY(6px)}50%{-webkit-transform:translateY(0);transform:translateY(0)}75%{-webkit-transform:translateY(-6px);transform:translateY(-6px)}to{-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes typing-dot{0%{-webkit-transform:translateY(0);transform:translateY(0)}25%{-webkit-transform:translateY(6px);transform:translateY(6px)}50%{-webkit-transform:translateY(0);transform:translateY(0)}75%{-webkit-transform:translateY(-6px);transform:translateY(-6px)}to{-webkit-transform:translateY(0);transform:translateY(0)}}.Video{position:relative;border-radius:inherit}.Video-cover,.Video-video{display:block;width:100%;max-height:100%;border-radius:inherit}.Video-duration{position:absolute;right:5px;bottom:5px;z-index:1;color:#fff;color:var(--white)}.Video-duration:after{content:"＂"}.Video-playBtn{position:absolute;top:0;left:0;width:100%;height:100%;margin:0;padding:0;border:0;background:transparent}.Video-playIcon{display:inline-block;width:35px;height:35px;background:url(//gw.alicdn.com/tfs/TB1p1mkqIbpK1RjSZFyXXX_qFXa-70-70.png) 0 0 no-repeat;background-size:cover}.Video--playing .Video-playBtn{display:none}.Carousel{overflow:hidden}.Carousel-inner{display:-webkit-box;display:-ms-flexbox;display:flex}.Carousel-indicators{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;list-style-type:none}.Carousel-indicators li{width:6px;height:6px;margin:0 2px;border-radius:50%;background:rgba(0,0,0,0.26);background:var(--gray-4);-webkit-transition:.3s;transition:.3s}.Carousel-indicators .active{background:#ffb300;background:var(--brand-1)}.Goods{padding:8px}.Goods+.Goods{border-top:1px solid rgba(0,0,0,0.05);border-top:1px solid var(--gray-7)}.Goods-img{width:80px;height:80px;-o-object-fit:contain;object-fit:contain}.Goods-img,.Goods-main .Price{margin-right:8px}.Goods-desc{color:rgba(0,0,0,0.4);color:var(--gray-3);font-size:12px}.Goods-meta{color:rgba(0,0,0,0.4);color:var(--gray-3);font-size:10px}.Goods-countUnit{color:rgba(0,0,0,0.4);color:var(--gray-3);font-size:12px}.Goods-unit{margin-left:3px;font-size:10px}.Goods-buyBtn{float:right;background:#ffb300;background:var(--brand-1);color:#fff;padding:2px}.Goods-detailBtn{min-width:48px;padding:0 10px;border-radius:10px;font-size:10px;line-height:18px}.Goods-aside{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;margin-left:8px}.Goods-status{color:#f70;color:var(--orange);font-size:12px}.FileCard{padding:8px}.FileCard-icon{position:relative;height:60px;margin-right:8px;color:rgba(0,0,0,0.54);color:var(--gray-2)}.FileCard-icon[data-type=pdf]{color:#f56262;color:var(--red)}.FileCard-icon[data-type*=doc]{color:#39f;color:var(--blue)}.FileCard-icon[data-type*=ppt],.FileCard-icon[data-type=key]{color:#f70;color:var(--orange)}.FileCard-icon[data-type*=xls]{color:#62d957;color:var(--green)}.FileCard-icon[data-type=rar],.FileCard-icon[data-type=zip]{color:#ffb300;color:var(--brand-1)}.FileCard-icon .Icon{font-size:60px}.FileCard-name{height:38px;margin-bottom:4px;line-height:1.4}.FileCard-ext{position:absolute;left:20px;bottom:15px;-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:scale(.5);transform:scale(.5);max-width:50px;font-size:16px;font-weight:700;text-transform:uppercase}.FileCard-meta{color:rgba(0,0,0,0.4);color:var(--gray-3);font-size:12px}.FileCard-meta>a,.FileCard-meta>span{margin-right:10px}.Form{background:#fff;background:var(--white)}.Form.is-light{background:#fafafa;background:var(--light-2)}.Form.is-light .InputWrapper{margin:0 -12px}.FormItem{position:relative;padding:0 12px}.FormItem+.FormItem{margin-top:20px}.FormItem.required .Label:after{content:"*";display:inline-block;color:#f56262;color:var(--red);font-size:14px;font-family:SimSun,sans-serif;line-height:1;vertical-align:middle}.FormItem.is-invalid .HelpText,.FormItem.is-invalid .Label{color:#f56262;color:var(--red)}.FormItem.is-invalid .InputWrapper.is-light .Input{border-bottom-color:#f56262;border-bottom-color:var(--red)}.FormItem .CheckboxGroup,.FormItem .RadioGroup{margin-top:10px}.FormItem .Label+.Input{margin-top:5px}.FormActions{display:-webkit-box;display:-ms-flexbox;display:flex;padding:10px 12px;background:#fff;background:var(--white)}.FormActions .Btn{-webkit-box-flex:1;-ms-flex:1;flex:1;line-height:20px}.FormActions .Btn+.Btn{margin-left:6px}.MessageContainer{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-flex:1;-ms-flex:1;flex:1;min-height:0}.MessageContainer>.PullToRefresh{-webkit-box-flex:1;-ms-flex:1;flex:1}.MessageContainer>.PullToRefresh>.PullToRefresh-inner{padding-bottom:40px}.MessageList{padding:8px}.RecorderToast{position:fixed;top:50%;left:50%;z-index:100;width:160px;height:160px;padding:10px;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);border-radius:12px;background:rgba(51,51,51,.87);color:#fff;color:var(--white);text-align:center}.Recorder--cancel .RecorderToast{color:#f56262;color:var(--red)}.Recorder--cancel .Recorder-btn{background:rgba(0,0,0,0.05);background:var(--gray-7);color:rgba(0,0,0,0.4);color:var(--gray-3)}.RecorderToast-icon{position:relative;font-size:37px}.RecorderToast-waves{position:absolute;z-index:-1;width:100%;height:100%;-webkit-transition:.3s;transition:.3s}.RecorderToast-wave-1,.RecorderToast-wave-2,.RecorderToast-wave-3{position:absolute;z-index:-1;color:#ffc233;color:var(--brand-2);-webkit-animation:wave 10s linear infinite;animation:wave 10s linear infinite}.RecorderToast-wave-1{top:-25px;left:14px;font-size:176px;opacity:.2}.RecorderToast-wave-2{top:-12px;left:-21px;font-size:186px;opacity:.4}.RecorderToast-wave-3{top:21px;left:46px;font-size:71px;opacity:.8}.Recorder-btn{height:38px;border-radius:20px;background:#fff;background:var(--white);color:#333;color:var(--gray-dark);line-height:38px;text-align:center;-webkit-transition:.3s;transition:.3s;-webkit-user-select:none;-ms-user-select:none;-moz-user-select:none;user-select:none;-webkit-touch-callout:none}@-webkit-keyframes wave{0%{-webkit-transform:translateY(5%) rotate(0);transform:translateY(5%) rotate(0)}50%{-webkit-transform:translateY(-5%) rotate(180deg);transform:translateY(-5%) rotate(180deg)}to{-webkit-transform:translateY(5%) rotate(1turn);transform:translateY(5%) rotate(1turn)}}@keyframes wave{0%{-webkit-transform:translateY(5%) rotate(0);transform:translateY(5%) rotate(0)}50%{-webkit-transform:translateY(-5%) rotate(180deg);transform:translateY(-5%) rotate(180deg)}to{-webkit-transform:translateY(5%) rotate(1turn);transform:translateY(5%) rotate(1turn)}}.Composer{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;padding:8px}.Composer>div+div{margin-left:8px}.Composer-actions .IconBtn{padding:6px;border-radius:50%;font-size:26px}.Composer-actions .IconBtn,.Composer-actions .IconBtn:active,.Composer-actions .IconBtn:hover{background:#fff;background:var(--white);color:#ffb300;color:var(--brand-1)}.Composer-toggleBtn{transition:-webkit-transform .2s;-webkit-transition:-webkit-transform .2s;transition:transform .2s;transition:transform .2s, -webkit-transform .2s;transition:transform .2s,-webkit-transform .2s}.Composer-toggleBtn.active{-webkit-transform:rotate(45deg);transform:rotate(45deg)}.Composer-inputWrap{-webkit-box-flex:1;-ms-flex:1;flex:1;position:relative}.Composer-input{overflow:hidden;max-height:126px;line-height:22px;padding:8px 32px 8px 16px;border:0;background-color:#fff;background-color:var(--white);border-radius:20px;word-break:break-all;caret-color:#ffc233;caret-color:var(--brand-2);-webkit-transition:border-color .15s ease-in-out;transition:border-color .15s ease-in-out}.Composer-input:-ms-input-placeholder+.Composer-sendBtn{visibility:hidden;opacity:0}.Composer-input:-moz-placeholder-shown+.Composer-sendBtn{visibility:hidden;opacity:0}.Composer-input:placeholder-shown+.Composer-sendBtn{visibility:hidden;opacity:0}.Composer-sendBtn{position:absolute;right:7px;bottom:7px;padding:2px;background:#ffb300;background:var(--brand-1);color:#fff;color:var(--white);font-size:20px;-webkit-transition:.3s;transition:.3s}.Composer-toolbar{margin-right:20px;padding:8px 0}.Composer-toolbar .Btn{margin-left:20px;font-size:28px}.Composer-toolbar .Btn:first-child{margin:0}.Composer-toolbar .Btn:hover{color:#ffb300;color:var(--brand-1)}.Composer-toolbar .Btn:focus:after,.Composer-toolbar .Btn:focus:before{opacity:0}.Composer-toolbar img{display:block;width:28px;height:28px}.Composer--lg{padding:12px 20px 16px}.Composer--lg .Composer-input{padding:10px 38px 10px 16px;border:1px solid #fff;border:1px solid var(--white);border-radius:22px}.Composer--lg .Composer-input:focus{border-color:#ffb300;border-color:var(--brand-1)}.Composer--lg .Composer-sendBtn{right:8px;bottom:8px;font-size:24px}.SendConfirm .Modal-dialog{width:480px;margin:20px}.SendConfirm-inner{height:320px;text-align:center}.SendConfirm-inner img{max-width:100%;max-height:100%}#root,body,html{height:100%}@supports (top:constant(safe-area-inset-top)) or (top:env(safe-area-inset-top)){body:not(.S--noHomeBar){height:calc(100% - 0px);height:calc(100% - var(--safe-bottom))}}.ChatApp{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;height:100%;background:#f2f4f5;background:var(--light-1)}.ChatFooter{position:relative;z-index:100;background:rgba(242,244,245,.95)}.bordered{border-radius:12px;-webkit-box-shadow:0 1.5px 3px 0 rgba(0,0,0,0.06),0 1.5px 3px 0 rgba(0,0,0,0.08);box-shadow:0 1.5px 3px 0 rgba(0,0,0,0.06),0 1.5px 3px 0 rgba(0,0,0,0.08);-webkit-box-shadow:var(--shadow-1);box-shadow:var(--shadow-1)}.animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}@-webkit-keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.fadeIn{-webkit-animation-name:fadeIn;animation-name:fadeIn}.scrollable{overflow:hidden;-webkit-overflow-scrolling:touch}.scrollable::-webkit-scrollbar{display:none}.scroller{overflow-x:auto;overflow-y:hidden;-webkit-overflow-scrolling:touch;margin-bottom:-18px;padding-bottom:18px;white-space:nowrap}.scroller::-webkit-scrollbar{display:none}.slide-in-right-item{-webkit-animation:slideInRight .5s ease-in-out both;animation:slideInRight .5s ease-in-out both}.slide-in-right-item:nth-child(2){-webkit-animation-delay:.2s;animation-delay:.2s}.slide-in-right-item:nth-child(3){-webkit-animation-delay:.4s;animation-delay:.4s}.slide-in-right-item:nth-child(4){-webkit-animation-delay:.6s;animation-delay:.6s}.slide-in-right-item:nth-child(5){-webkit-animation-delay:.8s;animation-delay:.8s}.slide-in-right-item:nth-child(6){-webkit-animation-delay:1s;animation-delay:1s}.slide-in-right-item:nth-child(7){-webkit-animation-delay:1.2s;animation-delay:1.2s}.slide-in-right-item:nth-child(8){-webkit-animation-delay:1.4s;animation-delay:1.4s}.slide-in-right-item:nth-child(9){-webkit-animation-delay:1.6s;animation-delay:1.6s}.slide-in-right-item:nth-child(10){-webkit-animation-delay:1.8s;animation-delay:1.8s}.slide-in-right-item:nth-child(11){-webkit-animation-delay:2s;animation-delay:2s}@-webkit-keyframes slideInRight{0%{-webkit-transform:translateX(100px);transform:translateX(100px);opacity:0}to{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}}@keyframes slideInRight{0%{-webkit-transform:translateX(100px);transform:translateX(100px);opacity:0}to{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}}
.live-consultation-room-container {
  position: relative;
}

.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.IarXYNdjPB{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}._2dTLvXsrNG{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.xPgmc2lE7f{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.xPgmc2lE7f>i,.xPgmc2lE7f>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}._0PiGlK5RFV{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.N4wSioR4IM{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.GMNSlR1pWH{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.LNK5TkmiX6{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}._0gRy9yHVu9{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._0dx95nHHDQ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.k7qfajDSeo{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.k7qfajDSeo .eRN4VzOMzK{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.k7qfajDSeo .eRN4VzOMzK>span{color:rgba(0,0,0,0.65)}.Hx-BtUyajc{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.Hx-BtUyajc .vSPciGZnfq{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.Hx-BtUyajc .vSPciGZnfq>span{font-size:8px}.O1SGDOo91f .ant-popover-inner-content{padding:0}.O1SGDOo91f .ant-popover-arrow{border-color:#475365 !important}.O1SGDOo91f .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.ALHUFV1eER{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.OPlg1DVgzX{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.OPlg1DVgzX .NLmNdiwII3{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.sxXXx5pukD{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}._2jzq9tt13y{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{._2jzq9tt13y{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.MSMlbaNGzi{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.Jf-OqJQaPf html,.Jf-OqJQaPf body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.Jf-OqJQaPf body,.Jf-OqJQaPf div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.Jf-OqJQaPf textarea{border:none !important;padding-left:0 !important}.Jf-OqJQaPf table,.Jf-OqJQaPf tr,.Jf-OqJQaPf td{page-break-inside:avoid}.Jf-OqJQaPf div{page-break-inside:avoid}.Jf-OqJQaPf thead{display:table-header-group}.Jf-OqJQaPf tfoot{display:table-footer-group}.Jf-OqJQaPf *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.Jf-OqJQaPf ._62ElSYRXOn,.Jf-OqJQaPf .no-print,.Jf-OqJQaPf .react-resizable-handle,.Jf-OqJQaPf .fc-whiteboard-toolbar,.Jf-OqJQaPf .ant-modal-root,.Jf-OqJQaPf .ant-alert,.Jf-OqJQaPf ._2Kh4WZWh9k,.Jf-OqJQaPf .-tnsq\+ibw4{display:none !important}.Jf-OqJQaPf .Ho1neXvNDq{display:none !important}}.YHNrBwTaRV{position:relative;background:white;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:space-evenly;-ms-flex-pack:space-evenly;justify-content:space-evenly}.YHNrBwTaRV .Td1wzhnmBN{height:120px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.IIagfVGQUW{-webkit-box-flex:.8;-ms-flex:.8 .8 1px;flex:.8 .8 1px}.JungmTgjRw{-webkit-box-flex:1;-ms-flex:1 1 1px;flex:1 1 1px}.JyRR6BaQo9{padding:16px}.Kf0Vwo7WUb{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:24px 32px;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.Kf0Vwo7WUb>div{-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15)}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.nOSj4Fmcf6{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.A\+cs\+x6EET{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.fH9IBvCzyO{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.fH9IBvCzyO>i,.fH9IBvCzyO>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.vJ3cxjgh4g{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.lb6tabqhH6{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.L44r-MxJzK{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.WdxRA18eeW{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.ghwEIKR3aR{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.WQAg1DgYK\+{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.igxcQVcer1{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.igxcQVcer1 .tpN5ilWOLV{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.igxcQVcer1 .tpN5ilWOLV>span{color:rgba(0,0,0,0.65)}._75ms4dwqfG{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}._75ms4dwqfG .WpR6vmSnoR{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}._75ms4dwqfG .WpR6vmSnoR>span{font-size:8px}.ghSKX6u19k .ant-popover-inner-content{padding:0}.ghSKX6u19k .ant-popover-arrow{border-color:#475365 !important}.ghSKX6u19k .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}._5j8zsQjEeh{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.\+8KgzJlKZz{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.\+8KgzJlKZz .aOmwxkPyTx{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.cEi9VLzCm0{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.RVA9XO8GMi{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.RVA9XO8GMi{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.Wk7XspMZU8{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.sVoNwt6qIB html,.sVoNwt6qIB body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.sVoNwt6qIB body,.sVoNwt6qIB div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.sVoNwt6qIB textarea{border:none !important;padding-left:0 !important}.sVoNwt6qIB table,.sVoNwt6qIB tr,.sVoNwt6qIB td{page-break-inside:avoid}.sVoNwt6qIB div{page-break-inside:avoid}.sVoNwt6qIB thead{display:table-header-group}.sVoNwt6qIB tfoot{display:table-footer-group}.sVoNwt6qIB *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.sVoNwt6qIB .fyDTmTwYlj,.sVoNwt6qIB .no-print,.sVoNwt6qIB .react-resizable-handle,.sVoNwt6qIB .fc-whiteboard-toolbar,.sVoNwt6qIB .ant-modal-root,.sVoNwt6qIB .ant-alert,.sVoNwt6qIB .isELgBTjgH,.sVoNwt6qIB .Ph1dR29jKj{display:none !important}.sVoNwt6qIB .d-FYDjtdfq{display:none !important}}.KCJXIhOLoB{height:100%;overflow-x:visible;overflow-x:initial;overflow-y:auto}.KCJXIhOLoB .anticon-close-circle{margin-top:4px}.KCJXIhOLoB .AcgCDav7m6{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-bottom:24px}.KCJXIhOLoB .AcgCDav7m6>span{color:#6874e2;font-size:20px;margin-left:15px}.KCJXIhOLoB .rwxjLy-U3P{border-radius:4px;background-color:#fff;padding:18px 32px;margin-bottom:24px;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15)}.KCJXIhOLoB .UeSZt\+ptnT{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:sticky;bottom:0;height:60px;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12);z-index:999}.KCJXIhOLoB .UeSZt\+ptnT .ZLhitVPGtb{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:18px;margin-right:18px;color:rgba(0,0,0,0.65)}.KCJXIhOLoB .UeSZt\+ptnT .ZLhitVPGtb>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap;color:#fa6400}.KCJXIhOLoB .UeSZt\+ptnT .ZLhitVPGtb .ant-statistic-content{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.KCJXIhOLoB .UeSZt\+ptnT .ZLhitVPGtb .ant-statistic-content .ant-statistic-content-value{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}.PV-hByPdXO{font-family:PingFangSC-Regular;font-size:14px;color:rgba(0,0,0,0.45);margin-left:16px}._9bQ5O6PPyy{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:16px;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center}._9bQ5O6PPyy .VfDFEHJFdt{margin-left:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}
.kC\+YHrA\+\+e{position:relative;padding:20px}._0mSgk9tdua{background:#f4f4f4;padding:20px}._0mSgk9tdua .KSrZhMagpt{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}._0mSgk9tdua .KSrZhMagpt .VlVP7BtXnf{width:110px;padding-top:5px;margin-right:10px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}._0mSgk9tdua .KSrZhMagpt .MVxrjYDQjI{padding-top:5px;margin-right:5px;margin-left:5px}.ndrB8\+5HNk{display:-webkit-box;display:-ms-flexbox;display:flex}
.GfiYboRZYI{position:relative;padding:20px}.oDBeo-b8D0{background:#f4f4f4;padding:20px}.oDBeo-b8D0 .V3\+9noUbz1{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.oDBeo-b8D0 .V3\+9noUbz1 ._4zud3rx\+\+4{width:110px;padding-top:5px;margin-right:10px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.oDBeo-b8D0 .V3\+9noUbz1 ._4zud3rx\+\+4 .iOPsyPccbW{color:#616161}[dir="ltr"] .oDBeo-b8D0 .V3\+9noUbz1 .b4DpU86yTB:before{margin-right:4px}[dir="rtl"] .oDBeo-b8D0 .V3\+9noUbz1 .b4DpU86yTB:before{margin-left:4px}.oDBeo-b8D0 .V3\+9noUbz1 .b4DpU86yTB:before{display:inline-block;color:#ff4d4f;font-size:14px;font-family:SimSun,sans-serif;line-height:1;content:'*'}.oDBeo-b8D0 .V3\+9noUbz1 .zPhxyIL0wy{padding-top:5px;margin-right:5px;margin-left:5px}.SbwJTDHQJe{display:-webkit-box;display:-ms-flexbox;display:flex}
.MHxjPOdLh2{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:5px;margin-bottom:5px}
.iexB8oaGmV{position:relative}.iexB8oaGmV ._1KaMErJK6-{padding-top:5px;margin-right:5px;margin-left:5px}
.ETQQ0xcthD{position:relative}.ETQQ0xcthD .-F-GVWlW9h{padding-top:5px;margin-right:5px;margin-left:5px}
.FhMYGEKtZZ{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:5px;margin-bottom:5px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.QZyp4-tRq3{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.ay8Ly5fXNv{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.E5TKxvb7wr{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.E5TKxvb7wr>i,.E5TKxvb7wr>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}._7Yg0HbBFIH{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.AuHgA5IaHC{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.n99XWa8Q\+V{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}._6ew3tetJDj{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.CHfj0fTx\+W{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.IA3D66FZj6{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.wPeTfqpN44{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.wPeTfqpN44 .cWsg\+0TZd6{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.wPeTfqpN44 .cWsg\+0TZd6>span{color:rgba(0,0,0,0.65)}.JFHaPY7sFZ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.JFHaPY7sFZ ._4cmOwMioBG{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.JFHaPY7sFZ ._4cmOwMioBG>span{font-size:8px}._52-0IAR\+Vl .ant-popover-inner-content{padding:0}._52-0IAR\+Vl .ant-popover-arrow{border-color:#475365 !important}._52-0IAR\+Vl .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.DglLcJqHgf{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.u6vEaMkaw3{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.u6vEaMkaw3 .MryALP9VMz{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.sUYvdLNY-w{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.PmK3sfeTBu{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.PmK3sfeTBu{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.sN-4LijAZm{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.FyKjlGruI5 html,.FyKjlGruI5 body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.FyKjlGruI5 body,.FyKjlGruI5 div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.FyKjlGruI5 textarea{border:none !important;padding-left:0 !important}.FyKjlGruI5 table,.FyKjlGruI5 tr,.FyKjlGruI5 td{page-break-inside:avoid}.FyKjlGruI5 div{page-break-inside:avoid}.FyKjlGruI5 thead{display:table-header-group}.FyKjlGruI5 tfoot{display:table-footer-group}.FyKjlGruI5 *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.FyKjlGruI5 .ixKHa0bfzf,.FyKjlGruI5 .no-print,.FyKjlGruI5 .react-resizable-handle,.FyKjlGruI5 .fc-whiteboard-toolbar,.FyKjlGruI5 .ant-modal-root,.FyKjlGruI5 .ant-alert,.FyKjlGruI5 .o0-LTvOSl2,.FyKjlGruI5 .ANhkVdaaNx{display:none !important}.FyKjlGruI5 .Ebz9cwV3Rc{display:none !important}}.MH6RU5vdhO{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:50px;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.MH6RU5vdhO .DHiinXSM6l{background:#fff;height:8px;right:8px;border-radius:50%;-webkit-box-flex:0;-ms-flex:0 0 8px;flex:0 0 8px;margin-right:16px;margin-top:10px}.MH6RU5vdhO .KvDze2nltJ{font-size:18px;color:#fff;font-weight:bold}
.PNes\+2FrPv{width:100%;height:100%;position:relative;min-width:100px;min-height:100px;max-height:32vh;padding:16px;background:#0e1b6d;background:radial-gradient(circle, rgba(0,0,0,0) 70%, #0e1b6d 100%)}.PNes\+2FrPv .F\+lPvjihZF{position:absolute;z-index:2}.PNes\+2FrPv .oseyw4xBWT{position:absolute;width:10px;height:100%;top:0;z-index:1;background-size:2px 10px;background-repeat:repeat-y;background-image:-webkit-gradient(linear, left top, left bottom, color-stop(25%, #0e1b5b), color-stop(0%, #0e1b6d));background-image:linear-gradient(to bottom, #0e1b5b 25%, #0e1b6d 0%)}.PNes\+2FrPv ._6OhWGS6qKY{position:absolute;width:10px;height:100%;top:0;z-index:1;background-size:2px 10px;background-repeat:repeat-y;background-image:-webkit-gradient(linear, left top, left bottom, color-stop(25%, #0e1b5b), color-stop(0%, #0e1b6d));background-image:linear-gradient(to bottom, #0e1b5b 25%, #0e1b6d 0%);right:0;background-position:right}.PNes\+2FrPv .\+hxMycttlB{position:absolute;width:10px;height:100%;top:0;z-index:1;background-size:2px 10px;background-repeat:repeat-y;background-image:-webkit-gradient(linear, left top, left bottom, color-stop(25%, #0e1b5b), color-stop(0%, #0e1b6d));background-image:linear-gradient(to bottom, #0e1b5b 25%, #0e1b6d 0%);left:0;background-position:left}.PNes\+2FrPv .DnnT3P06Ql{position:absolute;width:100%;height:10px;left:0;z-index:1;background-size:10px 2px;background-repeat:repeat-x;background-image:-webkit-gradient(linear, left top, right top, color-stop(25%, #0e1b5b), color-stop(0%, #0e1b6d));background-image:linear-gradient(to right, #0e1b5b 25%, #0e1b6d 0%)}.PNes\+2FrPv .PEyzVTPSH3{position:absolute;width:100%;height:10px;left:0;z-index:1;background-size:10px 2px;background-repeat:repeat-x;background-image:-webkit-gradient(linear, left top, right top, color-stop(25%, #0e1b5b), color-stop(0%, #0e1b6d));background-image:linear-gradient(to right, #0e1b5b 25%, #0e1b6d 0%);top:0;background-position:top}.PNes\+2FrPv .X-Bl-T512w{position:absolute;width:100%;height:10px;left:0;z-index:1;background-size:10px 2px;background-repeat:repeat-x;background-image:-webkit-gradient(linear, left top, right top, color-stop(25%, #0e1b5b), color-stop(0%, #0e1b6d));background-image:linear-gradient(to right, #0e1b5b 25%, #0e1b6d 0%);bottom:0;background-position:bottom}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.MqmZqS5suQ{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.VqTcnpCJ0F{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.n9--1UWb5L{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.n9--1UWb5L>i,.n9--1UWb5L>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}._1yZB\+OQ2JK{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.YzsFzo3-k9{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.GOHXcpom0I{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.ktjyoPZ\+fk{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.N4w8elUVxQ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.P5aof6Mpzi{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._8RK\+KBbvvI{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}._8RK\+KBbvvI .ChIXP8AjAJ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}._8RK\+KBbvvI .ChIXP8AjAJ>span{color:rgba(0,0,0,0.65)}.bI7D-G9F8N{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.bI7D-G9F8N .J7N5j-Vn7E{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.bI7D-G9F8N .J7N5j-Vn7E>span{font-size:8px}.YTuvSa\+2Bd .ant-popover-inner-content{padding:0}.YTuvSa\+2Bd .ant-popover-arrow{border-color:#475365 !important}.YTuvSa\+2Bd .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.rQDEjngrAr{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}._3ruMrjTTrF{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._3ruMrjTTrF ._3lKhdmaO\+Z{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.q56KPAalL9{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.c5Ye8Yi-SX{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.c5Ye8Yi-SX{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.DvQoUV\+BPy{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{._4wdr2Zn8O5 html,._4wdr2Zn8O5 body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}._4wdr2Zn8O5 body,._4wdr2Zn8O5 div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}._4wdr2Zn8O5 textarea{border:none !important;padding-left:0 !important}._4wdr2Zn8O5 table,._4wdr2Zn8O5 tr,._4wdr2Zn8O5 td{page-break-inside:avoid}._4wdr2Zn8O5 div{page-break-inside:avoid}._4wdr2Zn8O5 thead{display:table-header-group}._4wdr2Zn8O5 tfoot{display:table-footer-group}._4wdr2Zn8O5 *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}._4wdr2Zn8O5 .-RWIFf7SAJ,._4wdr2Zn8O5 .no-print,._4wdr2Zn8O5 .react-resizable-handle,._4wdr2Zn8O5 .fc-whiteboard-toolbar,._4wdr2Zn8O5 .ant-modal-root,._4wdr2Zn8O5 .ant-alert,._4wdr2Zn8O5 .ZcVnQS16Zt,._4wdr2Zn8O5 .Iw1-orMiUJ{display:none !important}._4wdr2Zn8O5 .RIRWM\+cd7v{display:none !important}}.KNtgvS3dgu{-webkit-box-flex:1;-ms-flex:1 1 1px;flex:1 1 1px;width:100%}.L8UBRD1vWd{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;height:700px}.L8UBRD1vWd .ClkMLw-pW1{-webkit-box-flex:0;-ms-flex:0 0 225px;flex:0 0 225px;max-width:225px;height:220px;color:#00f0c5;background:#06316d;background:radial-gradient(circle, rgba(0,0,0,0) 70%, #06316d 100%);margin-bottom:16px;padding:8px 16px}.L8UBRD1vWd .ClkMLw-pW1 .YiwdYlkH6v{font-weight:bold;font-size:16px;color:white}.L8UBRD1vWd .EDue\+xv-YB{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:80px;margin:4px 0}.L8UBRD1vWd .EDue\+xv-YB img{height:90%}.L8UBRD1vWd .rDVihr7L64{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:30px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:8px}.L8UBRD1vWd .rDVihr7L64 div,.L8UBRD1vWd .rDVihr7L64 img{height:20px;width:20px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.L8UBRD1vWd .rDVihr7L64 .ZVR4fKZRyI>div{height:14px;width:14px;border-radius:50%}.L8UBRD1vWd .rDVihr7L64 div{background-color:#009efa;border-radius:50%}.L8UBRD1vWd .V-s7NtdCzk{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;font-size:16px}.L8UBRD1vWd .V-s7NtdCzk .ant-divider-vertical{background-color:#009efa}.L8UBRD1vWd .V-s7NtdCzk .IkrzAzC\+VS{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;color:#009efa;-webkit-box-flex:1;-ms-flex:1 1 1px;flex:1 1 1px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.\-1g4DsQmxo{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-top:16px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.\-1g4DsQmxo .ant-progress-circle-trail{display:none}.\-1g4DsQmxo .ant-progress-text{color:#009efa}.\-1g4DsQmxo .qXnobqP\+ND .YiwdYlkH6v{font-size:17px}.\-1g4DsQmxo .qXnobqP\+ND .ioYvkIQyF\+{font-size:14px;margin-top:4px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.EHFAF47Dpi{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}._7mCChlPOJt{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.dVf7nsOAh3{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.dVf7nsOAh3>i,.dVf7nsOAh3>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.RQx\+tbuu14{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._9vue4p0unJ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}._2bzbNfaJxD{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.KpAUEQm0nN{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.kRu9e6H-gl{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.XXxf-XyuCI{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.za-jh8q9sl{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.za-jh8q9sl .gkBD3A1kIc{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.za-jh8q9sl .gkBD3A1kIc>span{color:rgba(0,0,0,0.65)}.k7KZxxZ5WZ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.k7KZxxZ5WZ .UDf3d4fV3O{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.k7KZxxZ5WZ .UDf3d4fV3O>span{font-size:8px}.KdW4WA1gEU .ant-popover-inner-content{padding:0}.KdW4WA1gEU .ant-popover-arrow{border-color:#475365 !important}.KdW4WA1gEU .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.CE\+rNoFDYK{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.dvBoZgDVcS{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.dvBoZgDVcS ._3KThFYZmvy{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.gMs916L5zY{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.ItdFF2GeaT{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.ItdFF2GeaT{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.B995eDFTk3{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.p4CcFEHFFP html,.p4CcFEHFFP body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.p4CcFEHFFP body,.p4CcFEHFFP div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.p4CcFEHFFP textarea{border:none !important;padding-left:0 !important}.p4CcFEHFFP table,.p4CcFEHFFP tr,.p4CcFEHFFP td{page-break-inside:avoid}.p4CcFEHFFP div{page-break-inside:avoid}.p4CcFEHFFP thead{display:table-header-group}.p4CcFEHFFP tfoot{display:table-footer-group}.p4CcFEHFFP *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.p4CcFEHFFP .Knz4TNWkJM,.p4CcFEHFFP .no-print,.p4CcFEHFFP .react-resizable-handle,.p4CcFEHFFP .fc-whiteboard-toolbar,.p4CcFEHFFP .ant-modal-root,.p4CcFEHFFP .ant-alert,.p4CcFEHFFP .WnQSXZG3In,.p4CcFEHFFP .TNTwfpqcZf{display:none !important}.p4CcFEHFFP .JkU3XJtlnl{display:none !important}}.r97A7FbkhK{width:100vw;height:100vh;overflow:auto}.r97A7FbkhK .QzmMfzoWrq{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;background-color:rgba(18, 12, 57);min-width:1920px;min-height:1080px;overflow:hidden;padding:0 36px;padding-bottom:24px;-webkit-transform:scale(1);transform:scale(1);-webkit-transform-origin:top;transform-origin:top}.GGjNfn03WV{padding:0 20%;width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.GGjNfn03WV ._3KThFYZmvy{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#00f0c5;font-size:30px;height:80px;min-width:800px;padding-bottom:10px;width:100%}.DXd\+7tk3\+r{display:-webkit-box;display:-ms-flexbox;display:flex;height:calc(100% - 80px)}.DXd\+7tk3\+r .prFQYhybpI{-webkit-box-flex:0;-ms-flex:0 0 500px;flex:0 0 500px;margin-right:24px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.DXd\+7tk3\+r .prFQYhybpI .Ml0wqPR6s3{margin-top:0;margin-bottom:0;-webkit-box-flex:0;-ms-flex:0 0 80px;flex:0 0 80px}.DXd\+7tk3\+r .BptYnYiUJ5{-webkit-box-flex:1;-ms-flex:1 1 1px;flex:1 1 1px;margin-right:24px}.DXd\+7tk3\+r .Tjh9HEsXSO{-webkit-box-flex:1;-ms-flex:1 1 1px;flex:1 1 1px}
.jjo1CEyRxD{position:relative;height:200px;width:200px}.xph3rb\+9OG{background:#009efa;width:25px;height:25px;-webkit-box-shadow:0 0 10px 5px #009efa;box-shadow:0 0 10px 5px #009efa;position:absolute;top:62%;left:50%;-webkit-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%);border-radius:50%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.xph3rb\+9OG .EyBiWdG4nN{width:10px;height:10px;background-color:white;border-radius:50%}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.CND7bc\+OlR{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.wJuizXsyAz{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}._5eXNAcSjhp{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}._5eXNAcSjhp>i,._5eXNAcSjhp>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.FMeqnOLjwW{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.ltHzrmDd05{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.SFdPf-WNHr{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.EyU74Owie-{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.CgDYfBzu0z{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.G\+dHmBNHBF{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.g2djgYb7sL{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.g2djgYb7sL .j1jsiqmUOw{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.g2djgYb7sL .j1jsiqmUOw>span{color:rgba(0,0,0,0.65)}.EtAckUn\+0h{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.EtAckUn\+0h .iDwFupZwYw{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.EtAckUn\+0h .iDwFupZwYw>span{font-size:8px}.R0VRJ4DqtY .ant-popover-inner-content{padding:0}.R0VRJ4DqtY .ant-popover-arrow{border-color:#475365 !important}.R0VRJ4DqtY .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.qfY5BVUb4O{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.jQRt3dWAXP{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.jQRt3dWAXP .I8vCzYj4lr{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.l-VasjdTJS{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.Lbme8oX3eb{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.Lbme8oX3eb{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.u1S53ncYDY{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.rk0dn79Fbd html,.rk0dn79Fbd body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.rk0dn79Fbd body,.rk0dn79Fbd div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.rk0dn79Fbd textarea{border:none !important;padding-left:0 !important}.rk0dn79Fbd table,.rk0dn79Fbd tr,.rk0dn79Fbd td{page-break-inside:avoid}.rk0dn79Fbd div{page-break-inside:avoid}.rk0dn79Fbd thead{display:table-header-group}.rk0dn79Fbd tfoot{display:table-footer-group}.rk0dn79Fbd *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.rk0dn79Fbd .ds0EpgIW7D,.rk0dn79Fbd .no-print,.rk0dn79Fbd .react-resizable-handle,.rk0dn79Fbd .fc-whiteboard-toolbar,.rk0dn79Fbd .ant-modal-root,.rk0dn79Fbd .ant-alert,.rk0dn79Fbd .a\+iSPfVgF0,.rk0dn79Fbd .pW7LKjxkCz{display:none !important}.rk0dn79Fbd .hUisIln\+f9{display:none !important}}.XSbYS6UR9r{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;height:100%;width:100%;max-width:750px}.XSbYS6UR9r>div{margin-top:16px;width:100%;-webkit-box-flex:1;-ms-flex:1 1 1px;flex:1 1 1px}.XSbYS6UR9r>.EGqTY7ynQN{-webkit-box-flex:.6;-ms-flex:.6 .6 1px;flex:.6 .6 1px}._4bvjd4okvn{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-top:-16px}._4bvjd4okvn>div{width:100%}._1Ru5z0xvOp{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:calc(100% - 80px);-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.Oc96Z9ab6\+{color:#009efa}.Oc96Z9ab6\+ .tKmv7yaxpB{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;font-size:16px}.Oc96Z9ab6\+ .zzJNmvqZp8{height:220px;overflow:auto;overflow-x:hidden;padding-bottom:24px;color:#fff}.Oc96Z9ab6\+ .zzJNmvqZp8 ul{padding-left:0 !important}.Oc96Z9ab6\+ .zzJNmvqZp8 li{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:30px;list-style:none;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}
.YKEF9K4evd{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.YKEF9K4evd>div:first-child{-webkit-transform:translateX(-100px) translateY(10px);transform:translateX(-100px) translateY(10px)}.JE8AQCzSx4{position:absolute;width:220px;color:white;right:2.5%;top:60%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.JE8AQCzSx4 .XWg2AN19iM{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:50px}.JE8AQCzSx4 .XWg2AN19iM ._4i3lML5mrx{-webkit-box-flex:0;-ms-flex:0 0 10px;flex:0 0 10px;height:10px;margin-right:16px}.JE8AQCzSx4 .XWg2AN19iM .L8DmgRbOQk,.JE8AQCzSx4 .XWg2AN19iM .UfqqvMI3mC{-webkit-box-flex:1;-ms-flex:1 1 1px;flex:1 1 1px;color:#009efa}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.ZwsCRzLVCL{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.w93UpqvN2R{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.VZnH44kmTV{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.VZnH44kmTV>i,.VZnH44kmTV>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.oHNF6kfnAb{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.MEXzFAfWnH{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.l6Nqzu269z{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.X-\+zVIzjeh{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.o8y5RuFhyZ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.-xiYEfnUU7{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.QpniTK\+hS2{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.QpniTK\+hS2 .np2BTbiKOh{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.QpniTK\+hS2 .np2BTbiKOh>span{color:rgba(0,0,0,0.65)}.XlwnqlL0Xd{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.XlwnqlL0Xd ._2TQWzBq9FB{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.XlwnqlL0Xd ._2TQWzBq9FB>span{font-size:8px}.hm1Rb5x\+bk .ant-popover-inner-content{padding:0}.hm1Rb5x\+bk .ant-popover-arrow{border-color:#475365 !important}.hm1Rb5x\+bk .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.pRxGQB21Lh{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.Qve\+KyYL5s{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.Qve\+KyYL5s .bVQldZWGOp{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.ZCYGa9q74T{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.zU8t9l23GU{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.zU8t9l23GU{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.\+3AdS0jOii{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.LuXLU0XIj7 html,.LuXLU0XIj7 body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.LuXLU0XIj7 body,.LuXLU0XIj7 div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.LuXLU0XIj7 textarea{border:none !important;padding-left:0 !important}.LuXLU0XIj7 table,.LuXLU0XIj7 tr,.LuXLU0XIj7 td{page-break-inside:avoid}.LuXLU0XIj7 div{page-break-inside:avoid}.LuXLU0XIj7 thead{display:table-header-group}.LuXLU0XIj7 tfoot{display:table-footer-group}.LuXLU0XIj7 *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.LuXLU0XIj7 .A6EMmP0qEt,.LuXLU0XIj7 .no-print,.LuXLU0XIj7 .react-resizable-handle,.LuXLU0XIj7 .fc-whiteboard-toolbar,.LuXLU0XIj7 .ant-modal-root,.LuXLU0XIj7 .ant-alert,.LuXLU0XIj7 .qns2JKUq7T,.LuXLU0XIj7 .GeeE-JDc6Q{display:none !important}.LuXLU0XIj7 .NtuFABFQW8{display:none !important}}.bhbDLiKVzJ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;height:100%;width:100%}.bhbDLiKVzJ>div{margin-top:16px;width:100%;-webkit-box-flex:1;-ms-flex:1 1 1px;flex:1 1 1px}.bhbDLiKVzJ>.cFIB3bQBNC{-webkit-box-flex:0;-ms-flex:0 0 320px;flex:0 0 320px;height:320px}.fGy9qshde\+{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.WFx29eLtMU{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}._0EKkG0E2h7{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.k2nb-hnk7\+{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.k2nb-hnk7\+>i,.k2nb-hnk7\+>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.hpzFmOE4mM{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.rPG8GDW-hU{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.IklKIUqSfw{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.tysQDGbXtJ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.mOQqv3C2V6{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.YFxBCP9bcB{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.AF7SsTg0yh{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.AF7SsTg0yh .MguKUe23Ql{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.AF7SsTg0yh .MguKUe23Ql>span{color:rgba(0,0,0,0.65)}.r\+qlt6di0w{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.r\+qlt6di0w .QR-kcUjh3m{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.r\+qlt6di0w .QR-kcUjh3m>span{font-size:8px}.wZXP2MOllH .ant-popover-inner-content{padding:0}.wZXP2MOllH .ant-popover-arrow{border-color:#475365 !important}.wZXP2MOllH .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}._71YBR6T1z1{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.FPkqs8TOmU{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.FPkqs8TOmU .Hjw-W4WetP{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.auppBN0GFj{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.NCxa63bx-5{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.NCxa63bx-5{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.gZ3XWlipMi{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.ReRGhTPzsW html,.ReRGhTPzsW body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.ReRGhTPzsW body,.ReRGhTPzsW div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.ReRGhTPzsW textarea{border:none !important;padding-left:0 !important}.ReRGhTPzsW table,.ReRGhTPzsW tr,.ReRGhTPzsW td{page-break-inside:avoid}.ReRGhTPzsW div{page-break-inside:avoid}.ReRGhTPzsW thead{display:table-header-group}.ReRGhTPzsW tfoot{display:table-footer-group}.ReRGhTPzsW *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.ReRGhTPzsW ._32jG6Sohaw,.ReRGhTPzsW .no-print,.ReRGhTPzsW .react-resizable-handle,.ReRGhTPzsW .fc-whiteboard-toolbar,.ReRGhTPzsW .ant-modal-root,.ReRGhTPzsW .ant-alert,.ReRGhTPzsW .kRoWo5Stwd,.ReRGhTPzsW ._2RM5Q9yp8S{display:none !important}.ReRGhTPzsW .AoE4xQjg6W{display:none !important}}.Z7PVCqEetB{height:100%}.Z7PVCqEetB .mG7ZTsCx9v{-webkit-box-flex:1;-ms-flex:1 1 1px;flex:1 1 1px;min-height:320px;margin-right:16px}.Z7PVCqEetB .mG7ZTsCx9v .tjRKRkNKZg{background-color:#eff5fe}.Z7PVCqEetB .mG7ZTsCx9v .qcCexM9vOK>th{font-size:12px;color:#a8acb8;font-weight:normal;background-color:#fff}.Z7PVCqEetB .mG7ZTsCx9v:not(:last-child){margin-right:18px}.Z7PVCqEetB .mG7ZTsCx9v:not(:last-child) .KGl38QOa9c{right:13px;bottom:6px}.Z7PVCqEetB .mG7ZTsCx9v:not(:last-child) ._5\+2kP35FGe{left:18px;bottom:22px}.Z7PVCqEetB .pNc6KYNNod{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;min-height:230px;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.Z7PVCqEetB .pNc6KYNNod ._8tiuFVMxv9:not(:first-child){-ms-flex-item-align:end;align-self:flex-end}.Z7PVCqEetB .pNc6KYNNod ._8tiuFVMxv9:not(:first-child) .VVmpRLH2DU .KGl38QOa9c{position:absolute;right:15px;bottom:6px}.Z7PVCqEetB .pNc6KYNNod ._8tiuFVMxv9:not(:first-child) .VVmpRLH2DU ._5\+2kP35FGe{position:absolute;left:18px;bottom:22px}.Z7PVCqEetB .pNc6KYNNod ._8tiuFVMxv9:not(:first-child) .VVmpRLH2DU .S4goYFJY7t{left:50%}.Z7PVCqEetB .pNc6KYNNod ._8tiuFVMxv9:not(:first-child) .GDHoxmufbh .SQvZarCwfY{margin-left:16px}.Z7PVCqEetB .pNc6KYNNod ._8tiuFVMxv9:not(:first-child) .GDHoxmufbh .gbSNXTysdI{margin-left:16px}.Z7PVCqEetB .pNc6KYNNod ._8tiuFVMxv9{width:150px}.Z7PVCqEetB .pNc6KYNNod ._8tiuFVMxv9 .VVmpRLH2DU{height:165px;position:relative}.Z7PVCqEetB .pNc6KYNNod ._8tiuFVMxv9 .VVmpRLH2DU .KGl38QOa9c{position:absolute;right:7px;bottom:7px}.Z7PVCqEetB .pNc6KYNNod ._8tiuFVMxv9 .VVmpRLH2DU ._5\+2kP35FGe{position:absolute;left:20px;bottom:23px}.Z7PVCqEetB .pNc6KYNNod ._8tiuFVMxv9 .VVmpRLH2DU .S4goYFJY7t{position:absolute;bottom:7px;left:54%;-webkit-transform:translateX(-50%);transform:translateX(-50%);color:#fff;font-weight:bold}.Z7PVCqEetB .pNc6KYNNod ._8tiuFVMxv9 .GDHoxmufbh{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.Z7PVCqEetB .pNc6KYNNod ._8tiuFVMxv9 .GDHoxmufbh .\+-ar353Y8w{color:#576787;font-weight:bold}.Z7PVCqEetB .pNc6KYNNod ._8tiuFVMxv9 .GDHoxmufbh .SQvZarCwfY{color:#576787;font-weight:bold;margin-left:17px}.Z7PVCqEetB .pNc6KYNNod ._8tiuFVMxv9 .GDHoxmufbh .gbSNXTysdI{color:#fff;width:116px;margin-left:17px;text-align:center;border-radius:12px;background-color:#576787}.Z7PVCqEetB .ant-table-row{color:#576787}.Z7PVCqEetB .slick-track>div{height:auto;height:initial}._85w3SPmOr-{width:100vw;height:100vh}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.KggAaC-pIR{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.TXvY6lbwp1{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.y4\+sgtYkZR{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.y4\+sgtYkZR>i,.y4\+sgtYkZR>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.zAuH1G0XCB{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.W1LsQbpWi7{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.zvhJTUkbST{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.QkuHJUE3Ut{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.N1Fc0HXw8S{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.TkUkjrgrCu{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._69FA04jMYa{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}._69FA04jMYa .NEBOakXgKA{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}._69FA04jMYa .NEBOakXgKA>span{color:rgba(0,0,0,0.65)}.l\+DoGMmWo0{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.l\+DoGMmWo0 .I51Cxmkchz{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.l\+DoGMmWo0 .I51Cxmkchz>span{font-size:8px}.QxHC7Yw\+XD .ant-popover-inner-content{padding:0}.QxHC7Yw\+XD .ant-popover-arrow{border-color:#475365 !important}.QxHC7Yw\+XD .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.P8P9rcvZ73{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.gi9\+VQlQ40{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.gi9\+VQlQ40 .cBGcP\+2-kP{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.Ft61dpAjHU{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.afrSulp5rB{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.afrSulp5rB{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.oTmoWOmzn1{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.i536X0suFl html,.i536X0suFl body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.i536X0suFl body,.i536X0suFl div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.i536X0suFl textarea{border:none !important;padding-left:0 !important}.i536X0suFl table,.i536X0suFl tr,.i536X0suFl td{page-break-inside:avoid}.i536X0suFl div{page-break-inside:avoid}.i536X0suFl thead{display:table-header-group}.i536X0suFl tfoot{display:table-footer-group}.i536X0suFl *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.i536X0suFl .nlWuhhaODC,.i536X0suFl .no-print,.i536X0suFl .react-resizable-handle,.i536X0suFl .fc-whiteboard-toolbar,.i536X0suFl .ant-modal-root,.i536X0suFl .ant-alert,.i536X0suFl .VUg6zDJHOB,.i536X0suFl .KNR3CNDuet{display:none !important}.i536X0suFl ._18k90t0AUl{display:none !important}}.Fm1HN7SOi6{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.Fm1HN7SOi6 .iJEolEC02m{padding:16px}.Fm1HN7SOi6 .iJEolEC02m ._6cTXzgruod{font-size:14px;margin-top:24px;color:rgba(0,0,0,0.65)}.Fm1HN7SOi6 .iJEolEC02m ._6cTXzgruod .\+1ueuVSRoq{color:#fff;background-color:#6874e2}.Fm1HN7SOi6 .\-5rDewXkOZ{font-size:16;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:rgba(0,0,0,0.75)}.Fm1HN7SOi6 .xtmzCcbxlO{margin:24px 0;font-size:14px;display:inline-block;color:rgba(0,0,0,0.65)}.Fm1HN7SOi6 .W1LsQbpWi7{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.Fm1HN7SOi6 .JvggjYBL51{margin-top:24px}.Fm1HN7SOi6 .JvggjYBL51 .FBHvC01s8G{margin-top:12px}.Fm1HN7SOi6 .JvggjYBL51 .FBHvC01s8G>span{font-size:14px;margin-right:12px;display:inline-block;color:rgba(0,0,0,0.65)}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.bEHfuhrMVq{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.YDgO\+Wq-Vg{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.\+Vg2bkBCsi{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.\+Vg2bkBCsi>i,.\+Vg2bkBCsi>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.Gm3djXQpTc{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.g\+LQCsvK48{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.q\+a\+RlwRkY{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.W60g3B1rs0{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}._6GhwKY3dMR{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.xXY-VKsrgr{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.QfUOnedbH7{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.QfUOnedbH7 .Qd3lft4dxn{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.QfUOnedbH7 .Qd3lft4dxn>span{color:rgba(0,0,0,0.65)}.-ArtE1XAlP{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.-ArtE1XAlP .at50nJad1h{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.-ArtE1XAlP .at50nJad1h>span{font-size:8px}.\+oLPbtrJlu .ant-popover-inner-content{padding:0}.\+oLPbtrJlu .ant-popover-arrow{border-color:#475365 !important}.\+oLPbtrJlu .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.EiT1nhLF2z{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.eTJLmr4UVi{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.eTJLmr4UVi .WCcZzpskIJ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.eYy-kChAjS{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.rnAr6d5aLu{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.rnAr6d5aLu{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}._1YEua1m4UX{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.TTDKnN6Jr\+ html,.TTDKnN6Jr\+ body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.TTDKnN6Jr\+ body,.TTDKnN6Jr\+ div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.TTDKnN6Jr\+ textarea{border:none !important;padding-left:0 !important}.TTDKnN6Jr\+ table,.TTDKnN6Jr\+ tr,.TTDKnN6Jr\+ td{page-break-inside:avoid}.TTDKnN6Jr\+ div{page-break-inside:avoid}.TTDKnN6Jr\+ thead{display:table-header-group}.TTDKnN6Jr\+ tfoot{display:table-footer-group}.TTDKnN6Jr\+ *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.TTDKnN6Jr\+ .U9ZwsbKyNX,.TTDKnN6Jr\+ .no-print,.TTDKnN6Jr\+ .react-resizable-handle,.TTDKnN6Jr\+ .fc-whiteboard-toolbar,.TTDKnN6Jr\+ .ant-modal-root,.TTDKnN6Jr\+ .ant-alert,.TTDKnN6Jr\+ .fJ6RQdmnJS,.TTDKnN6Jr\+ .l61Q4B7vLC{display:none !important}.TTDKnN6Jr\+ ._5nqrZ1JXbU{display:none !important}}.loMGpzPedS{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;padding:24px;padding-top:8px;overflow:auto}.loMGpzPedS .VdvoSuikpi{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-top:16px}.loMGpzPedS .VdvoSuikpi .WVNQHnTU5f{color:#fff;background-color:#6874e2}.loMGpzPedS .ant-tabs-content-holder{display:none}.NvX8CUOIh6 .VdvoSuikpi{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:5px 10px 0 10px;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.NvX8CUOIh6 .hvWkjobS4s{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-ms-flex-wrap:wrap;flex-wrap:wrap;min-height:40px;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;padding:5px 0}.O7Ch6am\+e8 .ant-table-column-sort{background-color:transparent !important}.O7Ch6am\+e8 .ant-table-thead th.ant-table-column-sort:hover{background-color:#fafafa !important}.O7Ch6am\+e8 .ant-table-tbody td.ant-table-column-sort{background-color:transparent !important}.O7Ch6am\+e8 .ant-table-tbody tr:hover td.ant-table-column-sort{background-color:#fafafa !important}.O7Ch6am\+e8 .ant-table-thead th{background-color:#fafafa !important}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.kOLt5XZTiM{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.Q4euvcSDgr{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.PCQgc4\+xOm{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.PCQgc4\+xOm>i,.PCQgc4\+xOm>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.d9V2NZ3PoY{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.eORE100PFN{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.aogx4CY0SU{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.kHv2Knsx9E{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.Om\+2\+3w9Ci{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.zqcJFxKoJw{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.L2GEj07CCn{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.L2GEj07CCn .nO4HHWVHVW{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.L2GEj07CCn .nO4HHWVHVW>span{color:rgba(0,0,0,0.65)}.M62um9Fi\+b{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.M62um9Fi\+b .jCNqwA\+HId{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.M62um9Fi\+b .jCNqwA\+HId>span{font-size:8px}.yB1xantFS6 .ant-popover-inner-content{padding:0}.yB1xantFS6 .ant-popover-arrow{border-color:#475365 !important}.yB1xantFS6 .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.cBvv87Gsow{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.OT3Uv-B3uP{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.OT3Uv-B3uP ._2IKcDQIYQv{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.hw3-xXsbcV{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.\+fODmBANTt{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.\+fODmBANTt{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.C\+VgkvDV9M{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.vjXEEMyK2t html,.vjXEEMyK2t body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.vjXEEMyK2t body,.vjXEEMyK2t div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.vjXEEMyK2t textarea{border:none !important;padding-left:0 !important}.vjXEEMyK2t table,.vjXEEMyK2t tr,.vjXEEMyK2t td{page-break-inside:avoid}.vjXEEMyK2t div{page-break-inside:avoid}.vjXEEMyK2t thead{display:table-header-group}.vjXEEMyK2t tfoot{display:table-footer-group}.vjXEEMyK2t *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.vjXEEMyK2t .GJ3PQlFeEP,.vjXEEMyK2t .no-print,.vjXEEMyK2t .react-resizable-handle,.vjXEEMyK2t .fc-whiteboard-toolbar,.vjXEEMyK2t .ant-modal-root,.vjXEEMyK2t .ant-alert,.vjXEEMyK2t .ZpPDtnjyho,.vjXEEMyK2t .rvceYU39h1{display:none !important}.vjXEEMyK2t .m632M3-8xw{display:none !important}}.VrNPYwyaEt{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;padding:24px;padding-top:0;overflow:auto}
.SUaCJaxBj-{padding:24px 12px}.SUaCJaxBj- .ant-timeline-item-label{width:calc(30% - 12px) !important}.SUaCJaxBj- .ant-timeline-item-tail{left:30% !important}.SUaCJaxBj- .ant-timeline-item-content{left:calc(30% - 4px) !important;width:calc(70% - 14px) !important}.SUaCJaxBj- .ant-timeline-item-head{left:30% !important}.SUaCJaxBj- .ant-btn-link{padding:0}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}._8GEFXZOgJ3{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}._1FsYEpP5Oa{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.GTpw4rkSo2{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.GTpw4rkSo2>i,.GTpw4rkSo2>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.xSxzua3ByE{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._4MUbnWCqwB{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.MbSkwcUIJV{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.b5CjgnlDj5{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.DbgjQ4FPhI{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.mLnQuptXZ5{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.nWLpqE\+3eN{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.nWLpqE\+3eN .LoHWf3P1tu{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.nWLpqE\+3eN .LoHWf3P1tu>span{color:rgba(0,0,0,0.65)}._2-C49XcznR{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}._2-C49XcznR .h-HCdG35yV{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}._2-C49XcznR .h-HCdG35yV>span{font-size:8px}.VQ5xvuwCr2 .ant-popover-inner-content{padding:0}.VQ5xvuwCr2 .ant-popover-arrow{border-color:#475365 !important}.VQ5xvuwCr2 .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.ch6VvDrtKn{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.kUW0mObN1X{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.kUW0mObN1X .O8sA7f4c0c{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.zvfxAk1gSf{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.Cl9N1HzQjm{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.Cl9N1HzQjm{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.zW0qYf2IMj{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.rQhQ146Kqj html,.rQhQ146Kqj body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.rQhQ146Kqj body,.rQhQ146Kqj div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.rQhQ146Kqj textarea{border:none !important;padding-left:0 !important}.rQhQ146Kqj table,.rQhQ146Kqj tr,.rQhQ146Kqj td{page-break-inside:avoid}.rQhQ146Kqj div{page-break-inside:avoid}.rQhQ146Kqj thead{display:table-header-group}.rQhQ146Kqj tfoot{display:table-footer-group}.rQhQ146Kqj *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.rQhQ146Kqj .Y99s8z6tHC,.rQhQ146Kqj .no-print,.rQhQ146Kqj .react-resizable-handle,.rQhQ146Kqj .fc-whiteboard-toolbar,.rQhQ146Kqj .ant-modal-root,.rQhQ146Kqj .ant-alert,.rQhQ146Kqj ._8KM3POMxtz,.rQhQ146Kqj .nKxWodUjJz{display:none !important}.rQhQ146Kqj .TzTgcEalBx{display:none !important}}.ycOSii-Li2{background-color:#fff}.ycOSii-Li2 .NbhxQDQl-h{width:120px}.sbBhj2G2YK{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;margin:24px 0}.sbBhj2G2YK>div:first-child{width:100%;margin-bottom:18px}.sbBhj2G2YK .ant-statistic{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap;font-weight:bold}.sbBhj2G2YK .ant-statistic>div:first-child{color:#000;margin-bottom:0}.sbBhj2G2YK .ant-statistic>div:last-child{font-size:14px !important}.sbBhj2G2YK .ant-statistic>div:last-child{color:#fa6400;margin-left:12px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.u9h8SOq5Tl{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}._0x9k4M-zad{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.fq-fOazMid{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.fq-fOazMid>i,.fq-fOazMid>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.\+gWH0C9CuC{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.ooELf9xRLX{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.SlMbitBMY9{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}._8KVuZ3epn7{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.E32m7oZy3R{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.QZpCrro6Kd{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.q8GtfgQ5jg{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.q8GtfgQ5jg .ZT5Wx\+flWu{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.q8GtfgQ5jg .ZT5Wx\+flWu>span{color:rgba(0,0,0,0.65)}.zqFRSUtFTQ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.zqFRSUtFTQ .nzhnW-8w50{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.zqFRSUtFTQ .nzhnW-8w50>span{font-size:8px}.XAvG2uxJeR .ant-popover-inner-content{padding:0}.XAvG2uxJeR .ant-popover-arrow{border-color:#475365 !important}.XAvG2uxJeR .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.dAr7Bl-Xqk{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.-QqfLBaYjb{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.-QqfLBaYjb .yK3S66RZuF{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.tFJm8MSN8h{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.oCmPS4H4AG{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.oCmPS4H4AG{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.rrNen7KXLl{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.pmQV5DuCrS html,.pmQV5DuCrS body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.pmQV5DuCrS body,.pmQV5DuCrS div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.pmQV5DuCrS textarea{border:none !important;padding-left:0 !important}.pmQV5DuCrS table,.pmQV5DuCrS tr,.pmQV5DuCrS td{page-break-inside:avoid}.pmQV5DuCrS div{page-break-inside:avoid}.pmQV5DuCrS thead{display:table-header-group}.pmQV5DuCrS tfoot{display:table-footer-group}.pmQV5DuCrS *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.pmQV5DuCrS .MK0X0LbwCL,.pmQV5DuCrS .no-print,.pmQV5DuCrS .react-resizable-handle,.pmQV5DuCrS .fc-whiteboard-toolbar,.pmQV5DuCrS .ant-modal-root,.pmQV5DuCrS .ant-alert,.pmQV5DuCrS ._3VpmI5IWbU,.pmQV5DuCrS .ZkIChbbYpd{display:none !important}.pmQV5DuCrS .QpVH2EQQE7{display:none !important}}.OsDJ8fgxNJ{background-color:#fff}.OsDJ8fgxNJ ._8iatEU3Jks{width:120px}.f\+Kx9V4Wa1{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;margin:24px 0}.f\+Kx9V4Wa1>div:first-child{width:100%;margin-bottom:18px}.f\+Kx9V4Wa1 .ant-statistic{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap;font-weight:bold}.f\+Kx9V4Wa1 .ant-statistic>div:first-child{color:#000;margin-bottom:0}.f\+Kx9V4Wa1 .ant-statistic>div:last-child{font-size:14px !important}.f\+Kx9V4Wa1 .ant-statistic>div:last-child{color:#fa6400;margin-left:12px}._6UFr496nwY{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-weight:bold}._6UFr496nwY .pNflosLCNK{color:red;margin-right:24px}.qUblXWQQi8{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-top:20px}.qUblXWQQi8 .dqVZA-e1XQ{width:80px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.oVUjxQ3HlP{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}._76EU-n8leQ{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.-Z\+ir62Ya5{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.-Z\+ir62Ya5>i,.-Z\+ir62Ya5>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.hVKSHlAIFu{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.EqSP4RQ4kH{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.jSm5vlZpgX{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}._2rKiaI3dW7{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}._1wAc\+SRNj2{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._41EOPUtW3u{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.B2NcgYonE6{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.B2NcgYonE6 .MJquM6MFIf{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.B2NcgYonE6 .MJquM6MFIf>span{color:rgba(0,0,0,0.65)}.v72YPSrKGP{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.v72YPSrKGP ._6Z4dcmrhsX{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.v72YPSrKGP ._6Z4dcmrhsX>span{font-size:8px}.xUo1\+6KF\+3 .ant-popover-inner-content{padding:0}.xUo1\+6KF\+3 .ant-popover-arrow{border-color:#475365 !important}.xUo1\+6KF\+3 .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.t6PjchTVho{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.L4dY\+hkvFP{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.L4dY\+hkvFP ._07oJTjp5kg{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}._9XMiBzL2je{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}._9yFCWJEuna{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{._9yFCWJEuna{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}._8gtxzxiZMw{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.zhksFJ-Etn html,.zhksFJ-Etn body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.zhksFJ-Etn body,.zhksFJ-Etn div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.zhksFJ-Etn textarea{border:none !important;padding-left:0 !important}.zhksFJ-Etn table,.zhksFJ-Etn tr,.zhksFJ-Etn td{page-break-inside:avoid}.zhksFJ-Etn div{page-break-inside:avoid}.zhksFJ-Etn thead{display:table-header-group}.zhksFJ-Etn tfoot{display:table-footer-group}.zhksFJ-Etn *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.zhksFJ-Etn .cAP\+Pt2jls,.zhksFJ-Etn .no-print,.zhksFJ-Etn .react-resizable-handle,.zhksFJ-Etn .fc-whiteboard-toolbar,.zhksFJ-Etn .ant-modal-root,.zhksFJ-Etn .ant-alert,.zhksFJ-Etn ._7C1yzeO2Zo,.zhksFJ-Etn .BftSDy-Ldi{display:none !important}.zhksFJ-Etn .\+fH-PZiARF{display:none !important}}.btEEoJmGgg{background-color:#fff}.btEEoJmGgg .hpfo8xWPz1{width:120px}.XgwgImg0bY{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;margin:24px 0}.XgwgImg0bY>div:first-child{width:100%;margin-bottom:18px}.XgwgImg0bY .ant-statistic{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap;font-weight:bold}.XgwgImg0bY .ant-statistic>div:first-child{color:#000;margin-bottom:0}.XgwgImg0bY .ant-statistic>div:last-child{font-size:14px !important}.XgwgImg0bY .ant-statistic>div:last-child{color:#fa6400;margin-left:12px}.G5W\+SGQRA5{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap;cursor:pointer;width:120px;margin-left:8px;color:#1890ff}.G5W\+SGQRA5>span:last-child{opacity:0;-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.G5W\+SGQRA5:hover>span:last-child{opacity:1}.qVVCK3V-HL{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap}.qVVCK3V-HL>span{min-width:110px;display:block}.qVVCK3V-HL:nth-child(2){margin:12px 0}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.a6m2SqA6fi{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.x5Ml-\+gosQ{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}._61-bv5PuIZ{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}._61-bv5PuIZ>i,._61-bv5PuIZ>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.xdfXetWx8o{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.TYiM5Kjk4q{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.qdQPZ5VVKD{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.u-9jP4H\+Gd{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.opsPA6DbvG{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.tHHufsAGdp{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.DLZk8Lccu2{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.DLZk8Lccu2 .mkyNZTl-OI{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.DLZk8Lccu2 .mkyNZTl-OI>span{color:rgba(0,0,0,0.65)}.kT6Tcwe1mv{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.kT6Tcwe1mv ._0zG1NbjX1g{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.kT6Tcwe1mv ._0zG1NbjX1g>span{font-size:8px}.TBFl\+KSPRE .ant-popover-inner-content{padding:0}.TBFl\+KSPRE .ant-popover-arrow{border-color:#475365 !important}.TBFl\+KSPRE .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}._1FcO2Uy-Wo{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.jBxBQUKwh\+{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.jBxBQUKwh\+ .t34QKUxQRo{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.FlUemd\+o8L{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.TsNsrTxeUA{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.TsNsrTxeUA{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.b5mIHYKneZ{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.Em9yFgfamD html,.Em9yFgfamD body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.Em9yFgfamD body,.Em9yFgfamD div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.Em9yFgfamD textarea{border:none !important;padding-left:0 !important}.Em9yFgfamD table,.Em9yFgfamD tr,.Em9yFgfamD td{page-break-inside:avoid}.Em9yFgfamD div{page-break-inside:avoid}.Em9yFgfamD thead{display:table-header-group}.Em9yFgfamD tfoot{display:table-footer-group}.Em9yFgfamD *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.Em9yFgfamD .dnDsvAMsYn,.Em9yFgfamD .no-print,.Em9yFgfamD .react-resizable-handle,.Em9yFgfamD .fc-whiteboard-toolbar,.Em9yFgfamD .ant-modal-root,.Em9yFgfamD .ant-alert,.Em9yFgfamD .ZmpgOTo\+Qd,.Em9yFgfamD ._3pIjPqrVGY{display:none !important}.Em9yFgfamD .dsgqk8as9u{display:none !important}}.J5Ww-fADA6{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;padding:24px}.J5Ww-fADA6 .\+rzm4myoCT{color:#fff;background-color:#6874e2}.R\+9r-BIXen{width:100%;height:60px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;cursor:pointer}.KAb\+bE084B{width:100%;height:60px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;color:rgba(0,0,0,0.4)}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.Grc7CC9N\+7{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.nu8-DUt0cN{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.Uox\+bE32yk{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.Uox\+bE32yk>i,.Uox\+bE32yk>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.TOunke0\+\+N{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.\+zA5IYA4kx{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}._70SLnAymww{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.nVp5eb2VwJ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.t32J733qLe{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._3TYHk1NOJA{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.OaC61-jNl2{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.OaC61-jNl2 .h01FEoFJ3N{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.OaC61-jNl2 .h01FEoFJ3N>span{color:rgba(0,0,0,0.65)}.yn43PxPHid{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.yn43PxPHid .a\+-Kyx\+7Yo{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.yn43PxPHid .a\+-Kyx\+7Yo>span{font-size:8px}.e6MMcfKjRL .ant-popover-inner-content{padding:0}.e6MMcfKjRL .ant-popover-arrow{border-color:#475365 !important}.e6MMcfKjRL .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.xvC\+IHWP9Q{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.AyA\+Jr\+VXD{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.AyA\+Jr\+VXD .p799RVA\+ls{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.aOytqfArLn{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.hHiKTw2Gar{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.hHiKTw2Gar{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}._5m3pbbb8jk{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.lwdTohzPaU html,.lwdTohzPaU body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.lwdTohzPaU body,.lwdTohzPaU div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.lwdTohzPaU textarea{border:none !important;padding-left:0 !important}.lwdTohzPaU table,.lwdTohzPaU tr,.lwdTohzPaU td{page-break-inside:avoid}.lwdTohzPaU div{page-break-inside:avoid}.lwdTohzPaU thead{display:table-header-group}.lwdTohzPaU tfoot{display:table-footer-group}.lwdTohzPaU *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.lwdTohzPaU .g32iq6dQGV,.lwdTohzPaU .no-print,.lwdTohzPaU .react-resizable-handle,.lwdTohzPaU .fc-whiteboard-toolbar,.lwdTohzPaU .ant-modal-root,.lwdTohzPaU .ant-alert,.lwdTohzPaU .YdWcdTBJ-G,.lwdTohzPaU ._2oTmwupSUe{display:none !important}.lwdTohzPaU ._63zPuD9R6v{display:none !important}}.W7ApV3Pryo{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;overflow-y:auto}.W7ApV3Pryo ._2\+bdWXuS6g{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:24px;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.W7ApV3Pryo ._2\+bdWXuS6g .lgwxhjazju>div:not(:last-child){margin-bottom:12px}.W7ApV3Pryo .oVrqwSiv-G{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;margin-top:16px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.KU2YmCvijJ{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.isJVstsOmz{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.NfiqkrWSRw{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.NfiqkrWSRw>i,.NfiqkrWSRw>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}._82KlAVxhLQ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.BZ46ZfDBpN{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.XRTjZB5lkd{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.XY6R9nDyBo{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}._7B34GxNrsv{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._7TLTdPWYbW{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._7l3SO10P5Z{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}._7l3SO10P5Z .WG9Qsm-3ZU{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}._7l3SO10P5Z .WG9Qsm-3ZU>span{color:rgba(0,0,0,0.65)}.zVMxUVgSki{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.zVMxUVgSki .S0wcXahXFd{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.zVMxUVgSki .S0wcXahXFd>span{font-size:8px}._959bdpBU6H .ant-popover-inner-content{padding:0}._959bdpBU6H .ant-popover-arrow{border-color:#475365 !important}._959bdpBU6H .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.J2UrxeaVmz{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.SsxObFwlWQ{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.SsxObFwlWQ .rcwZm7VToG{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.lSEwXtcRye{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.NO\+o3Fec9n{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.NO\+o3Fec9n{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.Sl43VHOzpR{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.ZpoIWRfwi8 html,.ZpoIWRfwi8 body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.ZpoIWRfwi8 body,.ZpoIWRfwi8 div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.ZpoIWRfwi8 textarea{border:none !important;padding-left:0 !important}.ZpoIWRfwi8 table,.ZpoIWRfwi8 tr,.ZpoIWRfwi8 td{page-break-inside:avoid}.ZpoIWRfwi8 div{page-break-inside:avoid}.ZpoIWRfwi8 thead{display:table-header-group}.ZpoIWRfwi8 tfoot{display:table-footer-group}.ZpoIWRfwi8 *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.ZpoIWRfwi8 .dTSBhtCdHi,.ZpoIWRfwi8 .no-print,.ZpoIWRfwi8 .react-resizable-handle,.ZpoIWRfwi8 .fc-whiteboard-toolbar,.ZpoIWRfwi8 .ant-modal-root,.ZpoIWRfwi8 .ant-alert,.ZpoIWRfwi8 .ZuV4493NNq,.ZpoIWRfwi8 .a7qeBm27\+9{display:none !important}.ZpoIWRfwi8 .ibVVRoY0bH{display:none !important}}.nnozSZMaVx{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.nnozSZMaVx .DmSun5yBrv{width:250px;height:40px;line-height:40px;display:inline-block}.nnozSZMaVx .z-oV153c-x{width:250px;height:30px;line-height:30px;display:inline-block;font-size:14px}._4fQbLPR0CL .tz\+QKOS9UX{height:120px;width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:space-evenly;-ms-flex-pack:space-evenly;justify-content:space-evenly;font-family:PingFangSC-Regular;font-size:14px;color:rgba(0,0,0,0.65);line-height:24px}._4fQbLPR0CL .tz\+QKOS9UX .hkiJ\+Dlj7v{display:-webkit-box;display:-ms-flexbox;display:flex}.jCuIFMGEDs{width:100%;height:1000px}.jCuIFMGEDs .ZdyZ1sfwnr{height:60px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-top:24px}.YtLsiXOFUO{width:100%}.YtLsiXOFUO .nTnTC1ns\+S{color:red;font-size:16px;margin:20px}.YtLsiXOFUO ._1Mi9VPFAxR{color:#4a4a4a;font-size:14px;margin:20px;white-space:pre-wrap}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.QX4sj07L-6{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.wUZ6ifXHFA{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}._7rWDmKHWRo{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}._7rWDmKHWRo>i,._7rWDmKHWRo>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.rhrtZ8ZCCE{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.x63iqoS2CW{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.gKQWJBEOne{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.VgKUVNuyaO{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}._8Bzd3bhv4Q{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.CsKa9jE5Cq{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._52ZApS8tL0{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}._52ZApS8tL0 .SH\+vECU8YN{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}._52ZApS8tL0 .SH\+vECU8YN>span{color:rgba(0,0,0,0.65)}._2LSxH\+IUF7{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}._2LSxH\+IUF7 .vrKuC2XwpM{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}._2LSxH\+IUF7 .vrKuC2XwpM>span{font-size:8px}.aT5SqEnLDu .ant-popover-inner-content{padding:0}.aT5SqEnLDu .ant-popover-arrow{border-color:#475365 !important}.aT5SqEnLDu .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.MhdkksNQ0n{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.lERQj3-MNr{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.lERQj3-MNr .fGytwvxH0u{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.gjwC8MUSc9{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.WNwI3rDk05{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.WNwI3rDk05{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.M\+1NLqIf-H{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.gFgwcpMHA\+ html,.gFgwcpMHA\+ body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.gFgwcpMHA\+ body,.gFgwcpMHA\+ div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.gFgwcpMHA\+ textarea{border:none !important;padding-left:0 !important}.gFgwcpMHA\+ table,.gFgwcpMHA\+ tr,.gFgwcpMHA\+ td{page-break-inside:avoid}.gFgwcpMHA\+ div{page-break-inside:avoid}.gFgwcpMHA\+ thead{display:table-header-group}.gFgwcpMHA\+ tfoot{display:table-footer-group}.gFgwcpMHA\+ *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.gFgwcpMHA\+ .NsvSkq8SaG,.gFgwcpMHA\+ .no-print,.gFgwcpMHA\+ .react-resizable-handle,.gFgwcpMHA\+ .fc-whiteboard-toolbar,.gFgwcpMHA\+ .ant-modal-root,.gFgwcpMHA\+ .ant-alert,.gFgwcpMHA\+ .WyMj7k93DG,.gFgwcpMHA\+ .LgFdAEtKzJ{display:none !important}.gFgwcpMHA\+ .cHm\+F7GQ\+g{display:none !important}}.CTV-fTUayn{position:relative}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.OMDsMjv5TB{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.yKy90k0pPG{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.i3hPYPMG0g{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.i3hPYPMG0g>i,.i3hPYPMG0g>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.dLmuIlHbu\+{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.j70mcFP6r7{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.tmbTe0XihB{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.CDK2XMOJo0{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.zZVgTyQWxY{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.x3zcqfu3k\+{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.rmD2AIPDiN{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.rmD2AIPDiN .K7nA436xHd{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.rmD2AIPDiN .K7nA436xHd>span{color:rgba(0,0,0,0.65)}.P\+K91PBl\+H{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.P\+K91PBl\+H .xoCnveBMg-{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.P\+K91PBl\+H .xoCnveBMg->span{font-size:8px}.MLmpPArxV4 .ant-popover-inner-content{padding:0}.MLmpPArxV4 .ant-popover-arrow{border-color:#475365 !important}.MLmpPArxV4 .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.PoAbzm7hCs{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}._8wHStbWmKK{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._8wHStbWmKK ._2tJJEsVgsr{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.b18Cq\+PVru{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.b0tHRF\+mZI{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.b0tHRF\+mZI{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.Jc\+9\+yARLd{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.BquwKkkpWJ html,.BquwKkkpWJ body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.BquwKkkpWJ body,.BquwKkkpWJ div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.BquwKkkpWJ textarea{border:none !important;padding-left:0 !important}.BquwKkkpWJ table,.BquwKkkpWJ tr,.BquwKkkpWJ td{page-break-inside:avoid}.BquwKkkpWJ div{page-break-inside:avoid}.BquwKkkpWJ thead{display:table-header-group}.BquwKkkpWJ tfoot{display:table-footer-group}.BquwKkkpWJ *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.BquwKkkpWJ .aY5BA1AwfL,.BquwKkkpWJ .no-print,.BquwKkkpWJ .react-resizable-handle,.BquwKkkpWJ .fc-whiteboard-toolbar,.BquwKkkpWJ .ant-modal-root,.BquwKkkpWJ .ant-alert,.BquwKkkpWJ .nL1lg1UfFO,.BquwKkkpWJ .IEGMN06uhP{display:none !important}.BquwKkkpWJ .iQKT\+-tjel{display:none !important}}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.GW9gRkQXF0{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.Bl2ug4CdjG{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.Cpc0hgjH1L{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.Cpc0hgjH1L>i,.Cpc0hgjH1L>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}._3QhHbisNoS{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.Qis1jUIB\+X{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.JZ3-cjDxSx{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.UnliuFGC3t{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.WQENW4hUTh{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.OgjWytoC4U{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.Vt2DhDtdlU{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.Vt2DhDtdlU .A7ToFGaHwa{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.Vt2DhDtdlU .A7ToFGaHwa>span{color:rgba(0,0,0,0.65)}.axAZLL-zFV{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.axAZLL-zFV .dL0yzwBBPP{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.axAZLL-zFV .dL0yzwBBPP>span{font-size:8px}.HpYkNo1-D2 .ant-popover-inner-content{padding:0}.HpYkNo1-D2 .ant-popover-arrow{border-color:#475365 !important}.HpYkNo1-D2 .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}._1A0fCCJczZ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.afuE1DmZ3l{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.afuE1DmZ3l .o64fVMFCtO{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.IHHvQdwCtz{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.jau7LWS9vR{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.jau7LWS9vR{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.-Vp9MZkZ5d{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.LJ\+6flCxdu html,.LJ\+6flCxdu body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.LJ\+6flCxdu body,.LJ\+6flCxdu div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.LJ\+6flCxdu textarea{border:none !important;padding-left:0 !important}.LJ\+6flCxdu table,.LJ\+6flCxdu tr,.LJ\+6flCxdu td{page-break-inside:avoid}.LJ\+6flCxdu div{page-break-inside:avoid}.LJ\+6flCxdu thead{display:table-header-group}.LJ\+6flCxdu tfoot{display:table-footer-group}.LJ\+6flCxdu *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.LJ\+6flCxdu .J9uF9NmL7o,.LJ\+6flCxdu .no-print,.LJ\+6flCxdu .react-resizable-handle,.LJ\+6flCxdu .fc-whiteboard-toolbar,.LJ\+6flCxdu .ant-modal-root,.LJ\+6flCxdu .ant-alert,.LJ\+6flCxdu .f4o3WZHkPw,.LJ\+6flCxdu ._2yvXIi17EM{display:none !important}.LJ\+6flCxdu .EsxVwWo9dn{display:none !important}}.-r0trVSoeD{overflow:hidden !important}.-r0trVSoeD{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.-r0trVSoeD .h\+I0HwPB8x{height:calc(100% - 60px);overflow:auto}.-r0trVSoeD .h\+I0HwPB8x .fJdD4wMJPf{padding:24px}.-r0trVSoeD .h\+I0HwPB8x .fJdD4wMJPf .oYQcl5yV5s{font-size:20px;font-weight:bold;color:#333;margin-bottom:24px}.-r0trVSoeD .h\+I0HwPB8x .fJdD4wMJPf .uBhA8WCQg1{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:24px}.-r0trVSoeD .e7hqjii1hu{height:60px !important}.-r0trVSoeD .e7hqjii1hu{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:absolute;bottom:0;width:100%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}
.tv655dJByI{position:relative}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.jfNUuAkB41{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}._9nd2Ub9G8d{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}._4rLq01Lc1Q{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}._4rLq01Lc1Q>i,._4rLq01Lc1Q>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.IH4NMR9xKu{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.UB4GtEXJcO{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}._5Ln70UDPkp{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.QExHH9A8AF{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.BNvy6TdBtv{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.LjjCcm9zNu{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._8FxLgfYbk\+{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}._8FxLgfYbk\+ .Kc1tY7Iyr0{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}._8FxLgfYbk\+ .Kc1tY7Iyr0>span{color:rgba(0,0,0,0.65)}.Bod1OfE3go{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.Bod1OfE3go .DpXT0U-WhS{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.Bod1OfE3go .DpXT0U-WhS>span{font-size:8px}.h81CqFeGdq .ant-popover-inner-content{padding:0}.h81CqFeGdq .ant-popover-arrow{border-color:#475365 !important}.h81CqFeGdq .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.qG7UyzL1Qi{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}._0UhFk-kC\+z{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._0UhFk-kC\+z ._38yjuWMhyy{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.xwkI\+H54gc{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.JdcNq8BTtL{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.JdcNq8BTtL{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.N61lRnGEeT{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.tdL4pf4vmQ html,.tdL4pf4vmQ body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.tdL4pf4vmQ body,.tdL4pf4vmQ div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.tdL4pf4vmQ textarea{border:none !important;padding-left:0 !important}.tdL4pf4vmQ table,.tdL4pf4vmQ tr,.tdL4pf4vmQ td{page-break-inside:avoid}.tdL4pf4vmQ div{page-break-inside:avoid}.tdL4pf4vmQ thead{display:table-header-group}.tdL4pf4vmQ tfoot{display:table-footer-group}.tdL4pf4vmQ *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.tdL4pf4vmQ .M7jAUVJG\+9,.tdL4pf4vmQ .no-print,.tdL4pf4vmQ .react-resizable-handle,.tdL4pf4vmQ .fc-whiteboard-toolbar,.tdL4pf4vmQ .ant-modal-root,.tdL4pf4vmQ .ant-alert,.tdL4pf4vmQ .gn-hy-V-cm,.tdL4pf4vmQ .RNujFf0vl-{display:none !important}.tdL4pf4vmQ .\+yOo9RMLjx{display:none !important}}@media print{html,body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}body,div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}textarea{border:none !important;padding-left:0 !important}table,tr,td{page-break-inside:avoid}div{page-break-inside:avoid}thead{display:table-header-group}tfoot{display:table-footer-group}*{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.M7jAUVJG\+9,.no-print,.react-resizable-handle,.fc-whiteboard-toolbar,.ant-modal-root,.ant-alert,.gn-hy-V-cm,.RNujFf0vl-{display:none !important}.\+yOo9RMLjx{display:none !important}}.T8ZEDYolP5{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;height:-webkit-fit-content;height:-moz-fit-content;height:fit-content;background-color:#eff1f7}.T8ZEDYolP5 .ant-descriptions-row>th,.T8ZEDYolP5 .ant-descriptions-row>td{padding-bottom:8px}.T8ZEDYolP5 .ant-descriptions-title{font-size:14px;margin-bottom:12px}@media print{.T8ZEDYolP5{background-color:#fff}@page{size:a4}}.m77Aq3kOzX{width:200mm;height:-webkit-fit-content;height:-moz-fit-content;height:fit-content;padding:5mm 5mm 0 5mm;background-color:#fff;position:relative}.m77Aq3kOzX .nWCUBeO8ux{width:100%;height:14mm;display:-webkit-box;display:-ms-flexbox;display:flex;border-bottom:2px solid #000}.m77Aq3kOzX .nWCUBeO8ux ._5Th8tq-Omz{height:10mm;width:35.2mm}.m77Aq3kOzX .nWCUBeO8ux .PKgDIQQvLY{height:10mm;font-size:4mm;color:rgba(0,0,0,0.75);margin-left:12px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.m77Aq3kOzX .kHft376-rp{font-size:8mm;color:#000;letter-spacing:2.67;margin-top:14mm}.m77Aq3kOzX .d0Mma\+4sJR{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-top:12mm;width:100%}.m77Aq3kOzX .-n15tSEWHW{display:-webkit-box;display:-ms-flexbox;display:flex;color:rgba(0,0,0,0.75);line-height:22px;margin-top:5mm}.m77Aq3kOzX .-n15tSEWHW .Af5VPCO6Wa{font-size:14px;font-weight:bold}.m77Aq3kOzX .-n15tSEWHW .aH4H3bhOTC{font-size:14px}.m77Aq3kOzX .G0DxbxWOmw{margin-top:13mm;width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.m77Aq3kOzX .iBoDwgFesg{width:100%;height:24.5mm;padding:5mm 0;border-top:2px solid #000;bottom:0;left:15mm}.m77Aq3kOzX .iBoDwgFesg .nxZ7QJJzlV{line-height:6mm;font-size:3mm;color:rgba(0,0,0,0.75)}.bFW\+hXvTp4{width:210px;margin-top:12px;position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.UIDeBHfj7T:first-child{page-break-after:always}.UIDeBHfj7T{position:relative;page-break-before:avoid;page-break-after:auto;margin-bottom:24px}.U0oVZYTOTt{width:100%;margin-top:7mm}.kt0ecp3dXY{width:100%;border-bottom:1px solid #000}.EWN-ysK\+Gh{display:-webkit-box;display:-ms-flexbox;display:flex;height:7mm;width:100%;border-top:1px solid #000;border-bottom:1px solid #000}._3QNGb6mYa5{display:-webkit-box;display:-ms-flexbox;display:flex;height:7mm;width:100%;border-top:1px solid #000;border-bottom:1px solid #000;height:auto;border-top:none;border-bottom:1px solid rgba(0,0,0,0.1)}._3QNGb6mYa5 .pwDc72ny7-{font-size:14px;color:rgba(0,0,0,0.75);padding-left:8px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}._3QNGb6mYa5 .rFhxf0teMf{font-size:14px;color:rgba(0,0,0,0.75);padding-left:8px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#000}.M7jAUVJG\+9{position:fixed;right:4vw;bottom:10vh;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.M7jAUVJG\+9 button{margin-bottom:16px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}._5sEhhQz7mG{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.gFdM8wgajd{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.sQ\+GwPKfHW{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.sQ\+GwPKfHW>i,.sQ\+GwPKfHW>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.PWrhHrNLXF{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._1IPgyALTGt{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.tIu-Fl0QAB{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.MqdKYM9VuU{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.wxzvHX5cYp{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.uFTnn110Ow{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.wyxqTSPOzN{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.wyxqTSPOzN .YhFI4HVXb\+{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.wyxqTSPOzN .YhFI4HVXb\+>span{color:rgba(0,0,0,0.65)}.TULZgVMxng{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.TULZgVMxng .D67iRLyxeq{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.TULZgVMxng .D67iRLyxeq>span{font-size:8px}.T\+3Y3puz\+a .ant-popover-inner-content{padding:0}.T\+3Y3puz\+a .ant-popover-arrow{border-color:#475365 !important}.T\+3Y3puz\+a .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.biX4pfGNpC{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.aR4\+voFSXu{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.aR4\+voFSXu .jviiR\+rCY8{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.-MY1RAeFRH{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.G3gK0A61nF{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.G3gK0A61nF{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.eRMyFS2wvv{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.tB\+U8LPA-o html,.tB\+U8LPA-o body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.tB\+U8LPA-o body,.tB\+U8LPA-o div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.tB\+U8LPA-o textarea{border:none !important;padding-left:0 !important}.tB\+U8LPA-o table,.tB\+U8LPA-o tr,.tB\+U8LPA-o td{page-break-inside:avoid}.tB\+U8LPA-o div{page-break-inside:avoid}.tB\+U8LPA-o thead{display:table-header-group}.tB\+U8LPA-o tfoot{display:table-footer-group}.tB\+U8LPA-o *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.tB\+U8LPA-o ._84lubPci9y,.tB\+U8LPA-o .no-print,.tB\+U8LPA-o .react-resizable-handle,.tB\+U8LPA-o .fc-whiteboard-toolbar,.tB\+U8LPA-o .ant-modal-root,.tB\+U8LPA-o .ant-alert,.tB\+U8LPA-o .-S3FRbY89Y,.tB\+U8LPA-o .wz\+gVUpJPI{display:none !important}.tB\+U8LPA-o .Za5LTM2ZYL{display:none !important}}@media print{html,body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}body,div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}textarea{border:none !important;padding-left:0 !important}table,tr,td{page-break-inside:avoid}div{page-break-inside:avoid}thead{display:table-header-group}tfoot{display:table-footer-group}*{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}._84lubPci9y,.no-print,.react-resizable-handle,.fc-whiteboard-toolbar,.ant-modal-root,.ant-alert,.-S3FRbY89Y,.wz\+gVUpJPI{display:none !important}.Za5LTM2ZYL{display:none !important}}.sS8DKEKyJi{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;height:-webkit-fit-content;height:-moz-fit-content;height:fit-content;background-color:#eff1f7}.sS8DKEKyJi .ant-descriptions-row>th,.sS8DKEKyJi .ant-descriptions-row>td{padding-bottom:8px}.sS8DKEKyJi .ant-descriptions-title{font-size:14px;margin-bottom:12px}.sS8DKEKyJi .ant-input{padding:0}.sS8DKEKyJi .ant-input[disabled]{background-color:#fff;color:#000;border:none;padding:0}.gnR6sb9-Tj{width:200mm;height:-webkit-fit-content;height:-moz-fit-content;height:fit-content;padding:5mm 5mm 0 5mm;background-color:#fff;position:relative}.gnR6sb9-Tj .wRqz-9Ige8{width:100%;height:22mm;display:-webkit-box;display:-ms-flexbox;display:flex;border-bottom:2px solid #000}.gnR6sb9-Tj .wRqz-9Ige8 .qpKmw5FiJr{height:22mm}.gnR6sb9-Tj .wRqz-9Ige8 .tGKD33vDyE{height:20mm;width:calc(100% - 13mm);font-size:4mm;color:rgba(0,0,0,0.75);margin-left:12px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.gnR6sb9-Tj .fJew9bKCoE{letter-spacing:2.67;margin-top:13mm}.gnR6sb9-Tj .fJew9bKCoE input{font-size:7mm;color:#000}.gnR6sb9-Tj .nap9b8Yhvo{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-top:11mm;width:100%}.gnR6sb9-Tj .ev0\+3feUmr{display:-webkit-box;display:-ms-flexbox;display:flex;color:rgba(0,0,0,0.75);line-height:5mm;margin-top:3mm}.gnR6sb9-Tj .ev0\+3feUmr .sxo60DPUsD{font-size:3mm;font-weight:bold}.gnR6sb9-Tj .ev0\+3feUmr .pp39L2qSE6{font-size:3mm;width:calc(100% - 5mm)}.gnR6sb9-Tj .WSjCC1V5WT{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-line-pack:center;align-content:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.gnR6sb9-Tj .WSjCC1V5WT .LyfK\+iT2a0{margin-top:10mm;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.gnR6sb9-Tj .WSjCC1V5WT .LyfK\+iT2a0 .Qdcsjv8bdf{width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;margin-top:2mm;position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.gnR6sb9-Tj .WSjCC1V5WT .LyfK\+iT2a0 .Qdcsjv8bdf input{width:20mm}.gnR6sb9-Tj .JGxdsa5nVf{width:100%;padding:5mm 0;border-top:2px solid #000;bottom:0;left:17mm}.gnR6sb9-Tj .JGxdsa5nVf .VA2G6JPsMn{line-height:5mm;font-size:3mm;color:rgba(0,0,0,0.75)}.w0DtMm5IMx:first-child{page-break-after:always}.w0DtMm5IMx{position:relative;page-break-before:avoid;page-break-after:auto;margin-bottom:24px}.PeZOnZVjU-{width:100%;margin-top:6mm}.I9E84YItXK{width:100%;border-bottom:1px solid #000}.jNH-W2c30\+{display:-webkit-box;display:-ms-flexbox;display:flex;height:6mm;width:100%;border-top:1px solid #000;border-bottom:1px solid #000}.wJsoxREanU{display:-webkit-box;display:-ms-flexbox;display:flex;height:6mm;width:100%;border-top:1px solid #000;border-bottom:1px solid #000;height:auto;border-top:none;border-bottom:1px solid rgba(0,0,0,0.1)}.wJsoxREanU ._8v9phDOvHC{font-size:3mm;color:rgba(0,0,0,0.75);padding-left:8px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.wJsoxREanU ._8v9phDOvHC .Ej3Qy58Cug{width:100%;word-wrap:break-word}.wJsoxREanU .GuTD2y9qgD{font-size:3mm;color:rgba(0,0,0,0.75);padding-left:8px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#000}.wJsoxREanU .GuTD2y9qgD .Ej3Qy58Cug{width:100%;word-wrap:break-word}.gmt5YfQ9nA{width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.gmt5YfQ9nA input{width:50mm}.gmt5YfQ9nA .r0HG53SvTX{color:#000;font-weight:normal}._84lubPci9y{position:fixed;right:4vw;bottom:10vh;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}._84lubPci9y button{margin-bottom:3mm}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.p3eN5BWnGn{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}._69XEbWpoPw{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.vtKPvZLkDl{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.vtKPvZLkDl>i,.vtKPvZLkDl>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.sVvSMOs4yS{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.TQMyAjmYA-{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}._7Z73YPz3UX{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.i9F5kftj4d{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.VQtJu\+LS91{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.MmEsZrCvJn{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.F7E36tAHJ5{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.F7E36tAHJ5 .jvfiWqB3Eg{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.F7E36tAHJ5 .jvfiWqB3Eg>span{color:rgba(0,0,0,0.65)}._8xKotl9la3{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}._8xKotl9la3 .OzsRo1I5yw{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}._8xKotl9la3 .OzsRo1I5yw>span{font-size:8px}.RnFMnkt06m .ant-popover-inner-content{padding:0}.RnFMnkt06m .ant-popover-arrow{border-color:#475365 !important}.RnFMnkt06m .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.SWqjINSnOR{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.wxurQBMQ1-{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.wxurQBMQ1- .XeyjXimZRO{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.BM8TyQbkcG{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.poa4wP-rx1{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.poa4wP-rx1{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.wkVp8ukoYM{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.yG-95nXHdG html,.yG-95nXHdG body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.yG-95nXHdG body,.yG-95nXHdG div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.yG-95nXHdG textarea{border:none !important;padding-left:0 !important}.yG-95nXHdG table,.yG-95nXHdG tr,.yG-95nXHdG td{page-break-inside:avoid}.yG-95nXHdG div{page-break-inside:avoid}.yG-95nXHdG thead{display:table-header-group}.yG-95nXHdG tfoot{display:table-footer-group}.yG-95nXHdG *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.yG-95nXHdG ._6-NVFdVdQy,.yG-95nXHdG .no-print,.yG-95nXHdG .react-resizable-handle,.yG-95nXHdG .fc-whiteboard-toolbar,.yG-95nXHdG .ant-modal-root,.yG-95nXHdG .ant-alert,.yG-95nXHdG .KMirlfJk\+4,.yG-95nXHdG .w3jWhydsKw{display:none !important}.yG-95nXHdG .t5Hcb\+rrgC{display:none !important}}.fMfOQMbSCy{position:relative}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.PqLFmcKMOC{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.DaQAIYX4Ed{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.QKFXy57mw0{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.QKFXy57mw0>i,.QKFXy57mw0>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.QW7yqnya8R{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.AO2YwhNqoa{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.odOtw62Pk8{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.YD7c0BGiQ\+{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.-vfGcKxdqi{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.Yl8UK6GO7q{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.PXQfgET0h2{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.PXQfgET0h2 ._9mfgn3tcT0{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.PXQfgET0h2 ._9mfgn3tcT0>span{color:rgba(0,0,0,0.65)}._5paThhhlNF{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}._5paThhhlNF ._9eBlBuTJxy{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}._5paThhhlNF ._9eBlBuTJxy>span{font-size:8px}.TeIQdtv2eq .ant-popover-inner-content{padding:0}.TeIQdtv2eq .ant-popover-arrow{border-color:#475365 !important}.TeIQdtv2eq .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.Ltkv0CZZRr{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.ovP9tFvmqg{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.ovP9tFvmqg .g86mFs2VIh{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.uv-NFlwZlN{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.QqV-00rmIs{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.QqV-00rmIs{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.sXOjOe-31Z{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.oPYkMRBlPX html,.oPYkMRBlPX body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.oPYkMRBlPX body,.oPYkMRBlPX div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.oPYkMRBlPX textarea{border:none !important;padding-left:0 !important}.oPYkMRBlPX table,.oPYkMRBlPX tr,.oPYkMRBlPX td{page-break-inside:avoid}.oPYkMRBlPX div{page-break-inside:avoid}.oPYkMRBlPX thead{display:table-header-group}.oPYkMRBlPX tfoot{display:table-footer-group}.oPYkMRBlPX *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.oPYkMRBlPX ._0bFbSpaN45,.oPYkMRBlPX .no-print,.oPYkMRBlPX .react-resizable-handle,.oPYkMRBlPX .fc-whiteboard-toolbar,.oPYkMRBlPX .ant-modal-root,.oPYkMRBlPX .ant-alert,.oPYkMRBlPX ._2fY96dnj1d,.oPYkMRBlPX .GdJZKqvYrd{display:none !important}.oPYkMRBlPX ._2ALtD\+r7xB{display:none !important}}._1-HDEyn8Nv{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:relative;width:200px;height:160px;background-color:white;font-size:12px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;cursor:pointer;border:rgba(0,0,0,0.25) 1px solid;color:rgba(0,0,0,0.6);border-radius:5px}._1-HDEyn8Nv .KiKNqRBxJY{font-weight:bold;color:black}._1-HDEyn8Nv:hover{background-color:rgba(23,119,121,0.4)}.NwJ8J9tIha{background-color:rgba(23,119,121,0.4)}.b8xxD5nRLx{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:relative;width:200px;height:160px;background-color:#ddd;font-size:12px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;cursor:pointer;border:rgba(0,0,0,0.25) 1px solid;color:rgba(0,0,0,0.6);border-radius:5px}.b8xxD5nRLx .KiKNqRBxJY{font-weight:bold;color:black}.ZGKGbXE70Q{background-color:rgba(23,119,121,0.8) !important}.ZGKGbXE70Q{border:black rgba(23,119,121,0.8) solid;color:white}.ZGKGbXE70Q .KiKNqRBxJY{color:white}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.Wt48crwLRT{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.JX6RoFdCJV{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.wiVM1LeJCh{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.wiVM1LeJCh>i,.wiVM1LeJCh>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.nYScEX2lJd{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.XK3Z6Hggwv{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}._07Oh3MEYpl{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}._6xAGoU1-0L{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}._5UNZVAAjM1{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.TJuc3sAsib{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.dKDSawlcAm{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.dKDSawlcAm ._766pB1ESJZ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.dKDSawlcAm ._766pB1ESJZ>span{color:rgba(0,0,0,0.65)}.w1kIy4f7FB{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.w1kIy4f7FB .ygS1ONx7CT{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.w1kIy4f7FB .ygS1ONx7CT>span{font-size:8px}.BOrgaMe-ya .ant-popover-inner-content{padding:0}.BOrgaMe-ya .ant-popover-arrow{border-color:#475365 !important}.BOrgaMe-ya .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.ACffQsE\+On{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.l50TdAzf6z{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.l50TdAzf6z .fX9DUy66oI{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.bXWGOQrhAT{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}._4nbNlfwlrm{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{._4nbNlfwlrm{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.jlX-cSAtmz{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.tMVVMmSi7U html,.tMVVMmSi7U body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.tMVVMmSi7U body,.tMVVMmSi7U div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.tMVVMmSi7U textarea{border:none !important;padding-left:0 !important}.tMVVMmSi7U table,.tMVVMmSi7U tr,.tMVVMmSi7U td{page-break-inside:avoid}.tMVVMmSi7U div{page-break-inside:avoid}.tMVVMmSi7U thead{display:table-header-group}.tMVVMmSi7U tfoot{display:table-footer-group}.tMVVMmSi7U *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.tMVVMmSi7U ._0pKOPD3SD-,.tMVVMmSi7U .no-print,.tMVVMmSi7U .react-resizable-handle,.tMVVMmSi7U .fc-whiteboard-toolbar,.tMVVMmSi7U .ant-modal-root,.tMVVMmSi7U .ant-alert,.tMVVMmSi7U ._8akzxVKcG3,.tMVVMmSi7U .tRMKf29RFd{display:none !important}.tMVVMmSi7U .wT\+t\+-VdWl{display:none !important}}.\+bLnbEN\+tv{position:relative}.\+bLnbEN\+tv .Wj6BKBuA4I{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-pack:distribute;justify-content:space-around;height:45px;width:100%}.VNbx2RF7IV{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;width:100%;max-height:800px;overflow-y:auto}.VNbx2RF7IV .ETJQqjBwic{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:80px}.VNbx2RF7IV .aaW0IBZNsK,.VNbx2RF7IV .aHFHPemeYP{-webkit-box-flex:1;-ms-flex:1;flex:1;padding:20px;min-height:600px;max-height:800px;border:1px solid gray;overflow-y:auto}.VNbx2RF7IV .ckJe26VVUr{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.VNbx2RF7IV .O2Q8MPSlER{height:100%;width:100%}.VNbx2RF7IV .O2Q8MPSlER .aYvLXIuNLB{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.VNbx2RF7IV .O2Q8MPSlER .aYvLXIuNLB .bYg\+aDWMyP{margin-right:16px;margin-bottom:16px}
.QeDSzR5VDq{position:relative}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.b6wRvuSeoC{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.jWl3yhCW1q{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.JMaYc69xn3{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.JMaYc69xn3>i,.JMaYc69xn3>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.pBpBLxAG38{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.eMVxvYzliN{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.j0eRqspOGU{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.SQt\+8cgojU{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.hHhaKaHd-i{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.c7NIPT6YDN{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.j-Skuyy2Ff{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.j-Skuyy2Ff .CHn\+lUT1rU{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.j-Skuyy2Ff .CHn\+lUT1rU>span{color:rgba(0,0,0,0.65)}.ew0o6VBMvo{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.ew0o6VBMvo .z2LNWLQQa1{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.ew0o6VBMvo .z2LNWLQQa1>span{font-size:8px}.OJg2rP2Qna .ant-popover-inner-content{padding:0}.OJg2rP2Qna .ant-popover-arrow{border-color:#475365 !important}.OJg2rP2Qna .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.MOng6JE9n3{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.AVMWN7mx78{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.AVMWN7mx78 .beK7JyqIMk{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.NRyjrDuz-Y{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.IlTSM1\+Me-{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.IlTSM1\+Me-{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.SA3ZIRakZ1{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.KwR4L-vZ9K html,.KwR4L-vZ9K body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.KwR4L-vZ9K body,.KwR4L-vZ9K div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.KwR4L-vZ9K textarea{border:none !important;padding-left:0 !important}.KwR4L-vZ9K table,.KwR4L-vZ9K tr,.KwR4L-vZ9K td{page-break-inside:avoid}.KwR4L-vZ9K div{page-break-inside:avoid}.KwR4L-vZ9K thead{display:table-header-group}.KwR4L-vZ9K tfoot{display:table-footer-group}.KwR4L-vZ9K *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.KwR4L-vZ9K .GNqy1k2bkU,.KwR4L-vZ9K .no-print,.KwR4L-vZ9K .react-resizable-handle,.KwR4L-vZ9K .fc-whiteboard-toolbar,.KwR4L-vZ9K .ant-modal-root,.KwR4L-vZ9K .ant-alert,.KwR4L-vZ9K .fQGVaKKzcS,.KwR4L-vZ9K .pyi1EKsbBT{display:none !important}.KwR4L-vZ9K ._5aVS6Th\+-W{display:none !important}}.EsBh6I1Gl3 .selectable-selectbox{z-index:9000;position:absolute;cursor:default;background:none;border:1px dashed grey}.UDiWfEZ9mg{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;height:45px;width:100%}.l\+xnZE2\+Uk{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.Mfsgrawtix{height:600px;width:100%}.Mfsgrawtix .ntXYeCLuaM{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.Mfsgrawtix .ntXYeCLuaM .OBI9\+1lUKp{margin-right:16px;margin-bottom:16px}
.aEf9hZ97ZR{position:relative}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}._6apfTuTUIg{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.JuhSyx3iKU{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.AL1UdELR3h{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.AL1UdELR3h>i,.AL1UdELR3h>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.cwb27y13u7{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.fMsENbqo8W{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.kLY0jtX9xh{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.Hfy6cVPkpZ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.vNV9PuHqCJ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.lZmTZJKTm2{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.neMZVd-gfI{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.neMZVd-gfI .Yn1gPGe3zo{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.neMZVd-gfI .Yn1gPGe3zo>span{color:rgba(0,0,0,0.65)}._6YxS0VnXnF{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}._6YxS0VnXnF .HJ262nzD6B{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}._6YxS0VnXnF .HJ262nzD6B>span{font-size:8px}.k07avo5FGU .ant-popover-inner-content{padding:0}.k07avo5FGU .ant-popover-arrow{border-color:#475365 !important}.k07avo5FGU .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.XwBsfgMLMy{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.nKzETB9ts0{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.nKzETB9ts0 .n4xmnsOKlk{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.\-53EJJXsO2{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.nb3q8DKmh\+{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.nb3q8DKmh\+{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.OmtaLAodb8{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.v9O1RXxK2M html,.v9O1RXxK2M body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.v9O1RXxK2M body,.v9O1RXxK2M div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.v9O1RXxK2M textarea{border:none !important;padding-left:0 !important}.v9O1RXxK2M table,.v9O1RXxK2M tr,.v9O1RXxK2M td{page-break-inside:avoid}.v9O1RXxK2M div{page-break-inside:avoid}.v9O1RXxK2M thead{display:table-header-group}.v9O1RXxK2M tfoot{display:table-footer-group}.v9O1RXxK2M *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.v9O1RXxK2M .njLXLD7xye,.v9O1RXxK2M .no-print,.v9O1RXxK2M .react-resizable-handle,.v9O1RXxK2M .fc-whiteboard-toolbar,.v9O1RXxK2M .ant-modal-root,.v9O1RXxK2M .ant-alert,.v9O1RXxK2M .vHVMY-eMU4,.v9O1RXxK2M .LC7MraKT0p{display:none !important}.v9O1RXxK2M .nROCoFqvCV{display:none !important}}._3gh7xMDetT{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:16px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.iINVH2s4hS{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.x5G\+78G60p{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.\+Pu6x5pW6n{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.\+Pu6x5pW6n>i,.\+Pu6x5pW6n>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.vO9iBzpdq8{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._1MmWQv1aRj{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.K6NdznpkYr{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.ll7kQilPft{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}._8s-txjIJGZ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._7TdrP1\+HIR{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.BaW5Py7VLv{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.BaW5Py7VLv .Wm9x8FQ8jf{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.BaW5Py7VLv .Wm9x8FQ8jf>span{color:rgba(0,0,0,0.65)}.AVVDF12VxP{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.AVVDF12VxP .FwKSV1RGwG{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.AVVDF12VxP .FwKSV1RGwG>span{font-size:8px}.E0Y41shJqz .ant-popover-inner-content{padding:0}.E0Y41shJqz .ant-popover-arrow{border-color:#475365 !important}.E0Y41shJqz .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.dfkp\+J1zX5{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.bpoE-4POyR{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.bpoE-4POyR .uZ9rCR6yQY{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.DJm3rdMp4-{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.nd-d2gMdGe{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.nd-d2gMdGe{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.rNC8EG\+YhR{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.kzaFPe6sfs html,.kzaFPe6sfs body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.kzaFPe6sfs body,.kzaFPe6sfs div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.kzaFPe6sfs textarea{border:none !important;padding-left:0 !important}.kzaFPe6sfs table,.kzaFPe6sfs tr,.kzaFPe6sfs td{page-break-inside:avoid}.kzaFPe6sfs div{page-break-inside:avoid}.kzaFPe6sfs thead{display:table-header-group}.kzaFPe6sfs tfoot{display:table-footer-group}.kzaFPe6sfs *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.kzaFPe6sfs ._03vGkAGlqC,.kzaFPe6sfs .no-print,.kzaFPe6sfs .react-resizable-handle,.kzaFPe6sfs .fc-whiteboard-toolbar,.kzaFPe6sfs .ant-modal-root,.kzaFPe6sfs .ant-alert,.kzaFPe6sfs ._1sjyLawvrz,.kzaFPe6sfs .l6I7NteyjB{display:none !important}.kzaFPe6sfs .xsJkTOTzpT{display:none !important}}.AnLFXfyjo1{padding:12px 24px;padding-bottom:0;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:#fff;border-radius:3px 3px 0 0;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.AnLFXfyjo1>div{margin-bottom:12px}.\-6woXEg6pk{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-flex:1;-ms-flex:1;flex:1}.\-6woXEg6pk>div:nth-child(1){width:100px}
._9a1APhROCY{position:inherit;display:inline-block}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.wxFPeIKOLS{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.gPf5u7GreB{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.-SEz\+NNn\+8{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.-SEz\+NNn\+8>i,.-SEz\+NNn\+8>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.u-g4UOC5AG{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.xGRQK-H1ey{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.PhxNtgJVhC{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.a1EYqSW3PM{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.qdmsPQXcMT{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._4EU6MpcPFn{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.H5FdDLNoou{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.H5FdDLNoou .MSTlkYRDp6{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.H5FdDLNoou .MSTlkYRDp6>span{color:rgba(0,0,0,0.65)}.YxBvVmlsFy{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.YxBvVmlsFy .qy3dZz2iBa{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.YxBvVmlsFy .qy3dZz2iBa>span{font-size:8px}.e9x2t0YAFJ .ant-popover-inner-content{padding:0}.e9x2t0YAFJ .ant-popover-arrow{border-color:#475365 !important}.e9x2t0YAFJ .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.J0LL57ha0P{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.G-TGjVjUjj{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.G-TGjVjUjj .FFbOwLJVum{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.pNJ5aQDDGs{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.cYdm0XDdMY{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.cYdm0XDdMY{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}._1Vb5\+WG5sc{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.IWRi66l2uw html,.IWRi66l2uw body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.IWRi66l2uw body,.IWRi66l2uw div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.IWRi66l2uw textarea{border:none !important;padding-left:0 !important}.IWRi66l2uw table,.IWRi66l2uw tr,.IWRi66l2uw td{page-break-inside:avoid}.IWRi66l2uw div{page-break-inside:avoid}.IWRi66l2uw thead{display:table-header-group}.IWRi66l2uw tfoot{display:table-footer-group}.IWRi66l2uw *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.IWRi66l2uw .lDeMKiFZrN,.IWRi66l2uw .no-print,.IWRi66l2uw .react-resizable-handle,.IWRi66l2uw .fc-whiteboard-toolbar,.IWRi66l2uw .ant-modal-root,.IWRi66l2uw .ant-alert,.IWRi66l2uw .HL5D9x9ljl,.IWRi66l2uw .p4g821u8YG{display:none !important}.IWRi66l2uw .jgW1hT35BW{display:none !important}}.rXGqU5\+55p>div{margin-bottom:18px}.rXGqU5\+55p .GnYsMQaBMA{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.rXGqU5\+55p .GnYsMQaBMA>span:first-child{display:block;margin-right:12px}.rXGqU5\+55p .GnYsMQaBMA>div:last-child{-webkit-box-flex:1;-ms-flex:1 1 1px;flex:1 1 1px}.ant-cascader-picker-arrow{-webkit-transform:translate(8px, -45%);transform:translate(8px, -45%)}
.jJJkMQ4v8m>div{margin-bottom:18px}.jJJkMQ4v8m>div>span{display:inline-block;margin-right:12px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.wMe7RbNVDV{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.DpXH6v-90N{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}._9PE\+fSPzsj{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}._9PE\+fSPzsj>i,._9PE\+fSPzsj>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.FFsXFmRsZd{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.AupADrQVSj{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.k8M3rk40w2{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.mNNnftVu3z{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.uJTer7iQR5{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.kDUY\+gxwNk{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.UWIo0bujiU{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.UWIo0bujiU .jOVK4bNpMe{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.UWIo0bujiU .jOVK4bNpMe>span{color:rgba(0,0,0,0.65)}.ORqm\+6y6p3{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.ORqm\+6y6p3 .pnBeYxuvLv{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.ORqm\+6y6p3 .pnBeYxuvLv>span{font-size:8px}.eppD5Z1RAz .ant-popover-inner-content{padding:0}.eppD5Z1RAz .ant-popover-arrow{border-color:#475365 !important}.eppD5Z1RAz .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.TNvH1A0jhz{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.KuKfVyrGNC{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.KuKfVyrGNC .nLutcZu6p4{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}._8EMcGx-Xk3{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.X2KAc9sMrA{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.X2KAc9sMrA{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.sNmtRmcLJE{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.VmvBCyHZxP html,.VmvBCyHZxP body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.VmvBCyHZxP body,.VmvBCyHZxP div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.VmvBCyHZxP textarea{border:none !important;padding-left:0 !important}.VmvBCyHZxP table,.VmvBCyHZxP tr,.VmvBCyHZxP td{page-break-inside:avoid}.VmvBCyHZxP div{page-break-inside:avoid}.VmvBCyHZxP thead{display:table-header-group}.VmvBCyHZxP tfoot{display:table-footer-group}.VmvBCyHZxP *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.VmvBCyHZxP .W4krdiVj-Y,.VmvBCyHZxP .no-print,.VmvBCyHZxP .react-resizable-handle,.VmvBCyHZxP .fc-whiteboard-toolbar,.VmvBCyHZxP .ant-modal-root,.VmvBCyHZxP .ant-alert,.VmvBCyHZxP .FD-7LTby3J,.VmvBCyHZxP .PFeajJVYEM{display:none !important}.VmvBCyHZxP .nQpEWyf1Ep{display:none !important}}.BpHp4A5yGA{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.BpHp4A5yGA>div{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-flex:1;-ms-flex:1 1 1px;flex:1 1 1px}.BpHp4A5yGA>div>span{display:inline-block;margin-right:18px}.BpHp4A5yGA>div>div:last-child{-webkit-box-flex:1;-ms-flex:1 1 1px;flex:1 1 1px}.BpHp4A5yGA>div:first-child{margin-right:20px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.GNAyiGOevq{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.URpqr8ia\+0{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.f3gWiq55G\+{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.f3gWiq55G\+>i,.f3gWiq55G\+>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.ACaPuxnJ1A{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.x7HWkDRieE{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.ogplu7viIe{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.ygim74KahJ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.z08U8lYEmE{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.-wJ2cVoaqn{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.LNWyKCwXGV{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.LNWyKCwXGV .Q6jIdV5Bsm{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.LNWyKCwXGV .Q6jIdV5Bsm>span{color:rgba(0,0,0,0.65)}.gNETw8C4ev{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.gNETw8C4ev .NQyYKdLTuf{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.gNETw8C4ev .NQyYKdLTuf>span{font-size:8px}.a\+F\+ZW8ZQA .ant-popover-inner-content{padding:0}.a\+F\+ZW8ZQA .ant-popover-arrow{border-color:#475365 !important}.a\+F\+ZW8ZQA .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.k4JekRJRL8{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.X6z7cYXGZA{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.X6z7cYXGZA .cYwiH83pK1{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.cIg7vtS\+1i{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.dXyUh03cwG{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.dXyUh03cwG{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.YkuQxOxOP4{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.wIYewV5N4K html,.wIYewV5N4K body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.wIYewV5N4K body,.wIYewV5N4K div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.wIYewV5N4K textarea{border:none !important;padding-left:0 !important}.wIYewV5N4K table,.wIYewV5N4K tr,.wIYewV5N4K td{page-break-inside:avoid}.wIYewV5N4K div{page-break-inside:avoid}.wIYewV5N4K thead{display:table-header-group}.wIYewV5N4K tfoot{display:table-footer-group}.wIYewV5N4K *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.wIYewV5N4K .hKplAh5EYw,.wIYewV5N4K .no-print,.wIYewV5N4K .react-resizable-handle,.wIYewV5N4K .fc-whiteboard-toolbar,.wIYewV5N4K .ant-modal-root,.wIYewV5N4K .ant-alert,.wIYewV5N4K .Qa\+\+I4Ks7I,.wIYewV5N4K .JWhhOMN2qS{display:none !important}.wIYewV5N4K .ymymSCNkyC{display:none !important}}.lDoOwDFeom{position:relative}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.dZXVakdvg9{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.nuwAjTwfY3{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.Mkmct45hMp{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.Mkmct45hMp>i,.Mkmct45hMp>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.PQg8jRUp1j{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._8aZZc2j\+oa{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}._6DUVNhv4ix{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.XplKG5iTO-{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.WWD8P-ijgJ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.CFy9PnvKf5{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.p7uyDvCbwy{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.p7uyDvCbwy .PwJH7VP0J-{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.p7uyDvCbwy .PwJH7VP0J->span{color:rgba(0,0,0,0.65)}.rN-BWxe\+cr{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.rN-BWxe\+cr .yGGH1xGDQC{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.rN-BWxe\+cr .yGGH1xGDQC>span{font-size:8px}.smtbrtoVXU .ant-popover-inner-content{padding:0}.smtbrtoVXU .ant-popover-arrow{border-color:#475365 !important}.smtbrtoVXU .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.Z-wD9XY5t8{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.U9voHCDDwL{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.U9voHCDDwL ._4OOwpqS0sr{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.ZLPmRGRZDe{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}._7t24TZTSP4{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{._7t24TZTSP4{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.k4VAbYyzcm{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.v9BkKwExnh html,.v9BkKwExnh body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.v9BkKwExnh body,.v9BkKwExnh div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.v9BkKwExnh textarea{border:none !important;padding-left:0 !important}.v9BkKwExnh table,.v9BkKwExnh tr,.v9BkKwExnh td{page-break-inside:avoid}.v9BkKwExnh div{page-break-inside:avoid}.v9BkKwExnh thead{display:table-header-group}.v9BkKwExnh tfoot{display:table-footer-group}.v9BkKwExnh *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.v9BkKwExnh .e0ynPrKeda,.v9BkKwExnh .no-print,.v9BkKwExnh .react-resizable-handle,.v9BkKwExnh .fc-whiteboard-toolbar,.v9BkKwExnh .ant-modal-root,.v9BkKwExnh .ant-alert,.v9BkKwExnh .dSto48zjKh,.v9BkKwExnh ._6UzeH52XRG{display:none !important}.v9BkKwExnh .O2DP4A5lu0{display:none !important}}.hPUjh1FaVf{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.hPUjh1FaVf .rK0ukawU0j{-webkit-box-flex:1;-ms-flex:1 1 1px;flex:1 1 1px;margin-left:12px}.ant-cascader-picker-arrow{-webkit-transform:translate(8px, -45%);transform:translate(8px, -45%)}
._5lxPWMgGX5{position:relative;-ms-flex-negative:1;flex-shrink:1;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;min-width:0}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.-jD15eRTro{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.D0E-WSdEWp{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.J-m\+anaSnu{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.J-m\+anaSnu>i,.J-m\+anaSnu>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}._9OOQIAufSN{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._0T2Ybv98a7{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.BRiRR6uKV6{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.nYvDSzI0BT{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.WRRc\+wFcKr{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.r7Jq4Yaywx{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.YFlBCDYvpC{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.YFlBCDYvpC ._8NKfws3vFg{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.YFlBCDYvpC ._8NKfws3vFg>span{color:rgba(0,0,0,0.65)}.B3Ug-GDxbm{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.B3Ug-GDxbm ._2qsfZvQ0hm{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.B3Ug-GDxbm ._2qsfZvQ0hm>span{font-size:8px}.Zz\+b1ydpl7 .ant-popover-inner-content{padding:0}.Zz\+b1ydpl7 .ant-popover-arrow{border-color:#475365 !important}.Zz\+b1ydpl7 .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}._5mRUcIPki4{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.LwJt63hH2q{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.LwJt63hH2q .RaQ1XYlBEb{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.VGhYCKa521{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.IC6V6RTTmo{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.IC6V6RTTmo{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.PIrI9JoOr8{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.Q26-DlY9w0 html,.Q26-DlY9w0 body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.Q26-DlY9w0 body,.Q26-DlY9w0 div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.Q26-DlY9w0 textarea{border:none !important;padding-left:0 !important}.Q26-DlY9w0 table,.Q26-DlY9w0 tr,.Q26-DlY9w0 td{page-break-inside:avoid}.Q26-DlY9w0 div{page-break-inside:avoid}.Q26-DlY9w0 thead{display:table-header-group}.Q26-DlY9w0 tfoot{display:table-footer-group}.Q26-DlY9w0 *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.Q26-DlY9w0 .hOQkV7DJje,.Q26-DlY9w0 .no-print,.Q26-DlY9w0 .react-resizable-handle,.Q26-DlY9w0 .fc-whiteboard-toolbar,.Q26-DlY9w0 .ant-modal-root,.Q26-DlY9w0 .ant-alert,.Q26-DlY9w0 .cVrcylfiu2,.Q26-DlY9w0 .irPv4\+h5dd{display:none !important}.Q26-DlY9w0 .NgXik0fMw3{display:none !important}}.RMTrF-CxhL{width:130px;height:130px;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12);border-radius:10px;background:#ffb822;cursor:pointer;position:relative}.RMTrF-CxhL .iClhl8uCkp{border-radius:10px;border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:0;position:absolute;width:130px;height:94px;background:rgba(41, 40, 171);z-index:2;top:0}.RMTrF-CxhL .OGLCSdS2H4{height:94px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:white;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.RMTrF-CxhL .OGLCSdS2H4 .pfcqqsXxQX{z-index:3;font-size:16px;text-align:center}.RMTrF-CxhL .OGLCSdS2H4 ._2HxPurfMBz{font-size:12px;margin-top:4px;z-index:3;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:0 4px;text-align:center}.RMTrF-CxhL .QUa63fRdjv{height:36px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:white;border-bottom-left-radius:10px;border-bottom-right-radius:10px}.RMTrF-CxhL .QUa63fRdjv>span{text-align:center}.RMTrF-CxhL ._9orXQuN3Rs{position:absolute;top:-5px;left:-5px}.RMTrF-CxhL ._9orXQuN3Rs svg>path{stroke-dasharray:120;stroke-width:5;-webkit-animation:_7fOI8poA1d 5s linear forwards infinite;animation:_7fOI8poA1d 5s linear forwards infinite}@-webkit-keyframes _7fOI8poA1d{from{stroke-dashoffset:0}to{stroke-dashoffset:1000}}@keyframes _7fOI8poA1d{from{stroke-dashoffset:0}to{stroke-dashoffset:1000}}.XEMllO\+yED{cursor:pointer}.XEMllO\+yED .ant-card-head{height:63px;background-color:rgba(0,0,0,0.85)}.XEMllO\+yED .ant-card-head-title{padding:8px 0}.XEMllO\+yED .LjzqJvC-vP{position:relative;width:160px;height:180px}.XEMllO\+yED .LjzqJvC-vP .g2-html-annotation{color:white;font-size:24px;margin-top:8px}.XEMllO\+yED .LjzqJvC-vP .antd-pro-charts-water-wave-waterWaveCanvasWrapper{width:160px !important;height:160px !important}.XEMllO\+yED .LjzqJvC-vP .antd-pro-charts-water-wave-text{width:160px;position:absolute;top:30%;left:0%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;color:white;font-size:14px}.XEMllO\+yED .LjzqJvC-vP .antd-pro-charts-water-wave-text h4{color:white;font-size:22px}.XEMllO\+yED .dGE4mJxbcj{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;border-radius:50%}.XEMllO\+yED .dGE4mJxbcj .pbFLo1JU16{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background-color:black;border-radius:50%;height:156px;width:156px}.XEMllO\+yED .dGE4mJxbcj .pbFLo1JU16 .NTOJouwuoD{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;font-size:26px;border-radius:50%;height:152px;width:152px}.XEMllO\+yED ._2HxPurfMBz{font-size:16px;line-height:24px;color:white;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}
._52NHO4QfoZ>div{margin-bottom:18px}._52NHO4QfoZ>div>span{display:inline-block;margin-right:12px}
.wC9OaYMCqn{color:#9e9e9e;font-size:13px;line-height:14px;margin:0;margin-top:3px;margin-bottom:16px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.wCr74SftO\+{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.xQe7fIrQAv{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.KngjWF\+dF\+{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.KngjWF\+dF\+>i,.KngjWF\+dF\+>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.as77hIq2GF{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._71PR-9lMXe{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.t5C9J38pjV{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.sfq6EDklwa{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}._1w2oguz0c\+{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.P4Q0HlENfa{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.znGMU-NIP\+{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.znGMU-NIP\+ ._2hbJ7tMUdr{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.znGMU-NIP\+ ._2hbJ7tMUdr>span{color:rgba(0,0,0,0.65)}.eVR5uTaviz{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.eVR5uTaviz .A4axrG2dZ\+{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.eVR5uTaviz .A4axrG2dZ\+>span{font-size:8px}.DHqt6Sl6V2 .ant-popover-inner-content{padding:0}.DHqt6Sl6V2 .ant-popover-arrow{border-color:#475365 !important}.DHqt6Sl6V2 .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.sN3pFdhEGd{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.U2z5dANQj5{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.U2z5dANQj5 .EFLf4U6b4g{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.WpoS\+\+ZfJG{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.UcbodIlk1y{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.UcbodIlk1y{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.U92vynMjod{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{._2k56ZQ182r html,._2k56ZQ182r body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}._2k56ZQ182r body,._2k56ZQ182r div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}._2k56ZQ182r textarea{border:none !important;padding-left:0 !important}._2k56ZQ182r table,._2k56ZQ182r tr,._2k56ZQ182r td{page-break-inside:avoid}._2k56ZQ182r div{page-break-inside:avoid}._2k56ZQ182r thead{display:table-header-group}._2k56ZQ182r tfoot{display:table-footer-group}._2k56ZQ182r *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}._2k56ZQ182r .bjSnUELact,._2k56ZQ182r .no-print,._2k56ZQ182r .react-resizable-handle,._2k56ZQ182r .fc-whiteboard-toolbar,._2k56ZQ182r .ant-modal-root,._2k56ZQ182r .ant-alert,._2k56ZQ182r .dIuDw91u-x,._2k56ZQ182r ._1PMd5IfAGf{display:none !important}._2k56ZQ182r .e-vkpVbjWg{display:none !important}}.ZiQVSMcSRe .CGiLd66uaP{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:14px}.ZiQVSMcSRe .CGiLd66uaP i{margin-right:16px}.ZiQVSMcSRe .xGQyW1FaMo{height:360px;overflow:auto}.N6jZzgVIr4{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:16px}.N6jZzgVIr4>div{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.N6jZzgVIr4 .bcTD0oCrZq{margin-right:16px}.N6jZzgVIr4 .bcTD0oCrZq span{margin-right:8px}.a9vkicfgmO{color:#6874e2;margin-bottom:16px;font-size:16px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.hzIKAw3PCh{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.Yr-08CwiKb{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.bRA3WeVfiv{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.bRA3WeVfiv>i,.bRA3WeVfiv>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.ctFncRK4Ej{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.yRiFWy7A\+s{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.R82hrGbn-4{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}._0BysMx35J3{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}._2B3DYZATH8{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.joHB9zAgG4{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.HiULFl6BGF{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.HiULFl6BGF .ZJDDYUaUDR{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.HiULFl6BGF .ZJDDYUaUDR>span{color:rgba(0,0,0,0.65)}.OSgRCcgvYu{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.OSgRCcgvYu ._4AmdlZn1zt{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.OSgRCcgvYu ._4AmdlZn1zt>span{font-size:8px}.FqulYnnu-V .ant-popover-inner-content{padding:0}.FqulYnnu-V .ant-popover-arrow{border-color:#475365 !important}.FqulYnnu-V .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.fFouGbUilt{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.EcWD6uP03z{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.EcWD6uP03z .or0Rko2s1J{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.pSmS-1PtRG{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.CO\+3MCKFfA{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.CO\+3MCKFfA{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.ZSViTrpChv{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.vcaVZC2qET html,.vcaVZC2qET body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.vcaVZC2qET body,.vcaVZC2qET div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.vcaVZC2qET textarea{border:none !important;padding-left:0 !important}.vcaVZC2qET table,.vcaVZC2qET tr,.vcaVZC2qET td{page-break-inside:avoid}.vcaVZC2qET div{page-break-inside:avoid}.vcaVZC2qET thead{display:table-header-group}.vcaVZC2qET tfoot{display:table-footer-group}.vcaVZC2qET *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.vcaVZC2qET .gOiZVDkzPs,.vcaVZC2qET .no-print,.vcaVZC2qET .react-resizable-handle,.vcaVZC2qET .fc-whiteboard-toolbar,.vcaVZC2qET .ant-modal-root,.vcaVZC2qET .ant-alert,.vcaVZC2qET .r9Ez4lTdBa,.vcaVZC2qET .xbbZ4zWp3g{display:none !important}.vcaVZC2qET ._1NJenQVvE1{display:none !important}}.NatCXaoNuB{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.NatCXaoNuB ._7AwNDyAHaK{width:250px;height:40px;line-height:40px;display:inline-block}.NatCXaoNuB .PDeAJWKc3e{width:250px;height:30px;line-height:30px;display:inline-block;font-size:14px}.NatCXaoNuB .vDSPOtd5Ty{padding:16px;padding-top:0}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.BMiaO-rkup{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.f8Ci8HAoOO{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.WxxjFl1KR-{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.WxxjFl1KR->i,.WxxjFl1KR->span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.CkT-\+3E8QD{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.JcgUjzltsq{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.d5z-o3ZZ0n{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}._7AV\+rAfC\+d{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.ZH8lwTNF\+n{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.fA2tN2Z4jA{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._9XjD6wq-4M{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}._9XjD6wq-4M .TTkOdPTgdI{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}._9XjD6wq-4M .TTkOdPTgdI>span{color:rgba(0,0,0,0.65)}.JtVTvO2hLP{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.JtVTvO2hLP ._2biHOZx-TK{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.JtVTvO2hLP ._2biHOZx-TK>span{font-size:8px}.rpVvCNrrVo .ant-popover-inner-content{padding:0}.rpVvCNrrVo .ant-popover-arrow{border-color:#475365 !important}.rpVvCNrrVo .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.\+UXuuUEV6J{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.YbBXdlKf56{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.YbBXdlKf56 ._3GN3NmL115{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.VS5AENWOpq{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.W\+RyRbAdZy{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.W\+RyRbAdZy{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.AM88gr6S5j{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.-R735kP0mm html,.-R735kP0mm body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.-R735kP0mm body,.-R735kP0mm div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.-R735kP0mm textarea{border:none !important;padding-left:0 !important}.-R735kP0mm table,.-R735kP0mm tr,.-R735kP0mm td{page-break-inside:avoid}.-R735kP0mm div{page-break-inside:avoid}.-R735kP0mm thead{display:table-header-group}.-R735kP0mm tfoot{display:table-footer-group}.-R735kP0mm *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.-R735kP0mm .IzJPoFgQnG,.-R735kP0mm .no-print,.-R735kP0mm .react-resizable-handle,.-R735kP0mm .fc-whiteboard-toolbar,.-R735kP0mm .ant-modal-root,.-R735kP0mm .ant-alert,.-R735kP0mm .Ny4X\+BWdlO,.-R735kP0mm .PWvZYhoyhH{display:none !important}.-R735kP0mm .kTK0-XtT\+F{display:none !important}}.gCpSWozErn{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;background:rgba(0,0,0,0.45)}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}._0lWO1uN7Ou{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.uPASSs5wT8{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.Dfci7bB9CM{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.Dfci7bB9CM>i,.Dfci7bB9CM>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}._02Pq\+aYBoR{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.NSUAjDRsrb{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.enBrJEsmln{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}._9nR3GJ3AXz{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.heodh5mX84{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.sTv1ii6sK3{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.rcuoFZp1ad{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.rcuoFZp1ad .QkrNcTGyxv{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.rcuoFZp1ad .QkrNcTGyxv>span{color:rgba(0,0,0,0.65)}.FMeR9cWRkU{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.FMeR9cWRkU ._6T8YMTUjH6{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.FMeR9cWRkU ._6T8YMTUjH6>span{font-size:8px}.rvJmvb\+H-L .ant-popover-inner-content{padding:0}.rvJmvb\+H-L .ant-popover-arrow{border-color:#475365 !important}.rvJmvb\+H-L .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.RS9TvWvhBI{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.\+1UNwhQum1{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.\+1UNwhQum1 ._98qHGYZH1Q{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.MLahmGMmgF{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.Thj6T\+IeaK{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.Thj6T\+IeaK{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.NaNOFaC8lp{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.P3SO8v2zNj html,.P3SO8v2zNj body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.P3SO8v2zNj body,.P3SO8v2zNj div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.P3SO8v2zNj textarea{border:none !important;padding-left:0 !important}.P3SO8v2zNj table,.P3SO8v2zNj tr,.P3SO8v2zNj td{page-break-inside:avoid}.P3SO8v2zNj div{page-break-inside:avoid}.P3SO8v2zNj thead{display:table-header-group}.P3SO8v2zNj tfoot{display:table-footer-group}.P3SO8v2zNj *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.P3SO8v2zNj .Qm6bySeMjr,.P3SO8v2zNj .no-print,.P3SO8v2zNj .react-resizable-handle,.P3SO8v2zNj .fc-whiteboard-toolbar,.P3SO8v2zNj .ant-modal-root,.P3SO8v2zNj .ant-alert,.P3SO8v2zNj .\+lGXu8eEPe,.P3SO8v2zNj ._9f0ScpToXJ{display:none !important}.P3SO8v2zNj .mEhVtbXIVa{display:none !important}}._27sjTqiqq5{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.W2fvM9vpbw .react-resizable-handle{position:absolute;width:10px;height:10px;background:black;right:0;bottom:0}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.lUDCyaYBgf{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.pXx5YLyA6g{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.NP5j\+KygTK{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.NP5j\+KygTK>i,.NP5j\+KygTK>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.suIiq8yFvS{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.u4Fgpg60Fj{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.gSVjtK7Brn{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.A3nq4utJXE{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.Zz09qPlBE8{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.ZTM7PFqG4c{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.OuAmERel0I{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.OuAmERel0I .md35o0pu4B{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.OuAmERel0I .md35o0pu4B>span{color:rgba(0,0,0,0.65)}.\+H1fXk4kFK{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.\+H1fXk4kFK .Xd3VYH4Vi1{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.\+H1fXk4kFK .Xd3VYH4Vi1>span{font-size:8px}.libUbJlFuP .ant-popover-inner-content{padding:0}.libUbJlFuP .ant-popover-arrow{border-color:#475365 !important}.libUbJlFuP .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}._7zv6igbORo{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.gl7lEdLe3M{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.gl7lEdLe3M .Ai0kNwFy8A{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}._1i0A86bz-2{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.jYoOsG8HCy{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.jYoOsG8HCy{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}._8X236\+vbqE{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.oSNCGprEOq html,.oSNCGprEOq body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.oSNCGprEOq body,.oSNCGprEOq div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.oSNCGprEOq textarea{border:none !important;padding-left:0 !important}.oSNCGprEOq table,.oSNCGprEOq tr,.oSNCGprEOq td{page-break-inside:avoid}.oSNCGprEOq div{page-break-inside:avoid}.oSNCGprEOq thead{display:table-header-group}.oSNCGprEOq tfoot{display:table-footer-group}.oSNCGprEOq *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.oSNCGprEOq .Y7wFE-E5AL,.oSNCGprEOq .no-print,.oSNCGprEOq .react-resizable-handle,.oSNCGprEOq .fc-whiteboard-toolbar,.oSNCGprEOq .ant-modal-root,.oSNCGprEOq .ant-alert,.oSNCGprEOq .oKeps3Z3x6,.oSNCGprEOq ._576m0Gk\+fa{display:none !important}.oSNCGprEOq .knIDtvYr6g{display:none !important}}._4ToFFNskPa{padding:24px}._4ToFFNskPa .miZlV7SvIT{color:#fff;border:1px solid #0076cf;background-color:#6874e2;margin:12 0}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}._7dOwFK8ZqC{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.DQ3qHn-bBe{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.DIveJK7I7U{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.DIveJK7I7U>i,.DIveJK7I7U>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.xm6PTdMBF4{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.RvRgLGAjn3{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.SSr5x9VijF{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.Pr8Tcr\+m1\+{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}._3kFLhp1ggX{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._7w4oT2xB5T{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.gYsaN72kfa{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.gYsaN72kfa .TEuFKzbdpK{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.gYsaN72kfa .TEuFKzbdpK>span{color:rgba(0,0,0,0.65)}.lT570Trtj\+{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.lT570Trtj\+ .Yp\+XPG8MVQ{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.lT570Trtj\+ .Yp\+XPG8MVQ>span{font-size:8px}.VnrOCkN8EJ .ant-popover-inner-content{padding:0}.VnrOCkN8EJ .ant-popover-arrow{border-color:#475365 !important}.VnrOCkN8EJ .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.S6rBmqZ-1H{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}._3B84x0L-X9{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._3B84x0L-X9 .Fli2-PRNNS{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.YXyZTBqbLU{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.kE8m14Asjj{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.kE8m14Asjj{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.SG4crfUkjW{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.WKi6L84J9v html,.WKi6L84J9v body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.WKi6L84J9v body,.WKi6L84J9v div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.WKi6L84J9v textarea{border:none !important;padding-left:0 !important}.WKi6L84J9v table,.WKi6L84J9v tr,.WKi6L84J9v td{page-break-inside:avoid}.WKi6L84J9v div{page-break-inside:avoid}.WKi6L84J9v thead{display:table-header-group}.WKi6L84J9v tfoot{display:table-footer-group}.WKi6L84J9v *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.WKi6L84J9v .Qdv7Y4vm5h,.WKi6L84J9v .no-print,.WKi6L84J9v .react-resizable-handle,.WKi6L84J9v .fc-whiteboard-toolbar,.WKi6L84J9v .ant-modal-root,.WKi6L84J9v .ant-alert,.WKi6L84J9v .rmAvybBohb,.WKi6L84J9v ._7QurnbL-D4{display:none !important}.WKi6L84J9v .nB-1a9CHsL{display:none !important}}.LE1P1a5Xsj{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.LE1P1a5Xsj .Hcy-WoRqiU{display:-webkit-box;display:-ms-flexbox;display:flex;padding:24px;height:100%;padding-top:0}.LE1P1a5Xsj .Hcy-WoRqiU .XdCCcxJYp0{width:280px;margin-right:24px;padding-top:30px}.LE1P1a5Xsj .Hcy-WoRqiU .XdCCcxJYp0 .c4njAAHSTT{display:-webkit-box;display:-ms-flexbox;display:flex;height:50px;cursor:pointer;color:#6874e2;padding:0 24px;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.LE1P1a5Xsj .Hcy-WoRqiU .XdCCcxJYp0 .ant-list-header{padding:0}.LE1P1a5Xsj .Hcy-WoRqiU .XdCCcxJYp0 .ant-list-item-action{margin-left:2px}.LE1P1a5Xsj .Hcy-WoRqiU .XdCCcxJYp0 .ant-list-item{padding-right:12px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.LE1P1a5Xsj .Hcy-WoRqiU .\+zCxbImB\+w{-webkit-box-flex:1;-ms-flex:1 1 1px;flex:1 1 1px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}._5dSDJ4rEhl{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.cDPI3fOpTB{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.E7PObd\+osq{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.E7PObd\+osq>i,.E7PObd\+osq>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}._4KHyi0RsZt{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.YOQPdI7BrE{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.x-uz0R4\+F3{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.l2mLg6E6E8{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.zhSG9d1R5o{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.mmx8-ID5Qq{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.T\+3lKm3sqy{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.T\+3lKm3sqy .GFotjhVpZU{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.T\+3lKm3sqy .GFotjhVpZU>span{color:rgba(0,0,0,0.65)}.-h4uE3HGfz{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.-h4uE3HGfz .xqxnwCb9yP{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.-h4uE3HGfz .xqxnwCb9yP>span{font-size:8px}.H8kfCiTdcv .ant-popover-inner-content{padding:0}.H8kfCiTdcv .ant-popover-arrow{border-color:#475365 !important}.H8kfCiTdcv .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.v1kwfSp062{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.dHVxowS0qe{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.dHVxowS0qe ._8wuW4RM3hH{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.AjngTFx7fv{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.e9lAlolp1I{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.e9lAlolp1I{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.DwGGG6Ei2a{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.vu3Dj9gYLy html,.vu3Dj9gYLy body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.vu3Dj9gYLy body,.vu3Dj9gYLy div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.vu3Dj9gYLy textarea{border:none !important;padding-left:0 !important}.vu3Dj9gYLy table,.vu3Dj9gYLy tr,.vu3Dj9gYLy td{page-break-inside:avoid}.vu3Dj9gYLy div{page-break-inside:avoid}.vu3Dj9gYLy thead{display:table-header-group}.vu3Dj9gYLy tfoot{display:table-footer-group}.vu3Dj9gYLy *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.vu3Dj9gYLy .RXWPGfgDqI,.vu3Dj9gYLy .no-print,.vu3Dj9gYLy .react-resizable-handle,.vu3Dj9gYLy .fc-whiteboard-toolbar,.vu3Dj9gYLy .ant-modal-root,.vu3Dj9gYLy .ant-alert,.vu3Dj9gYLy .TnJ6PqxUjv,.vu3Dj9gYLy .aCxuYD1YWr{display:none !important}.vu3Dj9gYLy ._58aSLFz6HJ{display:none !important}}.MBzNnZ\+mrq{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;height:100%}._8cX1RojcR-{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:16px;background:white}._8cX1RojcR->div{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}._8cX1RojcR- .w1v-cnnUv-{margin-right:10px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}._8cX1RojcR- .w1v-cnnUv->span{margin-right:4px}.b8PUKWGn2B{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-shadow:0 8px 8px rgba(0,0,0,0.15);box-shadow:0 8px 8px rgba(0,0,0,0.15);-webkit-box-flex:0;-ms-flex:0 0 80px;flex:0 0 80px;-ms-flex-pack:distribute;justify-content:space-around}.b8PUKWGn2B .MMN5xT73Gr{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;font-size:16px;font-family:PingFang-SC;color:rgba(0,0,0,0.65);cursor:pointer;height:100%;width:200px}.b8PUKWGn2B .MMN5xT73Gr .GYVZHQAkuP{font-size:18px}.b8PUKWGn2B ._0cn5EaUWaI{border-bottom:2px solid #6874e2;color:#6874e2}.BNoRhrtUhc{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;height:-webkit-fit-content;height:-moz-fit-content;height:fit-content;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-flex:1;-ms-flex:1 1 1px;flex:1 1 1px;margin-top:16px;padding:16px;font-size:14px}.BNoRhrtUhc ._6LoMcl3CVy{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:16px}.BNoRhrtUhc ._6LoMcl3CVy .PIZuVt2Ugj{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:#fff;border:1px solid #ccc;border-radius:4px;cursor:pointer;width:100px;height:30px;line-height:30px;margin-right:16px}.BNoRhrtUhc ._6LoMcl3CVy .ae0iw8SzAi{border:1px solid #6874e2;color:#6874e2}.BNoRhrtUhc ._3ceuEvrCCy{height:calc(100% - 100px);overflow:auto}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.whQwwKgizp{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.t1gZwiz\+Kx{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.b6qpIqZklR{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.b6qpIqZklR>i,.b6qpIqZklR>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.WQJ4BWZ7ve{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.g3URoP-z2d{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.PpEhYqaTYn{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.FZ9CYopTkt{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.Hv2aU7ctdg{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.jcseKPDOum{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.qJGylZxnMI{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.qJGylZxnMI .ZCOJua8djy{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.qJGylZxnMI .ZCOJua8djy>span{color:rgba(0,0,0,0.65)}.Iz7RvvraNk{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.Iz7RvvraNk .HPmSwdf4Aj{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.Iz7RvvraNk .HPmSwdf4Aj>span{font-size:8px}._66zrT5hEZk .ant-popover-inner-content{padding:0}._66zrT5hEZk .ant-popover-arrow{border-color:#475365 !important}._66zrT5hEZk .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.eDIZa1q4DO{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.dNiFMiXKyI{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.dNiFMiXKyI .O4qbRDKpVu{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.VXA-snF-LD{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.ti61Xn7Y7L{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.ti61Xn7Y7L{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}._1sLRuq2G4W{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.rkPJQKzqY7 html,.rkPJQKzqY7 body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.rkPJQKzqY7 body,.rkPJQKzqY7 div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.rkPJQKzqY7 textarea{border:none !important;padding-left:0 !important}.rkPJQKzqY7 table,.rkPJQKzqY7 tr,.rkPJQKzqY7 td{page-break-inside:avoid}.rkPJQKzqY7 div{page-break-inside:avoid}.rkPJQKzqY7 thead{display:table-header-group}.rkPJQKzqY7 tfoot{display:table-footer-group}.rkPJQKzqY7 *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.rkPJQKzqY7 ._2X1RLCrIil,.rkPJQKzqY7 .no-print,.rkPJQKzqY7 .react-resizable-handle,.rkPJQKzqY7 .fc-whiteboard-toolbar,.rkPJQKzqY7 .ant-modal-root,.rkPJQKzqY7 .ant-alert,.rkPJQKzqY7 ._00J0EowrdK,.rkPJQKzqY7 .f5D5ii3Abx{display:none !important}.rkPJQKzqY7 .nUojlQy6Ai{display:none !important}}._0YnyX6cEig{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;height:100%;position:relative}._0YnyX6cEig .mV5Xsg6eW0{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;-webkit-box-flex:0;-ms-flex:0 0 80px;flex:0 0 80px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}._0YnyX6cEig .mV5Xsg6eW0 .ZLOnuqqIwe{font-size:18px;font-family:PingFang-SC;color:rgba(0,0,0,0.65);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center}._0YnyX6cEig ._4RTFVXqbl\+{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-top:16px}._0YnyX6cEig ._4RTFVXqbl\+ .Eig4LQ-sIB{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:16px}._0YnyX6cEig ._4RTFVXqbl\+ .Eig4LQ-sIB>span{font-size:14px}._0YnyX6cEig ._4RTFVXqbl\+ .Eig4LQ-sIB>div:first-child{display:-webkit-box;display:-ms-flexbox;display:flex}._0YnyX6cEig ._4RTFVXqbl\+ .Eig4LQ-sIB>div:first-child>span:first-child{margin-right:8px}._0YnyX6cEig ._4RTFVXqbl\+ .Eig4LQ-sIB .MDToTz\+hLy{margin-right:12px;color:#0076cf}._0YnyX6cEig ._4RTFVXqbl\+ .Eig4LQ-sIB .ant-badge-status-dot{width:8px;height:8px}.UJO66q5CCF{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:60px;position:absolute;bottom:0;width:100%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}
.tdw5Qlp90d{margin-bottom:12px}.CIj1qm8zd4{color:#6874e2;font-size:12px;margin-bottom:8px}
._4v6BhezAAl{height:-webkit-fit-content;height:-moz-fit-content;height:fit-content;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}._4v6BhezAAl .DaGyn4ITNB{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:0 14px}._4v6BhezAAl .DaGyn4ITNB .pzA4Pp2YN-{font-family:PingFangSC-Regular;font-size:14px;color:rgba(0,0,0,0.85);line-height:40px;margin:0 14px 0 0}
.reTVm\+kXHp{height:100%}.reTVm\+kXHp .YJDLBVzhoZ{height:50px;width:100%}.reTVm\+kXHp .YJDLBVzhoZ .wiOgUJBVFF{width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;height:100%;float:left;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.reTVm\+kXHp .YJDLBVzhoZ ._2cUgvDq8g3{width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;height:100%;float:right;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.reTVm\+kXHp .YJDLBVzhoZ ._2cUgvDq8g3 ._4qb1HLHmnq{display:inherit}.reTVm\+kXHp .\+KSDadotJt{height:calc(100% - 100px);width:100%;overflow:auto;margin-top:16px}
.SAsKpADbV9{height:-webkit-fit-content;height:-moz-fit-content;height:fit-content;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.SAsKpADbV9 .OhnR1s0zUG{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.SAsKpADbV9 .OhnR1s0zUG .O-\+BIVw-Qz{font-family:PingFangSC-Regular;font-size:14px;color:rgba(0,0,0,0.85);line-height:40px;margin:0 14px 0 0}
.HMOzILrKSv .ant-form-item{margin-bottom:12px}
.UYFZN-noPg{height:100%}.UYFZN-noPg .keFSB0H-Tf{height:50px;width:100%}.UYFZN-noPg .keFSB0H-Tf .eLju6hzAtP{width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;height:100%;float:left;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.UYFZN-noPg .keFSB0H-Tf .Q7cEOD7q0T{width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;height:100%;float:right;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.UYFZN-noPg .Mv0j3vwCQp{height:calc(100% - 100px);width:100%;overflow:auto;margin-top:16px}.UYFZN-noPg ._5EABuzBMdh{min-width:100px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.UYFZN-noPg ._5EABuzBMdh .Wjh94\+z2nA{color:#6874e2;cursor:pointer;margin:0 5px}
.uIeHURMgz6{height:-webkit-fit-content;height:-moz-fit-content;height:fit-content;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-wrap:wrap;flex-wrap:wrap}.uIeHURMgz6 ._7sDa\+dHsfz{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:0 14px}.uIeHURMgz6 ._7sDa\+dHsfz ._97b9Qs0vhA{font-family:PingFangSC-Regular;font-size:14px;color:rgba(0,0,0,0.85);line-height:40px;margin:0 14px 0 0}
.rrPFGbbALv{height:100%}.rrPFGbbALv .lo2CpQLAZL{height:calc(100% - 100px);overflow:auto;margin-top:16px}.nP29azievL{font-size:14px;color:#6874e2;cursor:pointer}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}._11RQ3yZHOP{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.W3SoHwBV3v{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.BXQVRLUNH\+{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.BXQVRLUNH\+>i,.BXQVRLUNH\+>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.Zng7BVLUcf{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.p7TnB6nbub{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.bMfzPOLNtx{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.hjZ5ERsaty{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.BEg61ZXWaY{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.Qnyf4Gign9{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.tVKkwz1S36{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.tVKkwz1S36 .R3OCL1LRE4{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.tVKkwz1S36 .R3OCL1LRE4>span{color:rgba(0,0,0,0.65)}.JdQVRr37Z8{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.JdQVRr37Z8 .qGoMLztWQh{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.JdQVRr37Z8 .qGoMLztWQh>span{font-size:8px}.fYez6z\+Lt4 .ant-popover-inner-content{padding:0}.fYez6z\+Lt4 .ant-popover-arrow{border-color:#475365 !important}.fYez6z\+Lt4 .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.KqQJCtLtc-{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.Ro6zxpGDVW{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.Ro6zxpGDVW .X8QJ8A8fiQ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.cfwlDfrwCg{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.dZeTVFb1Zk{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.dZeTVFb1Zk{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.ic5zagf-e1{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.hF0E-H0SQq html,.hF0E-H0SQq body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.hF0E-H0SQq body,.hF0E-H0SQq div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.hF0E-H0SQq textarea{border:none !important;padding-left:0 !important}.hF0E-H0SQq table,.hF0E-H0SQq tr,.hF0E-H0SQq td{page-break-inside:avoid}.hF0E-H0SQq div{page-break-inside:avoid}.hF0E-H0SQq thead{display:table-header-group}.hF0E-H0SQq tfoot{display:table-footer-group}.hF0E-H0SQq *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.hF0E-H0SQq .dtdobxCK\+B,.hF0E-H0SQq .no-print,.hF0E-H0SQq .react-resizable-handle,.hF0E-H0SQq .fc-whiteboard-toolbar,.hF0E-H0SQq .ant-modal-root,.hF0E-H0SQq .ant-alert,.hF0E-H0SQq .sCoZ7eRlRX,.hF0E-H0SQq .xsi1QvnbHo{display:none !important}.hF0E-H0SQq ._3qOJ5G-DHG{display:none !important}}.Bsfxo6hgUR{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;padding:8px 24px}.Bsfxo6hgUR .ant-tabs-tabpane{height:calc(100vh - 200px);overflow-x:hidden;overflow-y:auto;overflow:hidden auto}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}._55M8LxSPxg{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.egnuKckw9L{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.LfwMv-3oeu{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.LfwMv-3oeu>i,.LfwMv-3oeu>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}._7Exjzof2d\+{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.O9iw760KLA{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.mF9aC\+j3E2{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.uEhlX9tNNq{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.hkm19h2Pps{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.DnxtTHz0g6{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._8l8ezo3-ql{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}._8l8ezo3-ql .JeiaVqj4iL{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}._8l8ezo3-ql .JeiaVqj4iL>span{color:rgba(0,0,0,0.65)}.Y\+dhsGaK4o{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.Y\+dhsGaK4o .AaFXf5Qp54{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.Y\+dhsGaK4o .AaFXf5Qp54>span{font-size:8px}.\-0TMq\+Yqnz .ant-popover-inner-content{padding:0}.\-0TMq\+Yqnz .ant-popover-arrow{border-color:#475365 !important}.\-0TMq\+Yqnz .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}._7iIJIrVEaz{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}._6CcGgBmTHS{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._6CcGgBmTHS .dc0cCUJzjT{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.XSA2F1c6WM{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.Jcth8Qf5Qo{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.Jcth8Qf5Qo{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}._9Hp6wEMJt0{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{._0snF3yyOBG html,._0snF3yyOBG body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}._0snF3yyOBG body,._0snF3yyOBG div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}._0snF3yyOBG textarea{border:none !important;padding-left:0 !important}._0snF3yyOBG table,._0snF3yyOBG tr,._0snF3yyOBG td{page-break-inside:avoid}._0snF3yyOBG div{page-break-inside:avoid}._0snF3yyOBG thead{display:table-header-group}._0snF3yyOBG tfoot{display:table-footer-group}._0snF3yyOBG *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}._0snF3yyOBG .uLnGLv8HJh,._0snF3yyOBG .no-print,._0snF3yyOBG .react-resizable-handle,._0snF3yyOBG .fc-whiteboard-toolbar,._0snF3yyOBG .ant-modal-root,._0snF3yyOBG .ant-alert,._0snF3yyOBG .FvElhWAA3j,._0snF3yyOBG ._9aqlg\+xk\+7{display:none !important}._0snF3yyOBG .KkPRgskbhW{display:none !important}}.mntESQg59I{width:100%}
.UAMu\+L1XPN>div{margin-bottom:18px}.UAMu\+L1XPN>div>span{display:inline-block;margin-right:12px}
.fixed-length-ellipsis {
  overflow: hidden;
  display: inline-block;
  word-break: break-all;
  width: 100%;
}

.fixed-length-ellipsis-lines {
  position: relative;
}

.fixed-length-ellipsis-lines .shadow {
  display: block;
  position: relative;
  color: transparent;
  opacity: 0;
  z-index: -999;
}

.fixed-length-ellipsis-line-clamp {
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}

.m-fe-header-dropdown-container > * {
  background-color: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 16px -8px rgba(0, 0, 0, 0.08), 0 9px 28px 0 rgba(0, 0, 0, 0.05),
    0 12px 48px 16px rgba(0, 0, 0, 0.03);
          box-shadow: 0 6px 16px -8px rgba(0, 0, 0, 0.08), 0 9px 28px 0 rgba(0, 0, 0, 0.05),
    0 12px 48px 16px rgba(0, 0, 0, 0.03);
}

@media screen and (max-width: 480px) {
  .m-fe-header-dropdown-container {
    width: 100% !important;
  }
  .m-fe-header-dropdown-container > * {
    border-radius: 0 !important;
  }
}

.m-fe-lang-selector-menu .anticon {
  margin-right: 8px;
}
.m-fe-lang-selector-menu .ant-dropdown-menu-item {
  min-width: 160px;
}

.m-fe-lang-selector-dropDown {
  line-height: 64px;
  vertical-align: top;
  cursor: pointer;
}

.m-fe-lang-selector-dropDown > i {
  font-size: 16px !important;
  -webkit-transform: none !important;
          transform: none !important;
}

.m-fe-lang-selector-dropDown > i svg {
  position: relative;
  top: -1px;
}

.m-fe-react-commons-notice-icon-popover {
  position: relative;
  width: 336px;
}

.m-fe-react-commons-notice-icon-noticeButton {
  display: inline-block;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.m-fe-react-commons-notice-icon-icon {
  padding: 4px;
  vertical-align: middle;
}

.m-fe-react-commons-notice-icon-badge {
  font-size: 16px;
}

.m-fe-react-commons-notice-icon-tabs .ant-tabs-nav-scroll {
  text-align: center;
}

.m-fe-react-commons-notice-icon-tabs .ant-tabs-bar {
  margin-bottom: 0;
}

.m-fe-commons-page-header-container {
  border-bottom: 1px solid #e8e8e8;
}

.m-fe-commons-page-header-container .ant-page-header {
  padding: 10px;
}

.m-fe-commons-page-header-container .ant-page-header-heading-title {
  font-size: 16px;
  font-weight: normal;
}

.m-fe-commons-page-header-container .ant-page-header-back {
  margin-right: 16px;
  font-weight: normal;
}

.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.k4P\+pmrVQC{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.NGuGXscey6{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}._1TYKp8ITQB{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}._1TYKp8ITQB>i,._1TYKp8ITQB>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.xt\+HDS1fa1{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.ogKt3kz5UP{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.XUscRCOzFF{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.wXK-gbvaEZ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}._6s\+RGDV2fB{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.csgLfjidNW{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.TNWO6TQUOl{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.TNWO6TQUOl .ZAJ40e3Wmp{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.TNWO6TQUOl .ZAJ40e3Wmp>span{color:rgba(0,0,0,0.65)}.Em1O2Z54AX{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.Em1O2Z54AX .Uvnp4eDoBh{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.Em1O2Z54AX .Uvnp4eDoBh>span{font-size:8px}.A1yySFFNhI .ant-popover-inner-content{padding:0}.A1yySFFNhI .ant-popover-arrow{border-color:#475365 !important}.A1yySFFNhI .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.yMfPsJ\+p9C{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.TsUgzNujgX{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.TsUgzNujgX .voCKppgnt6{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.Nd5N1mdePu{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.x3xj0fY01t{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.x3xj0fY01t{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.rs9wckTzSv{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.l5O5nUfsrX html,.l5O5nUfsrX body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.l5O5nUfsrX body,.l5O5nUfsrX div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.l5O5nUfsrX textarea{border:none !important;padding-left:0 !important}.l5O5nUfsrX table,.l5O5nUfsrX tr,.l5O5nUfsrX td{page-break-inside:avoid}.l5O5nUfsrX div{page-break-inside:avoid}.l5O5nUfsrX thead{display:table-header-group}.l5O5nUfsrX tfoot{display:table-footer-group}.l5O5nUfsrX *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.l5O5nUfsrX .h1jK\+iP9Zj,.l5O5nUfsrX .no-print,.l5O5nUfsrX .react-resizable-handle,.l5O5nUfsrX .fc-whiteboard-toolbar,.l5O5nUfsrX .ant-modal-root,.l5O5nUfsrX .ant-alert,.l5O5nUfsrX .MNfvg0OqYj,.l5O5nUfsrX .vhZXjVL7uI{display:none !important}.l5O5nUfsrX .ZTTe8BO1uN{display:none !important}}.NF6YhMPjt- .g\+sbQlHK8p{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap;font-size:14px;color:rgba(0,0,0,0.85)}.NF6YhMPjt- .hDBtNRqEKF{position:absolute;top:45px;left:-16px}.NF6YhMPjt- .hDBtNRqEKF svg{width:52px;height:32px}.NF6YhMPjt- .hDBtNRqEKF span{position:absolute;left:8px;font-size:10px;color:white;top:3px}.NF6YhMPjt- .Q\+A88aeWnZ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.NF6YhMPjt- .RsC5l\+sZZN{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:absolute;bottom:0;left:50%;opacity:0;width:80%;-webkit-transform:translateX(-50%);transform:translateX(-50%);text-align:center;-webkit-transition:all ease-in-out .3s;transition:all ease-in-out .3s}.NF6YhMPjt- .RsC5l\+sZZN:hover{opacity:1}.NF6YhMPjt- .RsC5l\+sZZN>svg{cursor:pointer;-webkit-transition:all ease-in-out .3s;transition:all ease-in-out .3s}.NF6YhMPjt- .ant-card-head{padding-left:0;min-height:0;height:41px;background-color:#fafafa}.NF6YhMPjt- .ant-card-head-wrapper{height:100%}.NF6YhMPjt- .ant-card-head-title{padding:0}.NF6YhMPjt- .ant-card-extra{padding:0}.NF6YhMPjt- .ant-statistic-content{font-size:14px}.NF6YhMPjt- .ant-statistic-title{font-size:14px;font-weight:bold;color:rgba(0,0,0,0.45)}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.jL\+q6UKmi9{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.XUcWW6npRU{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}._7e4byb6BUD{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}._7e4byb6BUD>i,._7e4byb6BUD>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}._3TuqngYeGF{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.uxYibq19gO{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.\-7uBbWG683{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}._7sAiDuX9nl{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.bl-o37uvAR{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.JFcBnyfKLF{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.M18Dvy3ypZ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.M18Dvy3ypZ .abt9RnTWeO{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.M18Dvy3ypZ .abt9RnTWeO>span{color:rgba(0,0,0,0.65)}.yZhGmHSpHy{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.yZhGmHSpHy .Ho5MJPR6w3{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.yZhGmHSpHy .Ho5MJPR6w3>span{font-size:8px}._69Fh0scgIG .ant-popover-inner-content{padding:0}._69Fh0scgIG .ant-popover-arrow{border-color:#475365 !important}._69Fh0scgIG .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.CH\+La3if-D{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.fOvZNv4Xxm{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.fOvZNv4Xxm .gDQ24PafFF{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.sStMue3k7H{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}._1LclJWCMBc{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{._1LclJWCMBc{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}._8DwWkJlZlL{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{._5pNSDeURjT html,._5pNSDeURjT body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}._5pNSDeURjT body,._5pNSDeURjT div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}._5pNSDeURjT textarea{border:none !important;padding-left:0 !important}._5pNSDeURjT table,._5pNSDeURjT tr,._5pNSDeURjT td{page-break-inside:avoid}._5pNSDeURjT div{page-break-inside:avoid}._5pNSDeURjT thead{display:table-header-group}._5pNSDeURjT tfoot{display:table-footer-group}._5pNSDeURjT *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}._5pNSDeURjT .aRkbgrO1ZX,._5pNSDeURjT .no-print,._5pNSDeURjT .react-resizable-handle,._5pNSDeURjT .fc-whiteboard-toolbar,._5pNSDeURjT .ant-modal-root,._5pNSDeURjT .ant-alert,._5pNSDeURjT ._28BbRsItVV,._5pNSDeURjT .fEWUi1McpS{display:none !important}._5pNSDeURjT .ErsunEiTKo{display:none !important}}.Jl92RtSUgm{color:rgba(0,0,0,0.45);font-size:12px}.Jl92RtSUgm>div:first-child{margin-bottom:6px !important}.Jl92RtSUgm>div:first-child{font-size:14px;font-weight:bold}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.fG451gmtav{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}._3iyu5XrGyW{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}._5CobQStFzn{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}._5CobQStFzn>i,._5CobQStFzn>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.QSdmK2JMBP{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._62tNrh3\+wp{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.f4QwpTVM5B{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}._80uM791NAR{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.m2pOp5lo-4{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.oNGYISBYqV{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.u1PP5znbOl{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.u1PP5znbOl .uzdGc5zffm{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.u1PP5znbOl .uzdGc5zffm>span{color:rgba(0,0,0,0.65)}.Gxmt2QRHWy{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.Gxmt2QRHWy .K8\+v24xEc1{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.Gxmt2QRHWy .K8\+v24xEc1>span{font-size:8px}.qas2uBSgdj .ant-popover-inner-content{padding:0}.qas2uBSgdj .ant-popover-arrow{border-color:#475365 !important}.qas2uBSgdj .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.\+pT\+wPh401{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.xmnAgiV46C{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.xmnAgiV46C .SPEZ76JKD2{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.lzs3Pt-Cud{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.uoa42BRCUo{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.uoa42BRCUo{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}._48kkOAyA5q{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.UdrxgFrn-v html,.UdrxgFrn-v body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.UdrxgFrn-v body,.UdrxgFrn-v div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.UdrxgFrn-v textarea{border:none !important;padding-left:0 !important}.UdrxgFrn-v table,.UdrxgFrn-v tr,.UdrxgFrn-v td{page-break-inside:avoid}.UdrxgFrn-v div{page-break-inside:avoid}.UdrxgFrn-v thead{display:table-header-group}.UdrxgFrn-v tfoot{display:table-footer-group}.UdrxgFrn-v *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.UdrxgFrn-v .vvhSUe0KyZ,.UdrxgFrn-v .no-print,.UdrxgFrn-v .react-resizable-handle,.UdrxgFrn-v .fc-whiteboard-toolbar,.UdrxgFrn-v .ant-modal-root,.UdrxgFrn-v .ant-alert,.UdrxgFrn-v .E4f9VGFjjr,.UdrxgFrn-v .sYZlqCLHPt{display:none !important}.UdrxgFrn-v .FiHXJuBuwL{display:none !important}}.o-AYgdtxTR{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.o-AYgdtxTR>button{margin-right:2px}.Qi89eyVP0S{color:#fff;background-color:#6874e2}.xKdTUB85lM{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.o8NY-R41cE{display:-webkit-box;display:-ms-flexbox;display:flex;margin:12px 0 12px}.o8NY-R41cE>span{display:inline-block;min-width:72px;word-break:break-word}._4ROk1Ww6Af{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:100%;margin-top:16px}.p\+7SBwSvUW{cursor:pointer;position:relative;top:4px;font-size:24px;color:#999;-webkit-transition:all .3s;transition:all .3s;margin-left:8px}.p\+7SBwSvUW:hover{color:#777}.f4QwpTVM5B{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.ant-input-group-addon{padding:0}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.ww-EDi1mh5{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}._8syMagCyNC{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.QjcD8IWV\+U{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.QjcD8IWV\+U>i,.QjcD8IWV\+U>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.K01XNAaxNo{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._8vS\+WHLCJJ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.sc\+xDmylqx{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.zediTzsvqS{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.T4IwsGUh0M{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.FiDOAXpi9\+{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.viUo0zHcg7{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.viUo0zHcg7 .Yh8WLCBMWp{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.viUo0zHcg7 .Yh8WLCBMWp>span{color:rgba(0,0,0,0.65)}.lFk2vJv4ns{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.lFk2vJv4ns .ZbJ38YIhEC{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.lFk2vJv4ns .ZbJ38YIhEC>span{font-size:8px}.xQC14uL1j3 .ant-popover-inner-content{padding:0}.xQC14uL1j3 .ant-popover-arrow{border-color:#475365 !important}.xQC14uL1j3 .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.t6LfJlP\+XA{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.H9nurLYnL9{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.H9nurLYnL9 .\-7\+eDU66T4{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.MwmtFcw3Wr{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.Bxp\+QO\+p5i{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.Bxp\+QO\+p5i{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}._26Z8JmRe\+g{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.ADxdYSe8kM html,.ADxdYSe8kM body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.ADxdYSe8kM body,.ADxdYSe8kM div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.ADxdYSe8kM textarea{border:none !important;padding-left:0 !important}.ADxdYSe8kM table,.ADxdYSe8kM tr,.ADxdYSe8kM td{page-break-inside:avoid}.ADxdYSe8kM div{page-break-inside:avoid}.ADxdYSe8kM thead{display:table-header-group}.ADxdYSe8kM tfoot{display:table-footer-group}.ADxdYSe8kM *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.ADxdYSe8kM .YXm4X6d\+vj,.ADxdYSe8kM .no-print,.ADxdYSe8kM .react-resizable-handle,.ADxdYSe8kM .fc-whiteboard-toolbar,.ADxdYSe8kM .ant-modal-root,.ADxdYSe8kM .ant-alert,.ADxdYSe8kM .N1M6WGl\+u2,.ADxdYSe8kM ._160yzb7ATa{display:none !important}.ADxdYSe8kM ._8w9xhY8mGV{display:none !important}}.wzd9kk1FFg{background-color:#fff}.AzLp59jZRt{width:365px}.tuulqkDRTS{color:red}
._6rukrMkIX2{position:relative}.GyewTViBnZ{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.tNjsZlMRkr{width:400;font-size:18px;font-weight:bold}.jhecxKr6r6{width:100%;margin-top:8px;color:#666;line-height:24px;overflow:hidden;-ms-flex-wrap:wrap;flex-wrap:wrap;word-wrap:break-word;font-size:14px}.jhecxKr6r6 .LB-JJpUTbJ{color:red}.jhecxKr6r6:before{content:'•';display:inline-block;width:1em;color:black}.ETrvJo0HWQ{width:100%;margin-top:12px;font-size:12px;color:#666;line-height:24px;overflow:hidden;-ms-flex-wrap:wrap;flex-wrap:wrap;word-wrap:break-word}.ETrvJo0HWQ .ant-radio-button-wrapper{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:38px;font-size:16px;margin-bottom:12px}.ETrvJo0HWQ .ant-radio-group .ant-radio-button-wrapper:nth-last-child(2){margin-right:32px}.ETrvJo0HWQ .ant-radio-group .ant-radio-button-wrapper:last-child{border-left-width:1}.awDWjTLztO .ant-radio-group .ant-radio-button-wrapper:nth-last-child(2){margin-right:0}.awDWjTLztO .ant-radio-group .ant-radio-button-wrapper:last-child{margin-left:0;border-left-width:0}.uMGerjatlo{width:400px;margin-top:12px}.zOi-d6fpoL{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.zOi-d6fpoL .KbP1M6wMwX{margin-left:12px}.Dm3mlQKsbi{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.BdQ5pQypC6{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}._8yEgG6o6vI{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.NUC5Xwtrhd{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.NUC5Xwtrhd>i,.NUC5Xwtrhd>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.X1fCrfOjSx{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.m8pvhmhIzw{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.DZArrRfg-y{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.Y11RZLffBG{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.I3MZ5-BGNU{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.QIykcraRHC{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.XbQ6U\+ZSPK{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.XbQ6U\+ZSPK ._5gYmeR47h7{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.XbQ6U\+ZSPK ._5gYmeR47h7>span{color:rgba(0,0,0,0.65)}.u0UYijhESO{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.u0UYijhESO .kSdaXETqqY{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.u0UYijhESO .kSdaXETqqY>span{font-size:8px}.vdMmkt5py5 .ant-popover-inner-content{padding:0}.vdMmkt5py5 .ant-popover-arrow{border-color:#475365 !important}.vdMmkt5py5 .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.Q5VF4crzOD{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.fDF9YBcPhM{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.fDF9YBcPhM ._5pTX34bx04{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.XlkAwe7gd9{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.vRtrXtcBM3{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.vRtrXtcBM3{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.d-7vwOtTSg{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.RBSd8tCdn0 html,.RBSd8tCdn0 body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.RBSd8tCdn0 body,.RBSd8tCdn0 div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.RBSd8tCdn0 textarea{border:none !important;padding-left:0 !important}.RBSd8tCdn0 table,.RBSd8tCdn0 tr,.RBSd8tCdn0 td{page-break-inside:avoid}.RBSd8tCdn0 div{page-break-inside:avoid}.RBSd8tCdn0 thead{display:table-header-group}.RBSd8tCdn0 tfoot{display:table-footer-group}.RBSd8tCdn0 *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.RBSd8tCdn0 .mTMKMeQj1N,.RBSd8tCdn0 .no-print,.RBSd8tCdn0 .react-resizable-handle,.RBSd8tCdn0 .fc-whiteboard-toolbar,.RBSd8tCdn0 .ant-modal-root,.RBSd8tCdn0 .ant-alert,.RBSd8tCdn0 ._2HyV830-q1,.RBSd8tCdn0 .KSFd5hIR\+Y{display:none !important}.RBSd8tCdn0 .XQA7nmM1Zy{display:none !important}}.zzYonnu6x\+{position:relative;padding:0 24px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:100%;max-height:400px;overflow-y:auto}.zzYonnu6x\+ .HfS890HySP{color:rgba(0,0,0,0.45)}._19WmJtdl2q{margin-top:16px;height:140px;overflow:hidden}._19WmJtdl2q .fc-gallery-carousel-thumbnail{margin-right:8px}._19WmJtdl2q .fc-gallery-carousel-thumbnail .fc-gallery-carousel-thumbnail-icons svg>g>path:first-child{fill:rgba(0,0,0,0.45) !important}.\+9VOK95PN\+{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;height:65px}.\+9VOK95PN\+ img{height:60px;width:60px;-o-object-fit:contain;object-fit:contain}.\+9VOK95PN\+ .fM\+\+SLpXXi{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:100%}.\+9VOK95PN\+ .fM\+\+SLpXXi>div{margin-right:16px}
._0R0kUcv1l\+{position:relative}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.raozAglkWy{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}._3rti7NVEUH{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.GDP4r2S1Ky{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.GDP4r2S1Ky>i,.GDP4r2S1Ky>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}._55TUyH4n\+N{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.GlpDGSVI1\+{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.aDFgZLJrIh{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.zMc9LITFih{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.o5zlg4dKSJ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.sMIECS2mla{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.IP9yLqlbhm{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.IP9yLqlbhm ._3pHjp6iw-0{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.IP9yLqlbhm ._3pHjp6iw-0>span{color:rgba(0,0,0,0.65)}._4oX6kJAgHU{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}._4oX6kJAgHU .azqP59eYfd{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}._4oX6kJAgHU .azqP59eYfd>span{font-size:8px}.BilRvIP34Y .ant-popover-inner-content{padding:0}.BilRvIP34Y .ant-popover-arrow{border-color:#475365 !important}.BilRvIP34Y .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}._8wrH6URGZQ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.WoFc7EUyPJ{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.WoFc7EUyPJ .JmmObZljHR{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.md-6UD-wkT{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}._2ncXXpAV7x{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{._2ncXXpAV7x{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.\+XuxoykNyl{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.SPz1lWL2uR html,.SPz1lWL2uR body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.SPz1lWL2uR body,.SPz1lWL2uR div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.SPz1lWL2uR textarea{border:none !important;padding-left:0 !important}.SPz1lWL2uR table,.SPz1lWL2uR tr,.SPz1lWL2uR td{page-break-inside:avoid}.SPz1lWL2uR div{page-break-inside:avoid}.SPz1lWL2uR thead{display:table-header-group}.SPz1lWL2uR tfoot{display:table-footer-group}.SPz1lWL2uR *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.SPz1lWL2uR .OYwQfX4m3A,.SPz1lWL2uR .no-print,.SPz1lWL2uR .react-resizable-handle,.SPz1lWL2uR .fc-whiteboard-toolbar,.SPz1lWL2uR .ant-modal-root,.SPz1lWL2uR .ant-alert,.SPz1lWL2uR .tYNJhUkVhb,.SPz1lWL2uR .u2uZ2e2a7U{display:none !important}.SPz1lWL2uR .zlg4mmH6HM{display:none !important}}.lsorkaMtrF:first-child{margin-bottom:12px}.lsorkaMtrF>div:last-child{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap;overflow-x:auto}.lsorkaMtrF>div:last-child>div:not(:last-child){margin-left:4px}.qGGTXPoXnT{cursor:pointer;color:#f5222d}.\+ds5MqhRaP{display:grid;grid-template-columns:1fr 1px 1fr}.\+ds5MqhRaP>span:last-child{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.tFDjz1KYzn{width:100%;margin-top:8px;color:#666;line-height:24px;overflow:hidden;-ms-flex-wrap:wrap;flex-wrap:wrap;word-wrap:break-word;font-size:14px}.tFDjz1KYzn ._98f0C5zK8Y{color:red}.tFDjz1KYzn:before{content:'•';display:inline-block;width:1em;color:black}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.J\+AdZwQEZi{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.wYBR74WT6R{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.g7G8uEb95P{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.g7G8uEb95P>i,.g7G8uEb95P>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.\+SZc7LY1yU{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.b58IzE8qok{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.ZmXyvDt-ss{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.O1SlKdpyAM{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.nHDudQZOOD{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._2cH9Bc8sBK{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.IaggvLz05Q{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.IaggvLz05Q .EsEElFQlll{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.IaggvLz05Q .EsEElFQlll>span{color:rgba(0,0,0,0.65)}.iQz16O-U1h{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.iQz16O-U1h .nBgT1wwCGL{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.iQz16O-U1h .nBgT1wwCGL>span{font-size:8px}.zqUPD-h23a .ant-popover-inner-content{padding:0}.zqUPD-h23a .ant-popover-arrow{border-color:#475365 !important}.zqUPD-h23a .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.sFVuS707vk{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.Kq-9Rp6JZh{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.Kq-9Rp6JZh .Q4FK9Bu47z{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}._3GAfi\+OS7Z{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.lE-5JgonbT{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.lE-5JgonbT{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.mrjKMFDqgx{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.wQjzvP47VK html,.wQjzvP47VK body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.wQjzvP47VK body,.wQjzvP47VK div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.wQjzvP47VK textarea{border:none !important;padding-left:0 !important}.wQjzvP47VK table,.wQjzvP47VK tr,.wQjzvP47VK td{page-break-inside:avoid}.wQjzvP47VK div{page-break-inside:avoid}.wQjzvP47VK thead{display:table-header-group}.wQjzvP47VK tfoot{display:table-footer-group}.wQjzvP47VK *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.wQjzvP47VK ._9OTkSf487B,.wQjzvP47VK .no-print,.wQjzvP47VK .react-resizable-handle,.wQjzvP47VK .fc-whiteboard-toolbar,.wQjzvP47VK .ant-modal-root,.wQjzvP47VK .ant-alert,.wQjzvP47VK .DaGf4c9\+OU,.wQjzvP47VK .lrw94th8Uk{display:none !important}.wQjzvP47VK ._2RQMczGXzK{display:none !important}}.O7RY5VgL0z{color:#333;font-size:16px;font-weight:bold}.l9aB\+3KABP{margin-top:2rem}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.DcoeA7vx\+W{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}._4EREySHRnS{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.f-H9O722O7{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.f-H9O722O7>i,.f-H9O722O7>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.SR3QPyKjNK{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.pOI-3r1L7X{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.jJT1tFRS37{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}._3Bs2EEvwNX{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.DsNCDorO3A{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._2\+CtUnTwj8{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.tIG\+tuvwsD{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.tIG\+tuvwsD .levQl-rgTt{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.tIG\+tuvwsD .levQl-rgTt>span{color:rgba(0,0,0,0.65)}.pkPM-S4NaN{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.pkPM-S4NaN ._2eiyRBb\+CM{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.pkPM-S4NaN ._2eiyRBb\+CM>span{font-size:8px}.a7Ylx1Bp-W .ant-popover-inner-content{padding:0}.a7Ylx1Bp-W .ant-popover-arrow{border-color:#475365 !important}.a7Ylx1Bp-W .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.qvE9NE5mV0{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.XVlMt3q57t{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.XVlMt3q57t .jySp\+E8Re1{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}._1fdoygtSVW{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.vTXIPcdnmV{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.vTXIPcdnmV{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.hCP\+1CgVRO{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.Yni-yaKAhA html,.Yni-yaKAhA body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.Yni-yaKAhA body,.Yni-yaKAhA div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.Yni-yaKAhA textarea{border:none !important;padding-left:0 !important}.Yni-yaKAhA table,.Yni-yaKAhA tr,.Yni-yaKAhA td{page-break-inside:avoid}.Yni-yaKAhA div{page-break-inside:avoid}.Yni-yaKAhA thead{display:table-header-group}.Yni-yaKAhA tfoot{display:table-footer-group}.Yni-yaKAhA *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.Yni-yaKAhA .KDs\+juVKWk,.Yni-yaKAhA .no-print,.Yni-yaKAhA .react-resizable-handle,.Yni-yaKAhA .fc-whiteboard-toolbar,.Yni-yaKAhA .ant-modal-root,.Yni-yaKAhA .ant-alert,.Yni-yaKAhA .LcH-3kxTbN,.Yni-yaKAhA .qIZ6qjGWEC{display:none !important}.Yni-yaKAhA .nBqyJh8Qsc{display:none !important}}.LcPOKj9rp2{background-color:#fff}.XMJxCNVNvW{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;padding:0 2rem}.XMJxCNVNvW>button:not(:last-child){margin-bottom:1.25rem}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.UVDDVejZZd{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.gku3TiJzOp{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.EYrAu19aMC{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.EYrAu19aMC>i,.EYrAu19aMC>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.c2g--jH9FD{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.I6biFOV4E3{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.UM\+8k15PvB{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}._2h8rgzCSYh{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.uS5qrokmgy{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.WuHaXBqi81{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.a6R4fORP9j{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.a6R4fORP9j .WnPK25L84m{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.a6R4fORP9j .WnPK25L84m>span{color:rgba(0,0,0,0.65)}.YCOfkgNJZ5{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.YCOfkgNJZ5 .FS-4CvSks7{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.YCOfkgNJZ5 .FS-4CvSks7>span{font-size:8px}.gQSCRFc9VK .ant-popover-inner-content{padding:0}.gQSCRFc9VK .ant-popover-arrow{border-color:#475365 !important}.gQSCRFc9VK .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.hWmQDkwneN{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}._9DLzLPdSuE{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._9DLzLPdSuE ._5PDuNxoKA-{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.h5L65JMzbx{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.IfSmija7bt{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.IfSmija7bt{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.iaqxECKQ7T{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.BZ7X-UMFIR html,.BZ7X-UMFIR body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.BZ7X-UMFIR body,.BZ7X-UMFIR div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.BZ7X-UMFIR textarea{border:none !important;padding-left:0 !important}.BZ7X-UMFIR table,.BZ7X-UMFIR tr,.BZ7X-UMFIR td{page-break-inside:avoid}.BZ7X-UMFIR div{page-break-inside:avoid}.BZ7X-UMFIR thead{display:table-header-group}.BZ7X-UMFIR tfoot{display:table-footer-group}.BZ7X-UMFIR *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.BZ7X-UMFIR .y8bsxN96Kf,.BZ7X-UMFIR .no-print,.BZ7X-UMFIR .react-resizable-handle,.BZ7X-UMFIR .fc-whiteboard-toolbar,.BZ7X-UMFIR .ant-modal-root,.BZ7X-UMFIR .ant-alert,.BZ7X-UMFIR .OGc-Nj0-Fu,.BZ7X-UMFIR .fzEl-A7Qu-{display:none !important}.BZ7X-UMFIR .nE8Ss41GQc{display:none !important}}
.Nz1xzONafj span{display:block;font-size:12px;color:rgba(0,0,0,0.45)}.Nz1xzONafj ._0Kl0U2f54v{font-size:14px;font-weight:bold;margin-bottom:6px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.JiwB9-xzod{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.fN72Jn\+Ckj{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.-i9vDMjnjd{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.-i9vDMjnjd>i,.-i9vDMjnjd>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.nOj-wB1UXx{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.yOcUJ\+6ltH{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.R7l80ehJ0V{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.Qlv\+Bbpm-w{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.Clb4B6murX{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.\+zQvb4ktqH{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.ct-U-4SNEr{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.ct-U-4SNEr .LGNZJ6nrtI{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.ct-U-4SNEr .LGNZJ6nrtI>span{color:rgba(0,0,0,0.65)}.rfSzNvVqTf{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.rfSzNvVqTf .lakNMEyPFY{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.rfSzNvVqTf .lakNMEyPFY>span{font-size:8px}.Q3BSyOg0Ox .ant-popover-inner-content{padding:0}.Q3BSyOg0Ox .ant-popover-arrow{border-color:#475365 !important}.Q3BSyOg0Ox .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.mLmmPY-nbk{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.V\+jyU0CgRy{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.V\+jyU0CgRy .fw5v8TG4s-{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.XoZeJN6We9{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}._4288BF2DyY{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{._4288BF2DyY{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.fnvgcM61\+t{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.ROe5XYq5Ve html,.ROe5XYq5Ve body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.ROe5XYq5Ve body,.ROe5XYq5Ve div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.ROe5XYq5Ve textarea{border:none !important;padding-left:0 !important}.ROe5XYq5Ve table,.ROe5XYq5Ve tr,.ROe5XYq5Ve td{page-break-inside:avoid}.ROe5XYq5Ve div{page-break-inside:avoid}.ROe5XYq5Ve thead{display:table-header-group}.ROe5XYq5Ve tfoot{display:table-footer-group}.ROe5XYq5Ve *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.ROe5XYq5Ve .RCPdZf8LIQ,.ROe5XYq5Ve .no-print,.ROe5XYq5Ve .react-resizable-handle,.ROe5XYq5Ve .fc-whiteboard-toolbar,.ROe5XYq5Ve .ant-modal-root,.ROe5XYq5Ve .ant-alert,.ROe5XYq5Ve .Q6x2oDpqM4,.ROe5XYq5Ve .Jm28Z9OawM{display:none !important}.ROe5XYq5Ve .mBhK2P\+WQM{display:none !important}}._5CTwU4OJZD{margin-bottom:16px;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15)}._5CTwU4OJZD .nI2zzzUEi4{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;min-height:100%;-webkit-transition:all 1s ease-in-out;transition:all 1s ease-in-out}._5CTwU4OJZD .nI2zzzUEi4 .jq99haBZF9{-webkit-box-flex:1;-ms-flex:1 1 1px;flex:1 1 1px}._5CTwU4OJZD .nI2zzzUEi4 .jq99haBZF9 .oBp\+Ysk61r{display:-webkit-box;display:-ms-flexbox;display:flex;padding:24px 12px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}._5CTwU4OJZD .nI2zzzUEi4 .jq99haBZF9 .oBp\+Ysk61r .Z3w4Y\+H7My{color:rgba(0,0,0,0.45)}._5CTwU4OJZD .nI2zzzUEi4 .jq99haBZF9 .oBp\+Ysk61r .Z3w4Y\+H7My>div:first-child{margin-bottom:16px !important}._5CTwU4OJZD .nI2zzzUEi4 .jq99haBZF9 .oBp\+Ysk61r .Z3w4Y\+H7My>div:first-child{font-weight:bold;color:rgba(0,0,0,0.65)}._5CTwU4OJZD .nI2zzzUEi4 .jq99haBZF9 .oBp\+Ysk61r:not(:last-child){border-bottom:1px solid #eee}._5CTwU4OJZD .nI2zzzUEi4 .xfg\+xpJzAn{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch}._5CTwU4OJZD .nI2zzzUEi4 .xfg\+xpJzAn .pcadZxe5tg{min-width:125px;padding:24px 8px 0;border-left:1px solid #eee}._5CTwU4OJZD .nI2zzzUEi4 .uUyVC6vdQ1{color:rgba(0,0,0,0.45);font-size:12px}._5CTwU4OJZD .nI2zzzUEi4 .uUyVC6vdQ1>div:first-child{margin-bottom:8px !important}._5CTwU4OJZD .nI2zzzUEi4 .uUyVC6vdQ1>div:first-child{font-size:14px;font-weight:bold}._5CTwU4OJZD .ant-statistic-content{font-size:14px}._5CTwU4OJZD .ant-statistic-title{font-size:14px;font-weight:bold;color:rgba(0,0,0,0.45)}._5CTwU4OJZD .ant-drawer-body{padding:16px}
.LUYta69vK5{position:inherit;display:inline-block}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.fc1WyEm672{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.TIrJX5x5vW{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.cXgHlyrwq7{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.cXgHlyrwq7>i,.cXgHlyrwq7>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.AfNQmwotRi{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.VJi\+021ENy{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.TvnY-OxBRY{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.cGd0kltVym{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}._3XGuTkWD4Y{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.r\+n-ZcfHlT{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.mD-w6AOm9l{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.mD-w6AOm9l .Vfy2KSI9qN{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.mD-w6AOm9l .Vfy2KSI9qN>span{color:rgba(0,0,0,0.65)}.b8d9\+76HiE{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.b8d9\+76HiE .ysFD5IO5hG{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.b8d9\+76HiE .ysFD5IO5hG>span{font-size:8px}.dE3lYWPQTK .ant-popover-inner-content{padding:0}.dE3lYWPQTK .ant-popover-arrow{border-color:#475365 !important}.dE3lYWPQTK .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.Lat376a1Za{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.a7Szker-os{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.a7Szker-os .zG1aPMGlf-{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.mkZhvFd2NK{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.wL9PsDfdGQ{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.wL9PsDfdGQ{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.hY6yzCLqU4{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.afaMrUqUUI html,.afaMrUqUUI body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.afaMrUqUUI body,.afaMrUqUUI div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.afaMrUqUUI textarea{border:none !important;padding-left:0 !important}.afaMrUqUUI table,.afaMrUqUUI tr,.afaMrUqUUI td{page-break-inside:avoid}.afaMrUqUUI div{page-break-inside:avoid}.afaMrUqUUI thead{display:table-header-group}.afaMrUqUUI tfoot{display:table-footer-group}.afaMrUqUUI *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.afaMrUqUUI ._02FMjgDlcg,.afaMrUqUUI .no-print,.afaMrUqUUI .react-resizable-handle,.afaMrUqUUI .fc-whiteboard-toolbar,.afaMrUqUUI .ant-modal-root,.afaMrUqUUI .ant-alert,.afaMrUqUUI .w3rsDJV2ij,.afaMrUqUUI .pmGBGKZjRz{display:none !important}.afaMrUqUUI .r1jKyuaLNz{display:none !important}}.Hpg-YEYZyh{background-color:#fff;padding-bottom:32px}.Hpg-YEYZyh .yyhijsNgah{border:1px solid #ff4d4f}.Hpg-YEYZyh .kbrca1riL8{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap}.Hpg-YEYZyh .kbrca1riL8>span{margin-left:4px}.Hpg-YEYZyh .d8rSqOWp73{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:24px}.Hpg-YEYZyh .d8rSqOWp73 .oj4Fufr\+BA{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap}.Hpg-YEYZyh .d8rSqOWp73 .oj4Fufr\+BA>span{color:#6874e2;font-size:20px;margin-left:15px}.Hpg-YEYZyh .nCoCEVP5Gc{color:rgba(0,0,0,0.65);margin-top:16px}.Hpg-YEYZyh .nCoCEVP5Gc .MPevMMhKWc{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap;min-width:190px;-ms-flex-wrap:nowrap;flex-wrap:nowrap}.Hpg-YEYZyh .nCoCEVP5Gc .MPevMMhKWc>span{margin:0 6px 0 8px}.Hpg-YEYZyh .nCoCEVP5Gc>div:last-child{margin-top:12px}.Hpg-YEYZyh .VJi\+021ENy{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap}.Hpg-YEYZyh ._3XGuTkWD4Y{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.Hpg-YEYZyh #inquiry-order-item-table .ant-table-cell{padding:16px 8px}._2O3m-oJBHb{position:relative}._2O3m-oJBHb .ant-spin-blur{opacity:.1 !important}
.q9HV022irK{width:100%}.InMVh3wfU0{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:16px}.g\+jyaokyaC{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.g\+jyaokyaC .xa2qMnWLvB{width:6px;height:6px;border-radius:50%;margin-right:4px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.x5PYmy3yAb{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.ycUvV2Iubw{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}._18GEb3ggg8{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}._18GEb3ggg8>i,._18GEb3ggg8>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}._2qX4TYJ2BA{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.IUZztCZYxd{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.aAKdj-5zE2{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.nyJzdiYBMU{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.ymjB7p0Z-D{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.PssyRRRqIx{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.yj60wApnuP{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.yj60wApnuP .L4sy1oyFTp{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.yj60wApnuP .L4sy1oyFTp>span{color:rgba(0,0,0,0.65)}.qH-xkM7rFV{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.qH-xkM7rFV .OZ\+aOL2Sll{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.qH-xkM7rFV .OZ\+aOL2Sll>span{font-size:8px}.MLPt\+\+xlBO .ant-popover-inner-content{padding:0}.MLPt\+\+xlBO .ant-popover-arrow{border-color:#475365 !important}.MLPt\+\+xlBO .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.EX513mp0dZ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.nUZyaTqFZF{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.nUZyaTqFZF .pcgQ3yHIK-{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.-FuV7Rv76H{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.IY48avxAGQ{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.IY48avxAGQ{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.-ppFuDE-uV{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.Vm47-z1I-n html,.Vm47-z1I-n body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.Vm47-z1I-n body,.Vm47-z1I-n div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.Vm47-z1I-n textarea{border:none !important;padding-left:0 !important}.Vm47-z1I-n table,.Vm47-z1I-n tr,.Vm47-z1I-n td{page-break-inside:avoid}.Vm47-z1I-n div{page-break-inside:avoid}.Vm47-z1I-n thead{display:table-header-group}.Vm47-z1I-n tfoot{display:table-footer-group}.Vm47-z1I-n *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.Vm47-z1I-n ._9gYliK1L1P,.Vm47-z1I-n .no-print,.Vm47-z1I-n .react-resizable-handle,.Vm47-z1I-n .fc-whiteboard-toolbar,.Vm47-z1I-n .ant-modal-root,.Vm47-z1I-n .ant-alert,.Vm47-z1I-n .vHo966FiPK,.Vm47-z1I-n .Q2RlNS6Les{display:none !important}.Vm47-z1I-n .s8no0fR9AP{display:none !important}}.kzdXbxD1Rh{background-color:#fff}.kzdXbxD1Rh ._47VRIgQtpw{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;overflow-y:hidden;overflow-x:auto}.kzdXbxD1Rh ._47VRIgQtpw ._8BXFcHvNhe{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-ms-flex-item-align:stretch;align-self:stretch;min-width:125px;padding:12px 12px 0;border-right:1px solid #eee}.kzdXbxD1Rh ._47VRIgQtpw ._8BXFcHvNhe>span{display:block;font-size:12px;color:rgba(0,0,0,0.45)}.kzdXbxD1Rh ._47VRIgQtpw ._8BXFcHvNhe>span:first-child{font-size:14px;font-weight:bold;margin-bottom:6px}.kzdXbxD1Rh ._47VRIgQtpw ._8BXFcHvNhe .qKBPZa9ijp{color:rgba(0,0,0,0.45);font-size:12px}.kzdXbxD1Rh ._47VRIgQtpw .ocpKva-L96{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;padding:12px 18px;height:140px;border-right:1px solid #eee;border-bottom:1px solid #eee}.kzdXbxD1Rh ._47VRIgQtpw .ocpKva-L96 .v8\+P6X3xPz{min-width:200px;margin-left:12px}.kzdXbxD1Rh ._47VRIgQtpw .ocpKva-L96 .v8\+P6X3xPz>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap;font-size:14px;color:rgba(0,0,0,0.45)}.kzdXbxD1Rh ._47VRIgQtpw .ocpKva-L96 .v8\+P6X3xPz>span:first-child{font-weight:bold;margin-bottom:16px;color:rgba(0,0,0,0.65)}.kzdXbxD1Rh ._47VRIgQtpw .ocpKva-L96 ._4OnaOQN4CQ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap;min-width:180px}.kzdXbxD1Rh ._47VRIgQtpw .ocpKva-L96:last-child{border-bottom:none}.kzdXbxD1Rh ._47VRIgQtpw .zoLA6uH9-O{width:100%;padding:24px 18px;border-bottom:1px solid #eee}.kzdXbxD1Rh .IUZztCZYxd{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.kzdXbxD1Rh .aAKdj-5zE2{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.kzdXbxD1Rh .ant-statistic-content{font-size:14px}.kzdXbxD1Rh .ant-statistic-title{font-size:14px;font-weight:bold;color:rgba(0,0,0,0.45)}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}._6ng-DPiuff{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.MNTdUKmBYv{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.ZQ-AUuXThL{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.ZQ-AUuXThL>i,.ZQ-AUuXThL>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}._6NuxfKHYwy{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.EvpM28nA58{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.L4TNHK01k5{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.ujAVwU\+rER{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.SwtXb-riyE{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.pX3kw6fSig{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.IhPL3TAqGn{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.IhPL3TAqGn .L4LRQxpP9i{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.IhPL3TAqGn .L4LRQxpP9i>span{color:rgba(0,0,0,0.65)}.tZqQEoNYpz{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.tZqQEoNYpz .ClHmKNZ5EK{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.tZqQEoNYpz .ClHmKNZ5EK>span{font-size:8px}._3s4XjUy1bG .ant-popover-inner-content{padding:0}._3s4XjUy1bG .ant-popover-arrow{border-color:#475365 !important}._3s4XjUy1bG .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.G6lv3l1YS\+{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.qVv7WUgT\+5{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.qVv7WUgT\+5 .HeYuSGB6qo{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.yWLG2z6CNA{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.G5A6-DcdJz{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.G5A6-DcdJz{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.dmOMs1ZD4e{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.n5KJ\+Z1Da7 html,.n5KJ\+Z1Da7 body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.n5KJ\+Z1Da7 body,.n5KJ\+Z1Da7 div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.n5KJ\+Z1Da7 textarea{border:none !important;padding-left:0 !important}.n5KJ\+Z1Da7 table,.n5KJ\+Z1Da7 tr,.n5KJ\+Z1Da7 td{page-break-inside:avoid}.n5KJ\+Z1Da7 div{page-break-inside:avoid}.n5KJ\+Z1Da7 thead{display:table-header-group}.n5KJ\+Z1Da7 tfoot{display:table-footer-group}.n5KJ\+Z1Da7 *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.n5KJ\+Z1Da7 .yw9\+95c\+BF,.n5KJ\+Z1Da7 .no-print,.n5KJ\+Z1Da7 .react-resizable-handle,.n5KJ\+Z1Da7 .fc-whiteboard-toolbar,.n5KJ\+Z1Da7 .ant-modal-root,.n5KJ\+Z1Da7 .ant-alert,.n5KJ\+Z1Da7 .SIgiV1qaR4,.n5KJ\+Z1Da7 ._9vNkIXoWSx{display:none !important}.n5KJ\+Z1Da7 ._0V02Q4LV4v{display:none !important}}.L\+0rYpxaMb{background-color:#fff}.L\+0rYpxaMb .vRlR2p9NNp{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;overflow-y:hidden;overflow-x:auto}.L\+0rYpxaMb .vRlR2p9NNp .\+Ui9Zxkm7J{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-ms-flex-item-align:stretch;align-self:stretch;min-width:125px;padding:12px 12px 0;border-right:1px solid #eee}.L\+0rYpxaMb .vRlR2p9NNp .\+Ui9Zxkm7J>span{display:block;font-size:12px;color:rgba(0,0,0,0.45)}.L\+0rYpxaMb .vRlR2p9NNp .\+Ui9Zxkm7J .IxXRDQvvwP{font-size:14px;font-weight:bold;margin-bottom:6px}.L\+0rYpxaMb .vRlR2p9NNp .\+Ui9Zxkm7J ._1AzK4dCwOw{color:rgba(0,0,0,0.45);font-size:12px}.L\+0rYpxaMb .vRlR2p9NNp .\+Ui9Zxkm7J ._1AzK4dCwOw>div:first-child{margin-bottom:8px !important}.L\+0rYpxaMb .vRlR2p9NNp .\+Ui9Zxkm7J ._1AzK4dCwOw>div:first-child{font-size:14px;font-weight:bold}.L\+0rYpxaMb .vRlR2p9NNp .ASFz91Myp5{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;padding:12px 18px;height:140px;border-right:1px solid #eee;border-bottom:1px solid #eee}.L\+0rYpxaMb .vRlR2p9NNp .ASFz91Myp5 ._4CRqh1T7uw{min-width:200px;margin-left:12px}.L\+0rYpxaMb .vRlR2p9NNp .ASFz91Myp5 ._4CRqh1T7uw>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap;font-size:14px;color:rgba(0,0,0,0.45)}.L\+0rYpxaMb .vRlR2p9NNp .ASFz91Myp5 ._4CRqh1T7uw>span:first-child{font-weight:bold;margin-bottom:16px;color:rgba(0,0,0,0.65)}.L\+0rYpxaMb .vRlR2p9NNp .ASFz91Myp5 ._3BNwE0nE5V{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-ms-flex-wrap:nowrap;flex-wrap:nowrap;min-width:180px}.L\+0rYpxaMb .vRlR2p9NNp .ASFz91Myp5 .NAUoPIJw7f{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;margin-top:8px}.L\+0rYpxaMb .vRlR2p9NNp .ASFz91Myp5 .NAUoPIJw7f>span{font-size:14px;display:block;font-weight:bold;color:rgba(0,0,0,0.45)}.L\+0rYpxaMb .vRlR2p9NNp .ASFz91Myp5 .NAUoPIJw7f .ph\+mm0eJg6{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.L\+0rYpxaMb .vRlR2p9NNp .ASFz91Myp5 .NAUoPIJw7f .ph\+mm0eJg6>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:6px}.L\+0rYpxaMb .vRlR2p9NNp .ASFz91Myp5:last-child{border-bottom:none}.L\+0rYpxaMb .vRlR2p9NNp .VwZBZE88fP{width:100%;padding:24px 18px;border-bottom:1px solid #eee}.L\+0rYpxaMb .EvpM28nA58{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.L\+0rYpxaMb .L4TNHK01k5{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.L\+0rYpxaMb .ant-statistic-content{font-size:14px}.L\+0rYpxaMb .ant-statistic-title{font-size:14px;font-weight:bold;color:rgba(0,0,0,0.45)}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.B\+Yq2w\+VTr{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}._4kfYFMN3PV{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.hdpWIpKZMe{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.hdpWIpKZMe>i,.hdpWIpKZMe>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.NfEHpZ168i{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.XQmwMwY4CK{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}._0fI440vE53{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.O0Qbi0TxZk{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}._29ERA1665y{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._8fi\+dux7mC{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.ZFpKgzKOri{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.ZFpKgzKOri .keTT2Z7Xmy{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.ZFpKgzKOri .keTT2Z7Xmy>span{color:rgba(0,0,0,0.65)}.HPZNFPdw0V{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.HPZNFPdw0V .SI8uN-ssAE{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.HPZNFPdw0V .SI8uN-ssAE>span{font-size:8px}.McKKborxn0 .ant-popover-inner-content{padding:0}.McKKborxn0 .ant-popover-arrow{border-color:#475365 !important}.McKKborxn0 .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.POILoRAY-y{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.i6OdGqirmJ{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.i6OdGqirmJ .al4d0EgHlb{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.KlSu6hJvZW{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.sFmSt6gVBu{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.sFmSt6gVBu{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.g2RvahEg3H{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{._5OBnds2RAY html,._5OBnds2RAY body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}._5OBnds2RAY body,._5OBnds2RAY div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}._5OBnds2RAY textarea{border:none !important;padding-left:0 !important}._5OBnds2RAY table,._5OBnds2RAY tr,._5OBnds2RAY td{page-break-inside:avoid}._5OBnds2RAY div{page-break-inside:avoid}._5OBnds2RAY thead{display:table-header-group}._5OBnds2RAY tfoot{display:table-footer-group}._5OBnds2RAY *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}._5OBnds2RAY ._576vRWTS8z,._5OBnds2RAY .no-print,._5OBnds2RAY .react-resizable-handle,._5OBnds2RAY .fc-whiteboard-toolbar,._5OBnds2RAY .ant-modal-root,._5OBnds2RAY .ant-alert,._5OBnds2RAY .xhWEZ0QtdP,._5OBnds2RAY .fPDootYcgy{display:none !important}._5OBnds2RAY .k06635Yz-j{display:none !important}}._6jyoGsvkTS{display:-webkit-box;display:-ms-flexbox;display:flex}.vb7BGAe37P{margin-right:10px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.ZTVAjsMEGD{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.tsrdSo6oF8{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.nG35T4190S{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.nG35T4190S>i,.nG35T4190S>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}._8IF2zHp-ap{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.unf-vCaLOw{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.h5QdHmvYIC{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.z8uD2JPCWq{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}._9NLtF7EGPY{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._73rIUvDvur{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.x1hSrIvtqX{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.x1hSrIvtqX .-qxM0rjrAN{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.x1hSrIvtqX .-qxM0rjrAN>span{color:rgba(0,0,0,0.65)}.jkuCJqlEHy{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.jkuCJqlEHy .O1hvIqndPW{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.jkuCJqlEHy .O1hvIqndPW>span{font-size:8px}.\+fWwoL5GeM .ant-popover-inner-content{padding:0}.\+fWwoL5GeM .ant-popover-arrow{border-color:#475365 !important}.\+fWwoL5GeM .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.ScixOiYWnY{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.HthXqhi0M-{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.HthXqhi0M- .cq8LOB\+RyW{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.TG4QPuwMfG{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.tElIopAKM7{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.tElIopAKM7{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.qSFNr8esiu{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.o2j7OkpNts html,.o2j7OkpNts body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.o2j7OkpNts body,.o2j7OkpNts div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.o2j7OkpNts textarea{border:none !important;padding-left:0 !important}.o2j7OkpNts table,.o2j7OkpNts tr,.o2j7OkpNts td{page-break-inside:avoid}.o2j7OkpNts div{page-break-inside:avoid}.o2j7OkpNts thead{display:table-header-group}.o2j7OkpNts tfoot{display:table-footer-group}.o2j7OkpNts *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.o2j7OkpNts .DkBhIpk8X\+,.o2j7OkpNts .no-print,.o2j7OkpNts .react-resizable-handle,.o2j7OkpNts .fc-whiteboard-toolbar,.o2j7OkpNts .ant-modal-root,.o2j7OkpNts .ant-alert,.o2j7OkpNts .UECJgTgGZc,.o2j7OkpNts .GtUNRscqnB{display:none !important}.o2j7OkpNts ._1XDL8vROOA{display:none !important}}.vLqi1cxbRJ{height:100%}.vLqi1cxbRJ .KiFQcE8kC5{margin-bottom:16px;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15)}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.F35yRSC0D-{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}._2r5Dt-XJLn{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.Xz87bZo62D{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.Xz87bZo62D>i,.Xz87bZo62D>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.g2W\+ku1VYG{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._9cur\+464m2{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.IIzPQIyQxt{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.nnGnRNkqqH{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.WSz9pBjnVF{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.hBLBMHp563{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._4PQMzCmn2G{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}._4PQMzCmn2G .QYAzdKhoPd{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}._4PQMzCmn2G .QYAzdKhoPd>span{color:rgba(0,0,0,0.65)}.aS6nPURmvf{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.aS6nPURmvf .wt3DoDHKHc{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.aS6nPURmvf .wt3DoDHKHc>span{font-size:8px}.naG9gNhzzB .ant-popover-inner-content{padding:0}.naG9gNhzzB .ant-popover-arrow{border-color:#475365 !important}.naG9gNhzzB .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.JqvG6G89P-{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.V59QPVROLN{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.V59QPVROLN .ulmtbAkJ8G{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.xE58wDSetA{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.HPh0plHyEj{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.HPh0plHyEj{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.ngqB6dndgj{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.g2o\+Ub0CGF html,.g2o\+Ub0CGF body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.g2o\+Ub0CGF body,.g2o\+Ub0CGF div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.g2o\+Ub0CGF textarea{border:none !important;padding-left:0 !important}.g2o\+Ub0CGF table,.g2o\+Ub0CGF tr,.g2o\+Ub0CGF td{page-break-inside:avoid}.g2o\+Ub0CGF div{page-break-inside:avoid}.g2o\+Ub0CGF thead{display:table-header-group}.g2o\+Ub0CGF tfoot{display:table-footer-group}.g2o\+Ub0CGF *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.g2o\+Ub0CGF .BdsfLE-4pI,.g2o\+Ub0CGF .no-print,.g2o\+Ub0CGF .react-resizable-handle,.g2o\+Ub0CGF .fc-whiteboard-toolbar,.g2o\+Ub0CGF .ant-modal-root,.g2o\+Ub0CGF .ant-alert,.g2o\+Ub0CGF .W05mfSAdV3,.g2o\+Ub0CGF ._7SJE7SVAbB{display:none !important}.g2o\+Ub0CGF .uJwVXg9k0W{display:none !important}}.utPs-a03xU{overflow:hidden !important}.utPs-a03xU{height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;max-height:calc(100vh - 110px)}.utPs-a03xU .Z4HtUl-6FZ{padding:12px 24px;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:#fff;border-radius:3px 3px 0 0;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.utPs-a03xU .ant-tabs{width:100%;height:100%}.utPs-a03xU .ant-tabs .ant-tabs-nav{height:50px;background:white;padding-left:24px;border-radius:0 0 3px 3px;-webkit-box-shadow:0 1px 4px rgba(0,21,41,0.08);box-shadow:0 1px 4px rgba(0,21,41,0.08)}.utPs-a03xU .ant-tabs .ant-tabs-content{height:100%}.utPs-a03xU .ant-tabs .ant-tabs-tabpane{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;padding:24px;border-radius:4px;overflow:auto;height:calc(100vh - 260px)}.utPs-a03xU .ant-tabs .ant-tabs-tab-btn{padding:12px 16px}.cYV8JZtSQc{width:100%;height:100%}.Ympi6izr8M{height:-webkit-fit-content;height:-moz-fit-content;height:fit-content;padding-bottom:8px}.Ympi6izr8M .n7qHbfdc5X{margin-bottom:16px;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15)}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.jLvzDdpDyt{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.lE-IQaZZ6u{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.Wp1gG\+FUVa{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.Wp1gG\+FUVa>i,.Wp1gG\+FUVa>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.kVjWpZOSYo{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.R0ZbPhp8lh{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.g7GvyKPMP8{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.ebn5JQ3Dgr{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.WzOpjO6QFU{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.PTfBt7KYNq{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.jdWy3yA7RZ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.jdWy3yA7RZ .odi4dBddZ0{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.jdWy3yA7RZ .odi4dBddZ0>span{color:rgba(0,0,0,0.65)}.pRtaVZQZot{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.pRtaVZQZot ._1qxCpZH1Qa{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.pRtaVZQZot ._1qxCpZH1Qa>span{font-size:8px}.kJv0rC-R8K .ant-popover-inner-content{padding:0}.kJv0rC-R8K .ant-popover-arrow{border-color:#475365 !important}.kJv0rC-R8K .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.Ozdizewrvn{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.S7KyaTkqkZ{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.S7KyaTkqkZ .j8crK9NzM7{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.WqsZUEgXui{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}._5j2sdiWfHX{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{._5j2sdiWfHX{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.uA6zdc9Vcn{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.puh8JksMP2 html,.puh8JksMP2 body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.puh8JksMP2 body,.puh8JksMP2 div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.puh8JksMP2 textarea{border:none !important;padding-left:0 !important}.puh8JksMP2 table,.puh8JksMP2 tr,.puh8JksMP2 td{page-break-inside:avoid}.puh8JksMP2 div{page-break-inside:avoid}.puh8JksMP2 thead{display:table-header-group}.puh8JksMP2 tfoot{display:table-footer-group}.puh8JksMP2 *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.puh8JksMP2 .ECKaXYszOJ,.puh8JksMP2 .no-print,.puh8JksMP2 .react-resizable-handle,.puh8JksMP2 .fc-whiteboard-toolbar,.puh8JksMP2 .ant-modal-root,.puh8JksMP2 .ant-alert,.puh8JksMP2 .yswvQen7kp,.puh8JksMP2 .wQ6gDUj0En{display:none !important}.puh8JksMP2 .OjgW3TNpnF{display:none !important}}.d\+Se-55yPr{padding:0 4px}.d\+Se-55yPr .JSJzwWpu6L{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:1rem 0;-ms-flex-wrap:nowrap;flex-wrap:nowrap}.d\+Se-55yPr .JSJzwWpu6L .r0KGSZLkeW{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;cursor:pointer;width:18rem;height:8rem;border-radius:8px;background-color:#fff;-webkit-transition:all .2s ease-in;transition:all .2s ease-in}.d\+Se-55yPr .JSJzwWpu6L .r0KGSZLkeW:not(:last-child){margin-right:2rem}.d\+Se-55yPr .JSJzwWpu6L .r0KGSZLkeW>span:first-child{font-size:1.6rem;font-weight:bold;text-align:center;color:#6874e2}.d\+Se-55yPr .JSJzwWpu6L .r0KGSZLkeW>div:last-child{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-top:.4rem}.d\+Se-55yPr .JSJzwWpu6L .r0KGSZLkeW>div:last-child>span:nth-child(2){margin:0 1rem}.d\+Se-55yPr .JSJzwWpu6L .Ixo1INYHFB{-webkit-box-shadow:0 0 10px 0 #6874e2;box-shadow:0 0 10px 0 #6874e2}.d\+Se-55yPr .UE52YwdVE7{overflow:auto;padding:.8rem 1.4rem;position:relative;background:#fff;border-radius:4px;height:calc(100% - 14rem);-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15)}.d\+Se-55yPr .UE52YwdVE7>div:first-child{margin-bottom:1rem}.d\+Se-55yPr .UE52YwdVE7 .SIQHqVe5D4{-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15)}.d\+Se-55yPr .UE52YwdVE7 .SIQHqVe5D4:not(:last-child){margin-bottom:1rem}
@charset "UTF-8";
.fc {
  direction: ltr;
  text-align: left;
}

.fc-rtl {
  text-align: right;
}

body .fc {
  /* extra precedence to overcome jqui */
  font-size: 1em;
}

/* Colors
--------------------------------------------------------------------------------------------------*/
.fc-highlight {
  /* when user is selecting cells */
  background: #bce8f1;
  opacity: 0.3;
}

.fc-bgevent {
  /* default look for background events */
  background: #8fdf82;
  opacity: 0.3;
}

.fc-nonbusiness {
  /* default look for non-business-hours areas */
  /* will inherit .fc-bgevent's styles */
  background: #d7d7d7;
}

/* Popover
--------------------------------------------------------------------------------------------------*/
.fc-popover {
  position: absolute;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.fc-popover .fc-header {
  /* TODO: be more consistent with fc-head/fc-body */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2px 4px;
}

.fc-rtl .fc-popover .fc-header {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.fc-popover .fc-header .fc-title {
  margin: 0 2px;
}

.fc-popover .fc-header .fc-close {
  cursor: pointer;
  opacity: 0.65;
  font-size: 1.1em;
}

/* Misc Reusable Components
--------------------------------------------------------------------------------------------------*/
.fc-divider {
  border-style: solid;
  border-width: 1px;
}

hr.fc-divider {
  height: 0;
  margin: 0;
  padding: 0 0 2px;
  /* height is unreliable across browsers, so use padding */
  border-width: 1px 0;
}

.fc-bg,
.fc-bgevent-skeleton,
.fc-highlight-skeleton,
.fc-mirror-skeleton {
  /* these element should always cling to top-left/right corners */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.fc-bg {
  bottom: 0;
  /* strech bg to bottom edge */
}

.fc-bg table {
  height: 100%;
  /* strech bg to bottom edge */
}

/* Tables
--------------------------------------------------------------------------------------------------*/
.fc table {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* fix scrollbar issue in firefox */
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 1em;
  /* normalize cross-browser */
}

.fc th {
  text-align: center;
}

.fc th,
.fc td {
  border-style: solid;
  border-width: 1px;
  padding: 0;
  vertical-align: top;
}

.fc td.fc-today {
  border-style: double;
  /* overcome neighboring borders */
}

/* Internal Nav Links
--------------------------------------------------------------------------------------------------*/
a[data-goto] {
  cursor: pointer;
}

a[data-goto]:hover {
  text-decoration: underline;
}

/* Fake Table Rows
--------------------------------------------------------------------------------------------------*/
.fc .fc-row {
  /* extra precedence to overcome themes forcing a 1px border */
  /* no visible border by default. but make available if need be (scrollbar width compensation) */
  border-style: solid;
  border-width: 0;
}

.fc-row table {
  /* don't put left/right border on anything within a fake row.
     the outer tbody will worry about this */
  border-left: 0 hidden transparent;
  border-right: 0 hidden transparent;
  /* no bottom borders on rows */
  border-bottom: 0 hidden transparent;
}

.fc-row:first-child table {
  border-top: 0 hidden transparent;
  /* no top border on first row */
}

/* Day Row (used within the header and the DayGrid)
--------------------------------------------------------------------------------------------------*/
.fc-row {
  position: relative;
}

.fc-row .fc-bg {
  z-index: 1;
}

/* highlighting cells & background event skeleton */
.fc-row .fc-bgevent-skeleton,
.fc-row .fc-highlight-skeleton {
  bottom: 0;
  /* stretch skeleton to bottom of row */
}

.fc-row .fc-bgevent-skeleton table,
.fc-row .fc-highlight-skeleton table {
  height: 100%;
  /* stretch skeleton to bottom of row */
}

.fc-row .fc-highlight-skeleton td,
.fc-row .fc-bgevent-skeleton td {
  border-color: transparent;
}

.fc-row .fc-bgevent-skeleton {
  z-index: 2;
}

.fc-row .fc-highlight-skeleton {
  z-index: 3;
}

/*
row content (which contains day/week numbers and events) as well as "mirror" (which contains
temporary rendered events).
*/
.fc-row .fc-content-skeleton {
  position: relative;
  z-index: 4;
  padding-bottom: 2px;
  /* matches the space above the events */
}

.fc-row .fc-mirror-skeleton {
  z-index: 5;
}

.fc .fc-row .fc-content-skeleton table,
.fc .fc-row .fc-content-skeleton td,
.fc .fc-row .fc-mirror-skeleton td {
  /* see-through to the background below */
  /* extra precedence to prevent theme-provided backgrounds */
  background: none;
  /* in case <td>s are globally styled */
  border-color: transparent;
}

.fc-row .fc-content-skeleton td,
.fc-row .fc-mirror-skeleton td {
  /* don't put a border between events and/or the day number */
  border-bottom: 0;
}

.fc-row .fc-content-skeleton tbody td,
.fc-row .fc-mirror-skeleton tbody td {
  /* don't put a border between event cells */
  border-top: 0;
}

/* Scrolling Container
--------------------------------------------------------------------------------------------------*/
.fc-scroller {
  -webkit-overflow-scrolling: touch;
}

/* TODO: move to timegrid/daygrid */
.fc-scroller > .fc-day-grid,
.fc-scroller > .fc-time-grid {
  position: relative;
  /* re-scope all positions */
  width: 100%;
  /* hack to force re-sizing this inner element when scrollbars appear/disappear */
}

/* Global Event Styles
--------------------------------------------------------------------------------------------------*/
.fc-event {
  position: relative;
  /* for resize handle and other inner positioning */
  display: block;
  /* make the <a> tag block */
  font-size: 0.85em;
  line-height: 1.4;
  border-radius: 3px;
  border: 1px solid #3788d8;
}

.fc-event,
.fc-event-dot {
  background-color: #3788d8;
  /* default BACKGROUND color */
}

.fc-event,
.fc-event:hover {
  color: #fff;
  /* default TEXT color */
  text-decoration: none;
  /* if <a> has an href */
}

.fc-event[href],
.fc-event.fc-draggable {
  cursor: pointer;
  /* give events with links and draggable events a hand mouse pointer */
}

.fc-not-allowed,
.fc-not-allowed .fc-event {
  /* to override an event's custom cursor */
  cursor: not-allowed;
}

.fc-event .fc-content {
  position: relative;
  z-index: 2;
}

/* resizer (cursor AND touch devices) */
.fc-event .fc-resizer {
  position: absolute;
  z-index: 4;
}

/* resizer (touch devices) */
.fc-event .fc-resizer {
  display: none;
}

.fc-event.fc-allow-mouse-resize .fc-resizer,
.fc-event.fc-selected .fc-resizer {
  /* only show when hovering or selected (with touch) */
  display: block;
}

/* hit area */
.fc-event.fc-selected .fc-resizer:before {
  /* 40x40 touch area */
  content: "";
  position: absolute;
  z-index: 9999;
  /* user of this util can scope within a lower z-index */
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin-left: -20px;
  margin-top: -20px;
}

/* Event Selection (only for touch devices)
--------------------------------------------------------------------------------------------------*/
.fc-event.fc-selected {
  z-index: 9999 !important;
}
.fc-event.fc-selected {
  /* overcomes inline z-index */
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.fc-event.fc-selected:after {
  content: "";
  position: absolute;
  z-index: 1;
  /* same z-index as fc-bg, behind text */
  /* overcome the borders */
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  /* darkening effect */
  background: #000;
  opacity: 0.25;
}

/* Event Dragging
--------------------------------------------------------------------------------------------------*/
.fc-event.fc-dragging.fc-selected {
  -webkit-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
}

.fc-event.fc-dragging:not(.fc-selected) {
  opacity: 0.75;
}

/* Horizontal Events
--------------------------------------------------------------------------------------------------*/
/* bigger touch area when selected */
.fc-h-event.fc-selected:before {
  content: "";
  position: absolute;
  z-index: 3;
  /* below resizers */
  top: -10px;
  bottom: -10px;
  left: 0;
  right: 0;
}

/* events that are continuing to/from another week. kill rounded corners and butt up against edge */
.fc-ltr .fc-h-event.fc-not-start,
.fc-rtl .fc-h-event.fc-not-end {
  margin-left: 0;
  border-left-width: 0;
  padding-left: 1px;
  /* replace the border with padding */
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.fc-ltr .fc-h-event.fc-not-end,
.fc-rtl .fc-h-event.fc-not-start {
  margin-right: 0;
  border-right-width: 0;
  padding-right: 1px;
  /* replace the border with padding */
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* resizer (cursor AND touch devices) */
/* left resizer  */
.fc-ltr .fc-h-event .fc-start-resizer,
.fc-rtl .fc-h-event .fc-end-resizer {
  cursor: w-resize;
  left: -1px;
  /* overcome border */
}

/* right resizer */
.fc-ltr .fc-h-event .fc-end-resizer,
.fc-rtl .fc-h-event .fc-start-resizer {
  cursor: e-resize;
  right: -1px;
  /* overcome border */
}

/* resizer (mouse devices) */
.fc-h-event.fc-allow-mouse-resize .fc-resizer {
  width: 7px;
  top: -1px;
  /* overcome top border */
  bottom: -1px;
  /* overcome bottom border */
}

/* resizer (touch devices) */
.fc-h-event.fc-selected .fc-resizer {
  /* 8x8 little dot */
  border-radius: 4px;
  border-width: 1px;
  width: 6px;
  height: 6px;
  border-style: solid;
  border-color: inherit;
  background: #fff;
  /* vertically center */
  top: 50%;
  margin-top: -4px;
}

/* left resizer  */
.fc-ltr .fc-h-event.fc-selected .fc-start-resizer,
.fc-rtl .fc-h-event.fc-selected .fc-end-resizer {
  margin-left: -4px;
  /* centers the 8x8 dot on the left edge */
}

/* right resizer */
.fc-ltr .fc-h-event.fc-selected .fc-end-resizer,
.fc-rtl .fc-h-event.fc-selected .fc-start-resizer {
  margin-right: -4px;
  /* centers the 8x8 dot on the right edge */
}

/* DayGrid events
----------------------------------------------------------------------------------------------------
We use the full "fc-day-grid-event" class instead of using descendants because the event won't
be a descendant of the grid when it is being dragged.
*/
.fc-day-grid-event {
  margin: 1px 2px 0;
  /* spacing between events and edges */
  padding: 0 1px;
}

tr:first-child > td > .fc-day-grid-event {
  margin-top: 2px;
  /* a little bit more space before the first event */
}

.fc-mirror-skeleton tr:first-child > td > .fc-day-grid-event {
  margin-top: 0;
  /* except for mirror skeleton */
}

.fc-day-grid-event .fc-content {
  /* force events to be one-line tall */
  white-space: nowrap;
  overflow: hidden;
}

.fc-day-grid-event .fc-time {
  font-weight: bold;
}

/* resizer (cursor devices) */
/* left resizer  */
.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer,
.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer {
  margin-left: -2px;
  /* to the day cell's edge */
}

/* right resizer */
.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer,
.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer {
  margin-right: -2px;
  /* to the day cell's edge */
}

/* Event Limiting
--------------------------------------------------------------------------------------------------*/
/* "more" link that represents hidden events */
a.fc-more {
  margin: 1px 3px;
  font-size: 0.85em;
  cursor: pointer;
  text-decoration: none;
}

a.fc-more:hover {
  text-decoration: underline;
}

.fc-limited {
  /* rows and cells that are hidden because of a "more" link */
  display: none;
}

/* popover that appears when "more" link is clicked */
.fc-day-grid .fc-row {
  z-index: 1;
  /* make the "more" popover one higher than this */
}

.fc-more-popover {
  z-index: 2;
  width: 220px;
}

.fc-more-popover .fc-event-container {
  padding: 10px;
}

/* Now Indicator
--------------------------------------------------------------------------------------------------*/
.fc-now-indicator {
  position: absolute;
  border: 0 solid red;
}

/* Utilities
--------------------------------------------------------------------------------------------------*/
.fc-unselectable {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/*
TODO: more distinction between this file and common.css
*/
/* Colors
--------------------------------------------------------------------------------------------------*/
.fc-unthemed th,
.fc-unthemed td,
.fc-unthemed thead,
.fc-unthemed tbody,
.fc-unthemed .fc-divider,
.fc-unthemed .fc-row,
.fc-unthemed .fc-content,
.fc-unthemed .fc-popover,
.fc-unthemed .fc-list-view,
.fc-unthemed .fc-list-heading td {
  border-color: #ddd;
}

.fc-unthemed .fc-popover {
  background-color: #fff;
}

.fc-unthemed .fc-divider,
.fc-unthemed .fc-popover .fc-header,
.fc-unthemed .fc-list-heading td {
  background: #eee;
}

.fc-unthemed td.fc-today {
  background: #fcf8e3;
}

.fc-unthemed .fc-disabled-day {
  background: #d7d7d7;
  opacity: 0.3;
}

/* Icons
--------------------------------------------------------------------------------------------------
from https://feathericons.com/ and built with IcoMoon
*/
@font-face {
  font-family: "fcicons";
  src: url("data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SBfAAAAC8AAAAYGNtYXAXVtKNAAABHAAAAFRnYXNwAAAAEAAAAXAAAAAIZ2x5ZgYydxIAAAF4AAAFNGhlYWQUJ7cIAAAGrAAAADZoaGVhB20DzAAABuQAAAAkaG10eCIABhQAAAcIAAAALGxvY2ED4AU6AAAHNAAAABhtYXhwAA8AjAAAB0wAAAAgbmFtZXsr690AAAdsAAABhnBvc3QAAwAAAAAI9AAAACAAAwPAAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADpBgPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAOAAAAAoACAACAAIAAQAg6Qb//f//AAAAAAAg6QD//f//AAH/4xcEAAMAAQAAAAAAAAAAAAAAAQAB//8ADwABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAWIAjQKeAskAEwAAJSc3NjQnJiIHAQYUFwEWMjc2NCcCnuLiDQ0MJAz/AA0NAQAMJAwNDcni4gwjDQwM/wANIwz/AA0NDCMNAAAAAQFiAI0CngLJABMAACUBNjQnASYiBwYUHwEHBhQXFjI3AZ4BAA0N/wAMJAwNDeLiDQ0MJAyNAQAMIw0BAAwMDSMM4uINIwwNDQAAAAIA4gC3Ax4CngATACcAACUnNzY0JyYiDwEGFB8BFjI3NjQnISc3NjQnJiIPAQYUHwEWMjc2NCcB87e3DQ0MIw3VDQ3VDSMMDQ0BK7e3DQ0MJAzVDQ3VDCQMDQ3zuLcMJAwNDdUNIwzWDAwNIwy4twwkDA0N1Q0jDNYMDA0jDAAAAgDiALcDHgKeABMAJwAAJTc2NC8BJiIHBhQfAQcGFBcWMjchNzY0LwEmIgcGFB8BBwYUFxYyNwJJ1Q0N1Q0jDA0Nt7cNDQwjDf7V1Q0N1QwkDA0Nt7cNDQwkDLfWDCMN1Q0NDCQMt7gMIw0MDNYMIw3VDQ0MJAy3uAwjDQwMAAADAFUAAAOrA1UAMwBoAHcAABMiBgcOAQcOAQcOARURFBYXHgEXHgEXHgEzITI2Nz4BNz4BNz4BNRE0JicuAScuAScuASMFITIWFx4BFx4BFx4BFREUBgcOAQcOAQcOASMhIiYnLgEnLgEnLgE1ETQ2Nz4BNz4BNz4BMxMhMjY1NCYjISIGFRQWM9UNGAwLFQkJDgUFBQUFBQ4JCRULDBgNAlYNGAwLFQkJDgUFBQUFBQ4JCRULDBgN/aoCVgQIBAQHAwMFAQIBAQIBBQMDBwQECAT9qgQIBAQHAwMFAQIBAQIBBQMDBwQECASAAVYRGRkR/qoRGRkRA1UFBAUOCQkVDAsZDf2rDRkLDBUJCA4FBQUFBQUOCQgVDAsZDQJVDRkLDBUJCQ4FBAVVAgECBQMCBwQECAX9qwQJAwQHAwMFAQICAgIBBQMDBwQDCQQCVQUIBAQHAgMFAgEC/oAZEhEZGRESGQAAAAADAFUAAAOrA1UAMwBoAIkAABMiBgcOAQcOAQcOARURFBYXHgEXHgEXHgEzITI2Nz4BNz4BNz4BNRE0JicuAScuAScuASMFITIWFx4BFx4BFx4BFREUBgcOAQcOAQcOASMhIiYnLgEnLgEnLgE1ETQ2Nz4BNz4BNz4BMxMzFRQWMzI2PQEzMjY1NCYrATU0JiMiBh0BIyIGFRQWM9UNGAwLFQkJDgUFBQUFBQ4JCRULDBgNAlYNGAwLFQkJDgUFBQUFBQ4JCRULDBgN/aoCVgQIBAQHAwMFAQIBAQIBBQMDBwQECAT9qgQIBAQHAwMFAQIBAQIBBQMDBwQECASAgBkSEhmAERkZEYAZEhIZgBEZGREDVQUEBQ4JCRUMCxkN/asNGQsMFQkIDgUFBQUFBQ4JCBUMCxkNAlUNGQsMFQkJDgUEBVUCAQIFAwIHBAQIBf2rBAkDBAcDAwUBAgICAgEFAwMHBAMJBAJVBQgEBAcCAwUCAQL+gIASGRkSgBkSERmAEhkZEoAZERIZAAABAOIAjQMeAskAIAAAExcHBhQXFjI/ARcWMjc2NC8BNzY0JyYiDwEnJiIHBhQX4uLiDQ0MJAzi4gwkDA0N4uINDQwkDOLiDCQMDQ0CjeLiDSMMDQ3h4Q0NDCMN4uIMIw0MDOLiDAwNIwwAAAABAAAAAQAAa5n0y18PPPUACwQAAAAAANivOVsAAAAA2K85WwAAAAADqwNVAAAACAACAAAAAAAAAAEAAAPA/8AAAAQAAAAAAAOrAAEAAAAAAAAAAAAAAAAAAAALBAAAAAAAAAAAAAAAAgAAAAQAAWIEAAFiBAAA4gQAAOIEAABVBAAAVQQAAOIAAAAAAAoAFAAeAEQAagCqAOoBngJkApoAAQAAAAsAigADAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAA4ArgABAAAAAAABAAcAAAABAAAAAAACAAcAYAABAAAAAAADAAcANgABAAAAAAAEAAcAdQABAAAAAAAFAAsAFQABAAAAAAAGAAcASwABAAAAAAAKABoAigADAAEECQABAA4ABwADAAEECQACAA4AZwADAAEECQADAA4APQADAAEECQAEAA4AfAADAAEECQAFABYAIAADAAEECQAGAA4AUgADAAEECQAKADQApGZjaWNvbnMAZgBjAGkAYwBvAG4Ac1ZlcnNpb24gMS4wAFYAZQByAHMAaQBvAG4AIAAxAC4AMGZjaWNvbnMAZgBjAGkAYwBvAG4Ac2ZjaWNvbnMAZgBjAGkAYwBvAG4Ac1JlZ3VsYXIAUgBlAGcAdQBsAGEAcmZjaWNvbnMAZgBjAGkAYwBvAG4Ac0ZvbnQgZ2VuZXJhdGVkIGJ5IEljb01vb24uAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=") format("truetype");
  font-weight: normal;
  font-style: normal;
}
.fc-icon {
  font-family: "fcicons" !important;
}
.fc-icon {
  /* use !important to prevent issues with browser extensions that change fonts */
  speak: none;
  font-style: normal;
  font-weight: normal;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fc-icon-chevron-left:before {
  content: "";
}

.fc-icon-chevron-right:before {
  content: "";
}

.fc-icon-chevrons-left:before {
  content: "";
}

.fc-icon-chevrons-right:before {
  content: "";
}

.fc-icon-minus-square:before {
  content: "";
}

.fc-icon-plus-square:before {
  content: "";
}

.fc-icon-x:before {
  content: "";
}

.fc-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  text-align: center;
}

/* Buttons
--------------------------------------------------------------------------------------------------
Lots taken from Flatly (MIT): https://bootswatch.com/4/flatly/bootstrap.css
*/
/* reset */
.fc-button {
  border-radius: 0;
  overflow: visible;
  text-transform: none;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.fc-button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

.fc-button {
  -webkit-appearance: button;
}

.fc-button:not(:disabled) {
  cursor: pointer;
}

.fc-button::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

/* theme */
.fc-button {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.4em 0.65em;
  font-size: 1em;
  line-height: 1.5;
  border-radius: 0.25em;
}

.fc-button:hover {
  color: #212529;
  text-decoration: none;
}

.fc-button:focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(44, 62, 80, 0.25);
  box-shadow: 0 0 0 0.2rem rgba(44, 62, 80, 0.25);
}

.fc-button:disabled {
  opacity: 0.65;
}

/* "primary" coloring */
.fc-button-primary {
  color: #fff;
  background-color: #2C3E50;
  border-color: #2C3E50;
}

.fc-button-primary:hover {
  color: #fff;
  background-color: #1e2b37;
  border-color: #1a252f;
}

.fc-button-primary:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(76, 91, 106, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(76, 91, 106, 0.5);
}

.fc-button-primary:disabled {
  color: #fff;
  background-color: #2C3E50;
  border-color: #2C3E50;
}

.fc-button-primary:not(:disabled):active,
.fc-button-primary:not(:disabled).fc-button-active {
  color: #fff;
  background-color: #1a252f;
  border-color: #151e27;
}

.fc-button-primary:not(:disabled):active:focus,
.fc-button-primary:not(:disabled).fc-button-active:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(76, 91, 106, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(76, 91, 106, 0.5);
}

/* icons within buttons */
.fc-button .fc-icon {
  vertical-align: middle;
  font-size: 1.5em;
}

/* Buttons Groups
--------------------------------------------------------------------------------------------------*/
.fc-button-group {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
}

.fc-button-group > .fc-button {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.fc-button-group > .fc-button:hover {
  z-index: 1;
}

.fc-button-group > .fc-button:focus,
.fc-button-group > .fc-button:active,
.fc-button-group > .fc-button.fc-button-active {
  z-index: 1;
}

.fc-button-group > .fc-button:not(:first-child) {
  margin-left: -1px;
}

.fc-button-group > .fc-button:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.fc-button-group > .fc-button:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* Popover
--------------------------------------------------------------------------------------------------*/
.fc-unthemed .fc-popover {
  border-width: 1px;
  border-style: solid;
}

/* List View
--------------------------------------------------------------------------------------------------*/
.fc-unthemed .fc-list-item:hover td {
  background-color: #f5f5f5;
}

/* Toolbar
--------------------------------------------------------------------------------------------------*/
.fc-toolbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.fc-toolbar.fc-header-toolbar {
  margin-bottom: 1.5em;
}

.fc-toolbar.fc-footer-toolbar {
  margin-top: 1.5em;
}

/* inner content */
.fc-toolbar > * > :not(:first-child) {
  margin-left: 0.75em;
}

.fc-toolbar h2 {
  font-size: 1.75em;
  margin: 0;
}

/* View Structure
--------------------------------------------------------------------------------------------------*/
.fc-view-container {
  position: relative;
}

/* undo twitter bootstrap's box-sizing rules. normalizes positioning techniques */
/* don't do this for the toolbar because we'll want bootstrap to style those buttons as some pt */
.fc-view-container *,
.fc-view-container *:before,
.fc-view-container *:after {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.fc-view,
.fc-view > table {
  /* so dragged elements can be above the view's main element */
  position: relative;
  z-index: 1;
}

@media print {
  .fc {
    max-width: 100% !important;
  }

  /* Global Event Restyling
  --------------------------------------------------------------------------------------------------*/
  .fc-event {
    background: #fff !important;
    color: #000 !important;
  }
  .fc-event {
    page-break-inside: avoid;
  }

  .fc-event .fc-resizer {
    display: none;
  }

  /* Table & Day-Row Restyling
  --------------------------------------------------------------------------------------------------*/
  .fc th,
.fc td,
.fc hr,
.fc thead,
.fc tbody,
.fc-row {
    border-color: #ccc !important;
    background: #fff !important;
  }

  /* kill the overlaid, absolutely-positioned components */
  /* common... */
  .fc-bg,
.fc-bgevent-skeleton,
.fc-highlight-skeleton,
.fc-mirror-skeleton,
.fc-bgevent-container,
.fc-business-container,
.fc-highlight-container,
.fc-mirror-container {
    display: none;
  }

  /* don't force a min-height on rows (for DayGrid) */
  .fc tbody .fc-row {
    height: auto !important;
    min-height: 0 !important;
  }
  .fc tbody .fc-row {
    /* undo height that JS set in distributeHeight */
    /* undo the min-height from each view's specific stylesheet */
  }

  .fc tbody .fc-row .fc-content-skeleton {
    padding-bottom: 0 !important;
  }

  .fc tbody .fc-row .fc-content-skeleton {
    position: static;
    /* undo .fc-rigid */
    /* use a more border-friendly method for this... */
  }

  .fc tbody .fc-row .fc-content-skeleton tbody tr:last-child td {
    /* only works in newer browsers */
    padding-bottom: 1em;
    /* ...gives space within the skeleton. also ensures min height in a way */
  }

  .fc tbody .fc-row .fc-content-skeleton table {
    /* provides a min-height for the row, but only effective for IE, which exaggerates this value,
       making it look more like 3em. for other browers, it will already be this tall */
    height: 1em;
  }

  /* Undo month-view event limiting. Display all events and hide the "more" links
  --------------------------------------------------------------------------------------------------*/
  .fc-more-cell,
.fc-more {
    display: none !important;
  }

  .fc tr.fc-limited {
    display: table-row !important;
  }

  .fc td.fc-limited {
    display: table-cell !important;
  }

  .fc-popover {
    display: none;
    /* never display the "more.." popover in print mode */
  }

  /* TimeGrid Restyling
  --------------------------------------------------------------------------------------------------*/
  /* undo the min-height 100% trick used to fill the container's height */
  .fc-time-grid {
    min-height: 0 !important;
  }

  /* don't display the side axis at all ("all-day" and time cells) */
  .fc-timeGrid-view .fc-axis {
    display: none;
  }

  /* don't display the horizontal lines */
  .fc-slats,
.fc-time-grid hr {
    display: none !important;
  }
  .fc-slats,
.fc-time-grid hr {
    /* this hr is used when height is underused and needs to be filled */
    /* important overrides inline declaration */
  }

  /* let the container that holds the events be naturally positioned and create real height */
  .fc-time-grid .fc-content-skeleton {
    position: static;
  }

  /* in case there are no events, we still want some height */
  .fc-time-grid .fc-content-skeleton table {
    height: 4em;
  }

  /* kill the horizontal spacing made by the event container. event margins will be done below */
  .fc-time-grid .fc-event-container {
    margin: 0 !important;
  }

  /* TimeGrid *Event* Restyling
  --------------------------------------------------------------------------------------------------*/
  /* naturally position events, vertically stacking them */
  .fc-time-grid .fc-event {
    position: static !important;
    margin: 3px 2px !important;
  }

  /* for events that continue to a future day, give the bottom border back */
  .fc-time-grid .fc-event.fc-not-end {
    border-bottom-width: 1px !important;
  }

  /* indicate the event continues via "..." text */
  .fc-time-grid .fc-event.fc-not-end:after {
    content: "...";
  }

  /* for events that are continuations from previous days, give the top border back */
  .fc-time-grid .fc-event.fc-not-start {
    border-top-width: 1px !important;
  }

  /* indicate the event is a continuation via "..." text */
  .fc-time-grid .fc-event.fc-not-start:before {
    content: "...";
  }

  /* time */
  /* undo a previous declaration and let the time text span to a second line */
  .fc-time-grid .fc-event .fc-time {
    white-space: normal !important;
  }

  /* hide the the time that is normally displayed... */
  .fc-time-grid .fc-event .fc-time span {
    display: none;
  }

  /* ...replace it with a more verbose version (includes AM/PM) stored in an html attribute */
  .fc-time-grid .fc-event .fc-time:after {
    content: attr(data-full);
  }

  /* Vertical Scroller & Containers
  --------------------------------------------------------------------------------------------------*/
  /* kill the scrollbars and allow natural height */
  .fc-scroller,
.fc-day-grid-container,
.fc-time-grid-container {
    overflow: visible !important;
    height: auto !important;
  }
  .fc-scroller,
.fc-day-grid-container,
.fc-time-grid-container {
    /* */
  }

  /* kill the horizontal border/padding used to compensate for scrollbars */
  .fc-row {
    border: 0 !important;
    margin: 0 !important;
  }

  /* Button Controls
  --------------------------------------------------------------------------------------------------*/
  .fc-button-group,
.fc button {
    display: none;
    /* don't display any button-related controls */
  }
}

/* Scroller
--------------------------------------------------------------------------------------------------*/
.fc-scroller-clip {
  overflow: hidden;
  /* for clipping scrollbars */
  position: relative;
  /* so things like scrollfollowers can attach to this */
}

/* supresses rendering of native scrollbars */
/* on .fc-scroller */
.fc-no-scrollbars {
  background: rgba(255, 255, 255, 0);
  /* hack for dynamic DOM nodes (in Chrome OSX at least) */
}

.fc-no-scrollbars::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.fc-scroller-canvas {
  position: relative;
  /* origin for bg */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* so that padding (for gutter) will be part of height */
  min-height: 100%;
}

.fc-scroller-canvas > .fc-bg {
  z-index: 1;
  /* make default? */
}

.fc-scroller-canvas > .fc-content {
  z-index: 2;
  /* make default? */
  position: relative;
  /* origin for inner content */
  border-style: solid;
  border-width: 0;
}

.fc-scroller-canvas.fc-gutter-left > .fc-content {
  border-left-width: 1px;
  margin-left: -1px;
}

.fc-scroller-canvas.fc-gutter-right > .fc-content {
  border-right-width: 1px;
  margin-right: -1px;
}

.fc-scroller-canvas.fc-gutter-top > .fc-content {
  border-top-width: 1px;
  margin-top: -1px;
}

/* content is responsible for bottom border */
/* View Structure
--------------------------------------------------------------------------------------------------*/
.fc-rtl .fc-timeline {
  direction: rtl;
}

.fc-scrolled .fc-head .fc-scroller {
  z-index: 2;
  /* so drop shadow will go above body panes */
}

.fc-timeline.fc-scrolled .fc-head .fc-scroller {
  -webkit-box-shadow: 0 3px 4px rgba(0, 0, 0, 0.075);
          box-shadow: 0 3px 4px rgba(0, 0, 0, 0.075);
}

.fc-timeline .fc-body .fc-scroller {
  z-index: 1;
}

/*
on most tables that expand to the edges, kill the outer border,
because the container elements take care of it.
example tables:
.fc-scroller-canvas .fc-content table
.fc-scroller-canvas .fc-bg .fc-slats table
*/
.fc-timeline .fc-scroller-canvas > div > table,
.fc-timeline .fc-scroller-canvas > div > div > table {
  border-style: hidden;
}

/*
for resource rows (in both the spreadsheet and timeline areas),
undo previous rule in order to always show last border.
*/
.fc-timeline .fc-scroller-canvas > .fc-content > .fc-rows > table {
  border-bottom-style: none;
}

/* Table Cell Common
--------------------------------------------------------------------------------------------------*/
.fc-timeline th,
.fc-timeline td {
  white-space: nowrap;
}

.fc-timeline .fc-cell-content {
  overflow: hidden;
}

.fc-timeline .fc-cell-text {
  display: inline-block;
  padding-left: 4px;
  padding-right: 4px;
}

/*
Cells at the start of a week
TODO: figure out better styling

.fc-ltr .fc-timeline .fc-em-cell div {
  border-left: 3px solid #eee;
  height: 100%;
}
.fc-rtl .fc-timeline .fc-em-cell {
  border-right-width: 3px;
}
*/
/* head */
.fc-timeline th {
  vertical-align: middle;
}

.fc-timeline .fc-head .fc-cell-content {
  padding-top: 3px;
  padding-bottom: 3px;
}

.fc-timeline .fc-head .fc-time-area .fc-cell-content {
  overflow: visible;
}

/* Time Area
--------------------------------------------------------------------------------------------------*/
.fc-time-area col {
  min-width: 2.2em;
  /* detected by JS */
}

/* head */
.fc-ltr .fc-time-area .fc-chrono th {
  text-align: left;
}

.fc-rtl .fc-time-area .fc-chrono th {
  text-align: right;
}

/* body slats (vertical lines) */
.fc-time-area .fc-slats {
  /* fc-bg is responsible for a lot of this now! */
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.fc-time-area .fc-slats table {
  height: 100%;
}

.fc-time-area .fc-slats .fc-minor {
  border-style: dotted;
}

.fc-time-area .fc-slats td {
  border-width: 0 1px;
  /* need to do this. sometimes -1 margin wouldn't hide the dotted */
}

.fc-ltr .fc-time-area .fc-slats td {
  border-right-width: 0;
}

.fc-rtl .fc-time-area .fc-slats td {
  border-left-width: 0;
}

/* body content containers
   can be within rows or directly within the pane's content
*/
.fc-time-area .fc-bgevent-container,
.fc-time-area .fc-highlight-container {
  position: absolute;
  z-index: 2;
  /* only for directly within pane. not for row. overridden later */
  top: 0;
  bottom: 0;
  width: 0;
}

.fc-ltr .fc-time-area .fc-mirror-container,
.fc-ltr .fc-time-area .fc-bgevent-container,
.fc-ltr .fc-time-area .fc-highlight-container {
  left: 0;
}

.fc-rtl .fc-time-area .fc-mirror-container,
.fc-rtl .fc-time-area .fc-bgevent-container,
.fc-rtl .fc-time-area .fc-highlight-container {
  right: 0;
}

.fc-time-area .fc-bgevent,
.fc-time-area .fc-highlight {
  position: absolute;
  top: 0;
  bottom: 0;
}

/* Now Indicator
--------------------------------------------------------------------------------------------------*/
.fc-timeline .fc-now-indicator {
  /* both the arrow and the line */
  z-index: 3;
  /* one above scroller's fc-content */
  top: 0;
}

.fc-time-area .fc-now-indicator-arrow {
  margin: 0 -6px;
  /* 5, then one more to counteract scroller's negative margins */
  /* triangle pointing down... */
  border-width: 6px 5px 0 5px;
  border-left-color: transparent;
  border-right-color: transparent;
}

.fc-time-area .fc-now-indicator-line {
  margin: 0 -1px;
  /* counteract scroller's negative margins */
  bottom: 0;
  border-left-width: 1px;
}

/* Event Container
--------------------------------------------------------------------------------------------------*/
.fc-time-area .fc-event-container {
  position: relative;
  z-index: 2;
  /* above bgevent and highlight */
  width: 0;
  /* for event positioning. will end up on correct side based on dir */
}

.fc-time-area .fc-mirror-container {
  /* also an fc-event-container */
  position: absolute;
  z-index: 3;
  top: 0;
}

.fc-time-area .fc-event-container {
  padding-bottom: 8px;
  top: -1px;
}

.fc-time-area tr:first-child .fc-event-container {
  top: 0;
}

.fc-no-overlap .fc-time-area .fc-event-container {
  padding-bottom: 0;
  top: 0;
}

/* Time Grid Events
--------------------------------------------------------------------------------------------------*/
.fc-timeline-event {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 0;
  padding: 2px 1px;
  margin-bottom: 1px;
}

.fc-no-overlap .fc-timeline-event {
  padding-top: 5px;
  padding-bottom: 5px;
  margin-bottom: 0;
}

.fc-ltr .fc-timeline-event {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-right: 1px;
}

.fc-rtl .fc-timeline-event {
  margin-left: 1px;
}

.fc-timeline-event .fc-time-wrap {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-width: 0;
}

.fc-timeline-event .fc-title-wrap {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  min-width: 0;
}

.fc-timeline-event .fc-time,
.fc-timeline-event .fc-title {
  display: inline-block;
  vertical-align: top;
  max-width: 100%;
  padding: 0 2px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;
}

.fc-timeline-event .fc-time {
  font-weight: bold;
}

.fc-timeline-event.fc-not-start:before,
.fc-timeline-event.fc-not-end:after {
  content: "";
  -ms-flex-item-align: center;
      align-self: center;
  width: 0;
  height: 0;
  margin: 0 1px;
  border: 5px solid #000;
  border-top-color: transparent;
  border-bottom-color: transparent;
  opacity: 0.5;
}

.fc-ltr .fc-timeline-event.fc-not-start:before,
.fc-rtl .fc-timeline-event.fc-not-end:after {
  border-left: 0;
}

.fc-ltr .fc-timeline-event.fc-not-end:after,
.fc-rtl .fc-timeline-event.fc-not-start:before {
  border-right: 0;
}
/* Divider between resources and time area
--------------------------------------------------------------------------------------------------*/
.fc-timeline .fc-divider {
  width: 3px;
  border-style: double;
  /* overcome neighboring borders */
}

.fc-timeline .fc-head > tr > .fc-divider {
  border-bottom: 0;
}

.fc-timeline .fc-body > tr > .fc-divider {
  border-top: 0;
}

/* Resource Area
--------------------------------------------------------------------------------------------------*/
.fc-resource-area {
  width: 30%;
}

.fc-resource-area col {
  width: 40%;
  min-width: 70px;
  /* will be read by JS */
}

.fc-resource-area col.fc-main-col {
  width: 60%;
  /* make the first column in a nested setup bigger */
}

.fc-flat .fc-expander-space {
  /* fc-flat is opposite of fc-nested */
  display: none;
}

.fc-ltr .fc-resource-area tr > * {
  text-align: left;
}

.fc-rtl .fc-resource-area tr > * {
  text-align: right;
}

.fc-resource-area .fc-cell-content {
  padding-left: 4px;
  padding-right: 4px;
}

/* head */
.fc-resource-area .fc-super th {
  text-align: center;
}

.fc-resource-area th > div {
  position: relative;
}

.fc-resource-area th .fc-cell-content {
  position: relative;
  z-index: 1;
}

.fc-resource-area th .fc-col-resizer {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 5px;
}

.fc-timeline .fc-col-resizer {
  cursor: col-resize;
}

.fc-ltr .fc-resource-area th .fc-col-resizer {
  right: -3px;
}

.fc-rtl .fc-resource-area th .fc-col-resizer {
  left: -3px;
}

/* body */
.fc-body .fc-resource-area .fc-cell-content {
  /* might BE the cell */
  padding-top: 8px;
  padding-bottom: 8px;
}

.fc-no-overlap .fc-body .fc-resource-area .fc-cell-content {
  /* might BE the cell */
  padding-top: 6px;
  padding-bottom: 6px;
}

.fc-resource-area .fc-icon {
  /* the expander and spacers before the expander */
  display: inline-block;
  width: 1em;
  /* ensure constant width, esp for empty icons */
  text-align: center;
}

.fc-resource-area .fc-expander {
  cursor: pointer;
  opacity: 0.65;
}

/* body resource rows */
.fc-time-area .fc-rows {
  position: relative;
  z-index: 3;
}

.fc-time-area .fc-rows td > div {
  position: relative;
}

.fc-time-area .fc-rows .fc-bgevent-container,
.fc-time-area .fc-rows .fc-highlight-container {
  z-index: 1;
}

@charset "UTF-8";
/* TimeGridView all-day area
--------------------------------------------------------------------------------------------------*/
.fc-timeGrid-view .fc-day-grid {
  position: relative;
  z-index: 2;
  /* so the "more.." popover will be over the time grid */
}

.fc-timeGrid-view .fc-day-grid .fc-row {
  min-height: 3em;
  /* all-day section will never get shorter than this */
}

.fc-timeGrid-view .fc-day-grid .fc-row .fc-content-skeleton {
  padding-bottom: 1em;
  /* give space underneath events for clicking/selecting days */
}

/* TimeGrid axis running down the side (for both the all-day area and the slot area)
--------------------------------------------------------------------------------------------------*/
.fc .fc-axis {
  /* .fc to overcome default cell styles */
  vertical-align: middle;
  padding: 0 4px;
  white-space: nowrap;
}

.fc-ltr .fc-axis {
  text-align: right;
}

.fc-rtl .fc-axis {
  text-align: left;
}

/* TimeGrid Structure
--------------------------------------------------------------------------------------------------*/
.fc-time-grid-container,
.fc-time-grid {
  /* so slats/bg/content/etc positions get scoped within here */
  position: relative;
  z-index: 1;
}

.fc-time-grid {
  min-height: 100%;
  /* so if height setting is 'auto', .fc-bg stretches to fill height */
}

.fc-time-grid table {
  /* don't put outer borders on slats/bg/content/etc */
  border: 0 hidden transparent;
}

.fc-time-grid > .fc-bg {
  z-index: 1;
}

.fc-time-grid .fc-slats,
.fc-time-grid > hr {
  /* the <hr> TimeGridView injects when grid is shorter than scroller */
  position: relative;
  z-index: 2;
}

.fc-time-grid .fc-content-col {
  position: relative;
  /* because now-indicator lives directly inside */
}

.fc-time-grid .fc-content-skeleton {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
}

/* divs within a cell within the fc-content-skeleton */
.fc-time-grid .fc-business-container {
  position: relative;
  z-index: 1;
}

.fc-time-grid .fc-bgevent-container {
  position: relative;
  z-index: 2;
}

.fc-time-grid .fc-highlight-container {
  position: relative;
  z-index: 3;
}

.fc-time-grid .fc-event-container {
  position: relative;
  z-index: 4;
}

.fc-time-grid .fc-now-indicator-line {
  z-index: 5;
}

.fc-time-grid .fc-mirror-container {
  /* also is fc-event-container */
  position: relative;
  z-index: 6;
}

/* TimeGrid Slats (lines that run horizontally)
--------------------------------------------------------------------------------------------------*/
.fc-time-grid .fc-slats td {
  height: 1.5em;
  border-bottom: 0;
  /* each cell is responsible for its top border */
}

.fc-time-grid .fc-slats .fc-minor td {
  border-top-style: dotted;
}

/* TimeGrid Highlighting Slots
--------------------------------------------------------------------------------------------------*/
.fc-time-grid .fc-highlight-container {
  /* a div within a cell within the fc-highlight-skeleton */
  position: relative;
  /* scopes the left/right of the fc-highlight to be in the column */
}

.fc-time-grid .fc-highlight {
  position: absolute;
  left: 0;
  right: 0;
  /* top and bottom will be in by JS */
}

/* TimeGrid Event Containment
--------------------------------------------------------------------------------------------------*/
.fc-ltr .fc-time-grid .fc-event-container {
  /* space on the sides of events for LTR (default) */
  margin: 0 2.5% 0 2px;
}

.fc-rtl .fc-time-grid .fc-event-container {
  /* space on the sides of events for RTL */
  margin: 0 2px 0 2.5%;
}

.fc-time-grid .fc-event,
.fc-time-grid .fc-bgevent {
  position: absolute;
  z-index: 1;
  /* scope inner z-index's */
}

.fc-time-grid .fc-bgevent {
  /* background events always span full width */
  left: 0;
  right: 0;
}

/* TimeGrid Event Styling
----------------------------------------------------------------------------------------------------
We use the full "fc-time-grid-event" class instead of using descendants because the event won't
be a descendant of the grid when it is being dragged.
*/
.fc-time-grid-event {
  margin-bottom: 1px;
}

.fc-time-grid-event-inset {
  -webkit-box-shadow: 0px 0px 0px 1px #fff;
  box-shadow: 0px 0px 0px 1px #fff;
}

.fc-time-grid-event.fc-not-start {
  /* events that are continuing from another day */
  /* replace space made by the top border with padding */
  border-top-width: 0;
  padding-top: 1px;
  /* remove top rounded corners */
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.fc-time-grid-event.fc-not-end {
  /* replace space made by the top border with padding */
  border-bottom-width: 0;
  padding-bottom: 1px;
  /* remove bottom rounded corners */
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.fc-time-grid-event .fc-content {
  overflow: hidden;
  max-height: 100%;
}

.fc-time-grid-event .fc-time,
.fc-time-grid-event .fc-title {
  padding: 0 1px;
}

.fc-time-grid-event .fc-time {
  font-size: 0.85em;
  white-space: nowrap;
}

/* short mode, where time and title are on the same line */
.fc-time-grid-event.fc-short .fc-content {
  /* don't wrap to second line (now that contents will be inline) */
  white-space: nowrap;
}

.fc-time-grid-event.fc-short .fc-time,
.fc-time-grid-event.fc-short .fc-title {
  /* put the time and title on the same line */
  display: inline-block;
  vertical-align: top;
}

.fc-time-grid-event.fc-short .fc-time span {
  display: none;
  /* don't display the full time text... */
}

.fc-time-grid-event.fc-short .fc-time:before {
  content: attr(data-start);
  /* ...instead, display only the start time */
}

.fc-time-grid-event.fc-short .fc-time:after {
  content: " - ";
  /* seperate with a dash, wrapped in nbsp's */
}

.fc-time-grid-event.fc-short .fc-title {
  font-size: 0.85em;
  /* make the title text the same size as the time */
  padding: 0;
  /* undo padding from above */
}

/* resizer (cursor device) */
.fc-time-grid-event.fc-allow-mouse-resize .fc-resizer {
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  overflow: hidden;
  line-height: 8px;
  font-size: 11px;
  font-family: monospace;
  text-align: center;
  cursor: s-resize;
}

.fc-time-grid-event.fc-allow-mouse-resize .fc-resizer:after {
  content: "=";
}

/* resizer (touch device) */
.fc-time-grid-event.fc-selected .fc-resizer {
  /* 10x10 dot */
  border-radius: 5px;
  border-width: 1px;
  width: 8px;
  height: 8px;
  border-style: solid;
  border-color: inherit;
  background: #fff;
  /* horizontally center */
  left: 50%;
  margin-left: -5px;
  /* center on the bottom edge */
  bottom: -5px;
}

/* Now Indicator
--------------------------------------------------------------------------------------------------*/
.fc-time-grid .fc-now-indicator-line {
  border-top-width: 1px;
  left: 0;
  right: 0;
}

/* arrow on axis */
.fc-time-grid .fc-now-indicator-arrow {
  margin-top: -5px;
  /* vertically center on top coordinate */
}

.fc-ltr .fc-time-grid .fc-now-indicator-arrow {
  left: 0;
  /* triangle pointing right... */
  border-width: 5px 0 5px 6px;
  border-top-color: transparent;
  border-bottom-color: transparent;
}

.fc-rtl .fc-time-grid .fc-now-indicator-arrow {
  right: 0;
  /* triangle pointing left... */
  border-width: 5px 6px 5px 0;
  border-top-color: transparent;
  border-bottom-color: transparent;
}

/* List View
--------------------------------------------------------------------------------------------------*/
/* possibly reusable */
.fc-event-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 5px;
}

/* view wrapper */
.fc-rtl .fc-list-view {
  direction: rtl;
  /* unlike core views, leverage browser RTL */
}

.fc-list-view {
  border-width: 1px;
  border-style: solid;
}

/* table resets */
.fc .fc-list-table {
  table-layout: auto;
  /* for shrinkwrapping cell content */
}

.fc-list-table td {
  border-width: 1px 0 0;
  padding: 8px 14px;
}

.fc-list-table tr:first-child td {
  border-top-width: 0;
}

/* day headings with the list */
.fc-list-heading {
  border-bottom-width: 1px;
}

.fc-list-heading td {
  font-weight: bold;
}

.fc-ltr .fc-list-heading-main {
  float: left;
}

.fc-ltr .fc-list-heading-alt {
  float: right;
}

.fc-rtl .fc-list-heading-main {
  float: right;
}

.fc-rtl .fc-list-heading-alt {
  float: left;
}

/* event list items */
.fc-list-item.fc-has-url {
  cursor: pointer;
  /* whole row will be clickable */
}

.fc-list-item-marker,
.fc-list-item-time {
  white-space: nowrap;
  width: 1px;
}

/* make the dot closer to the event title */
.fc-ltr .fc-list-item-marker {
  padding-right: 0;
}

.fc-rtl .fc-list-item-marker {
  padding-left: 0;
}

.fc-list-item-title a {
  /* every event title cell has an <a> tag */
  text-decoration: none;
  color: inherit;
}

.fc-list-item-title a[href]:hover {
  /* hover effect only on titles with hrefs */
  text-decoration: underline;
}

/* message when no events */
.fc-list-empty-wrap2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.fc-list-empty-wrap1 {
  width: 100%;
  height: 100%;
  display: table;
}

.fc-list-empty {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.fc-unthemed .fc-list-empty {
  /* theme will provide own background */
  background-color: #eee;
}

.tippy-box[data-animation=fade][data-state=hidden]{opacity:0}[data-tippy-root]{max-width:calc(100vw - 10px)}.tippy-box{position:relative;background-color:#333;color:#fff;border-radius:4px;font-size:14px;line-height:1.4;white-space:normal;outline:0;-webkit-transition-property:visibility,opacity,-webkit-transform;transition-property:visibility,opacity,-webkit-transform;transition-property:transform,visibility,opacity;transition-property:transform,visibility,opacity,-webkit-transform}.tippy-box[data-placement^=top]>.tippy-arrow{bottom:0}.tippy-box[data-placement^=top]>.tippy-arrow:before{bottom:-7px;left:0;border-width:8px 8px 0;border-top-color:currentColor;border-top-color:initial;-webkit-transform-origin:center top;transform-origin:center top}.tippy-box[data-placement^=bottom]>.tippy-arrow{top:0}.tippy-box[data-placement^=bottom]>.tippy-arrow:before{top:-7px;left:0;border-width:0 8px 8px;border-bottom-color:currentColor;border-bottom-color:initial;-webkit-transform-origin:center bottom;transform-origin:center bottom}.tippy-box[data-placement^=left]>.tippy-arrow{right:0}.tippy-box[data-placement^=left]>.tippy-arrow:before{border-width:8px 0 8px 8px;border-left-color:currentColor;border-left-color:initial;right:-7px;-webkit-transform-origin:center left;transform-origin:center left}.tippy-box[data-placement^=right]>.tippy-arrow{left:0}.tippy-box[data-placement^=right]>.tippy-arrow:before{left:-7px;border-width:8px 8px 8px 0;border-right-color:currentColor;border-right-color:initial;-webkit-transform-origin:center right;transform-origin:center right}.tippy-box[data-inertia][data-state=visible]{-webkit-transition-timing-function:cubic-bezier(.54,1.5,.38,1.11);transition-timing-function:cubic-bezier(.54,1.5,.38,1.11)}.tippy-arrow{width:16px;height:16px;color:#333}.tippy-arrow:before{content:"";position:absolute;border-color:transparent;border-style:solid}.tippy-content{position:relative;padding:5px 9px;z-index:1}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}._9AhPNR6Eob{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.Y2UYAevSuA{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.u0l1GKyF5e{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.u0l1GKyF5e>i,.u0l1GKyF5e>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.TZC5IiBRao{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.mx5yRBoiJM{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}._8UMaSmQuUm{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.vYBMj3KzZX{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.mY2rRPu9P1{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.FVOBs558M\+{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.qoPvpzvuSP{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.qoPvpzvuSP ._8GFbdYoazV{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.qoPvpzvuSP ._8GFbdYoazV>span{color:rgba(0,0,0,0.65)}.hNvPXXHtX3{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.hNvPXXHtX3 ._96ILrZCNof{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.hNvPXXHtX3 ._96ILrZCNof>span{font-size:8px}.gfYl4NSFHL .ant-popover-inner-content{padding:0}.gfYl4NSFHL .ant-popover-arrow{border-color:#475365 !important}.gfYl4NSFHL .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.qY1oUxH-EE{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.PcMYNtt5O7{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.PcMYNtt5O7 .uRzD4NSwGM{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.eFkiN09GVV{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.BSKMPKGveq{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.BSKMPKGveq{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}._4MdEOhUdlP{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.MSr7kgAxjc html,.MSr7kgAxjc body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.MSr7kgAxjc body,.MSr7kgAxjc div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.MSr7kgAxjc textarea{border:none !important;padding-left:0 !important}.MSr7kgAxjc table,.MSr7kgAxjc tr,.MSr7kgAxjc td{page-break-inside:avoid}.MSr7kgAxjc div{page-break-inside:avoid}.MSr7kgAxjc thead{display:table-header-group}.MSr7kgAxjc tfoot{display:table-footer-group}.MSr7kgAxjc *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.MSr7kgAxjc .ezl5R4addt,.MSr7kgAxjc .no-print,.MSr7kgAxjc .react-resizable-handle,.MSr7kgAxjc .fc-whiteboard-toolbar,.MSr7kgAxjc .ant-modal-root,.MSr7kgAxjc .ant-alert,.MSr7kgAxjc .PP12orS8\+k,.MSr7kgAxjc .bY23wXzpcW{display:none !important}.MSr7kgAxjc .lG8YgkElKV{display:none !important}}.wpkBHxlOH3{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;padding:0 24px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.u4ruuPoAUp{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.yfTj-Y0sBX{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.rls4XxG9Fu{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.rls4XxG9Fu>i,.rls4XxG9Fu>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.FghoF9VX9H{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.KMLtuRhD5E{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.DG5GW5fpLa{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.MFP9LFppST{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.wW2\+pqqVnE{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.EYnOohJbk0{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.rl2V0ECuB-{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.rl2V0ECuB- .mJBoTB46lt{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.rl2V0ECuB- .mJBoTB46lt>span{color:rgba(0,0,0,0.65)}.cz5RxdSYx2{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.cz5RxdSYx2 .siMcGRrJ6p{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.cz5RxdSYx2 .siMcGRrJ6p>span{font-size:8px}.\+VaXO53zMX .ant-popover-inner-content{padding:0}.\+VaXO53zMX .ant-popover-arrow{border-color:#475365 !important}.\+VaXO53zMX .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.dHhxPLECYy{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.X9Oc7A47qx{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.X9Oc7A47qx .TO73YhDMpB{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.jlp3upVPzU{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.vGSe2twMv3{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.vGSe2twMv3{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.vrLfTALfNK{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.bd4XmVQvEQ html,.bd4XmVQvEQ body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.bd4XmVQvEQ body,.bd4XmVQvEQ div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.bd4XmVQvEQ textarea{border:none !important;padding-left:0 !important}.bd4XmVQvEQ table,.bd4XmVQvEQ tr,.bd4XmVQvEQ td{page-break-inside:avoid}.bd4XmVQvEQ div{page-break-inside:avoid}.bd4XmVQvEQ thead{display:table-header-group}.bd4XmVQvEQ tfoot{display:table-footer-group}.bd4XmVQvEQ *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.bd4XmVQvEQ ._3AZp8QaD5T,.bd4XmVQvEQ .no-print,.bd4XmVQvEQ .react-resizable-handle,.bd4XmVQvEQ .fc-whiteboard-toolbar,.bd4XmVQvEQ .ant-modal-root,.bd4XmVQvEQ .ant-alert,.bd4XmVQvEQ .vK4jsfoVjB,.bd4XmVQvEQ .QGJpVxUj\+Z{display:none !important}.bd4XmVQvEQ .iyAFnzP6xe{display:none !important}}.bRhe2QM\+y0 .-Pgies9Op1{float:right;border-radius:50%;width:20px;height:20px;background-color:#2c3e50;color:#fff;line-height:20px;margin-right:14px}.bRhe2QM\+y0 ._7MtNKXivSc{opacity:0;float:right;border:none;width:20px;height:20px;line-height:20px;margin-right:14px;color:#ff4d4f;-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.bRhe2QM\+y0 ._2hN2VBwMIo{cursor:pointer}.bRhe2QM\+y0 ._2hN2VBwMIo>span:nth-child(3){position:relative}.bRhe2QM\+y0 ._2hN2VBwMIo:hover>button{opacity:1}.bRhe2QM\+y0 .qgUFfR3\+14{display:block;width:7px;height:7px;border-radius:50%;position:absolute;top:50%;-webkit-transform:translateX(-15px) translateY(-50%);transform:translateX(-15px) translateY(-50%)}.bRhe2QM\+y0 .pdo2TM7T4k:before{display:block;width:7px;height:7px;border-radius:50%;position:absolute;top:50%;-webkit-transform:translateX(-15px) translateY(-50%);transform:translateX(-15px) translateY(-50%);content:'';background-color:#6874e2}.bRhe2QM\+y0 ._38XOFezJNk:before{display:block;width:7px;height:7px;border-radius:50%;position:absolute;top:50%;-webkit-transform:translateX(-15px) translateY(-50%);transform:translateX(-15px) translateY(-50%);content:'';background-color:#ff4d4f}.bRhe2QM\+y0 ._1UvuTUnvar:before{display:block;width:7px;height:7px;border-radius:50%;position:absolute;top:50%;-webkit-transform:translateX(-15px) translateY(-50%);transform:translateX(-15px) translateY(-50%);content:'';background-color:#f7b500}._5bYRGkIxCH{margin-bottom:18px}._5bYRGkIxCH>div{margin-bottom:12px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.yVNcBNeU9Z{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.b2QaZLzpGK{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.h-ofUe0fyT{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.h-ofUe0fyT>i,.h-ofUe0fyT>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.SHjplWGMOD{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._4EUHgziWVl{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.BGdjMKiAXr{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.VIJM5lbZlW{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.GkSiGdKuEy{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.Pv5KefZ-jQ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.EWMhYpQ2oC{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.EWMhYpQ2oC .UYliaJ\+a3g{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.EWMhYpQ2oC .UYliaJ\+a3g>span{color:rgba(0,0,0,0.65)}.aHssmPU02z{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.aHssmPU02z .xo6kyLRyna{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.aHssmPU02z .xo6kyLRyna>span{font-size:8px}.ckbKLvWfOt .ant-popover-inner-content{padding:0}.ckbKLvWfOt .ant-popover-arrow{border-color:#475365 !important}.ckbKLvWfOt .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.kaXGteIFLS{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.ih33LnquX9{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.ih33LnquX9 .Z1b3tWBZwF{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.pjpMGhSl1X{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.FmolP7-3ST{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.FmolP7-3ST{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.gx0een0v93{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.hJkGNIoW0F html,.hJkGNIoW0F body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.hJkGNIoW0F body,.hJkGNIoW0F div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.hJkGNIoW0F textarea{border:none !important;padding-left:0 !important}.hJkGNIoW0F table,.hJkGNIoW0F tr,.hJkGNIoW0F td{page-break-inside:avoid}.hJkGNIoW0F div{page-break-inside:avoid}.hJkGNIoW0F thead{display:table-header-group}.hJkGNIoW0F tfoot{display:table-footer-group}.hJkGNIoW0F *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.hJkGNIoW0F .yg2SqryS\+W,.hJkGNIoW0F .no-print,.hJkGNIoW0F .react-resizable-handle,.hJkGNIoW0F .fc-whiteboard-toolbar,.hJkGNIoW0F .ant-modal-root,.hJkGNIoW0F .ant-alert,.hJkGNIoW0F .CxiAVpV-P4,.hJkGNIoW0F .JoCuVMT3W7{display:none !important}.hJkGNIoW0F .pTh7b8DX6J{display:none !important}}.ejGadlxc1a{padding:10px 18px;border-radius:10px;background-color:#fff;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15)}.ejGadlxc1a .DsVEu\+NRA2{display:block;color:#3d455c;font-size:16px;padding:10px 0}.ejGadlxc1a .ant-table-body{border-radius:6px}.ejGadlxc1a .ant-table-thead>tr>th{font-size:12px;color:#9297a6;background-color:#f6f6fa;border-bottom:none}.ejGadlxc1a .ant-table-thead>tr>th:first-child{border-radius:8px 0 0 8px !important}.ejGadlxc1a .ant-table-thead>tr>th:last-child{border-radius:0 8px 8px 0 !important}.ejGadlxc1a .ant-table-placeholder{background-color:white !important}.cITy-nPPQs{height:320px}.cITy-nPPQs .WHaRJTZeXH>td>span{color:#d43624}.cITy-nPPQs .ant-table-tbody>tr>td{border-bottom:none;font-size:12px}.cITy-nPPQs .ant-table-tbody>tr:nth-child(odd){background-color:#f6f6fa}.cITy-nPPQs .ant-table-tbody>tr:nth-child(even){background-color:#fff}.IQEzTT2eB2{height:auto}.IQEzTT2eB2 .ant-table-tbody>tr>td{border-bottom:none;font-size:12px}.IQEzTT2eB2 .ant-table-tbody>tr:nth-child(even){background-color:#f6f6fa}.IQEzTT2eB2 .ant-table-tbody>tr:nth-child(odd){background-color:#fff}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.m4jf\+Xn4Ym{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.yvMiF4Vna1{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.tc8un6NEuD{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.tc8un6NEuD>i,.tc8un6NEuD>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.Y4baeBhivn{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.Mz4lgAJEF5{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.O0tGqScAYq{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.f1j8lXZ30H{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.zUaCNnVCqr{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.eqiKoE--6f{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.GiUQy8Naey{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.GiUQy8Naey .dggSPiIK8-{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.GiUQy8Naey .dggSPiIK8->span{color:rgba(0,0,0,0.65)}.ijh7kL4o\+h{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.ijh7kL4o\+h .nWxQQWppTQ{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.ijh7kL4o\+h .nWxQQWppTQ>span{font-size:8px}.qdVJM8dCLq .ant-popover-inner-content{padding:0}.qdVJM8dCLq .ant-popover-arrow{border-color:#475365 !important}.qdVJM8dCLq .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}._1Pfmei6qmm{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.j-iKQRJiZr{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.j-iKQRJiZr .ICn8wTiMyR{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}._954K1Ge2Qk{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.dBSgh1GhAG{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.dBSgh1GhAG{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.GTAuUJNCt0{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.jSXYtHIr\+P html,.jSXYtHIr\+P body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.jSXYtHIr\+P body,.jSXYtHIr\+P div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.jSXYtHIr\+P textarea{border:none !important;padding-left:0 !important}.jSXYtHIr\+P table,.jSXYtHIr\+P tr,.jSXYtHIr\+P td{page-break-inside:avoid}.jSXYtHIr\+P div{page-break-inside:avoid}.jSXYtHIr\+P thead{display:table-header-group}.jSXYtHIr\+P tfoot{display:table-footer-group}.jSXYtHIr\+P *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.jSXYtHIr\+P .vn2McKGy9A,.jSXYtHIr\+P .no-print,.jSXYtHIr\+P .react-resizable-handle,.jSXYtHIr\+P .fc-whiteboard-toolbar,.jSXYtHIr\+P .ant-modal-root,.jSXYtHIr\+P .ant-alert,.jSXYtHIr\+P .PFfgKDscog,.jSXYtHIr\+P .tp8Xuj38Y5{display:none !important}.jSXYtHIr\+P .DQtxjDahSF{display:none !important}}.OYETa0LwBT{color:#959595}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.pAKA-gxqnt{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.tNEwm1Q6WC{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.vPqfShwXI9{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.vPqfShwXI9>i,.vPqfShwXI9>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.P2QXtu0QJ7{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.wA8V2LtiYq{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.C9Y7Q-3wqe{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.zGFW7y7lzJ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}._6mOJlEjcuR{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._35m9gTQh\+f{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.XbNGKZBttX{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.XbNGKZBttX ._8PLt1Naz-B{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.XbNGKZBttX ._8PLt1Naz-B>span{color:rgba(0,0,0,0.65)}.YTbjkAd-AG{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.YTbjkAd-AG .QFo7HdunoB{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.YTbjkAd-AG .QFo7HdunoB>span{font-size:8px}.OBWhQcnJrH .ant-popover-inner-content{padding:0}.OBWhQcnJrH .ant-popover-arrow{border-color:#475365 !important}.OBWhQcnJrH .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.TnlYLw6ZQw{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.aBl2tfKASe{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.aBl2tfKASe .EIg94yMr7w{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.PjG\+kSI0qg{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.plrQclQe-l{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.plrQclQe-l{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.oxaUn7gY12{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.FcNkCutRAW html,.FcNkCutRAW body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.FcNkCutRAW body,.FcNkCutRAW div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.FcNkCutRAW textarea{border:none !important;padding-left:0 !important}.FcNkCutRAW table,.FcNkCutRAW tr,.FcNkCutRAW td{page-break-inside:avoid}.FcNkCutRAW div{page-break-inside:avoid}.FcNkCutRAW thead{display:table-header-group}.FcNkCutRAW tfoot{display:table-footer-group}.FcNkCutRAW *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.FcNkCutRAW .Jqv2EHHC37,.FcNkCutRAW .no-print,.FcNkCutRAW .react-resizable-handle,.FcNkCutRAW .fc-whiteboard-toolbar,.FcNkCutRAW .ant-modal-root,.FcNkCutRAW .ant-alert,.FcNkCutRAW .VAdKHdj499,.FcNkCutRAW .FjaTqP1\+7-{display:none !important}.FcNkCutRAW .rgfL9lt9xb{display:none !important}}.\+N0IA658jy{height:100%;padding:10px}.\+N0IA658jy .aEOKdRsszo{font-size:16px;font-weight:500;color:#3d455c}.\+N0IA658jy .spuHlm6A-n{border-radius:10px;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);background-color:#fff}.\+N0IA658jy .ZCaxHW8Cay>div:first-child{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.\+N0IA658jy .ZCaxHW8Cay>div:first-child .s1bhSG5lVp{border-radius:10px;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);background-color:#fff;-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out;-webkit-box-shadow:initial;box-shadow:initial;-webkit-box-flex:1;-ms-flex:1 1 1px;flex:1 1 1px;height:120px;padding:20px;position:relative}.\+N0IA658jy .ZCaxHW8Cay>div:first-child .s1bhSG5lVp .ulj2H1TqUc{font-size:22px;font-weight:400;text-align:center;color:#6874e2;cursor:pointer}.\+N0IA658jy .ZCaxHW8Cay>div:first-child .s1bhSG5lVp .PUJ7gQYeG-{color:#222;font-size:12px;margin-top:6px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.\+N0IA658jy .ZCaxHW8Cay>div:first-child .s1bhSG5lVp .pZs7g7oUAs{font-size:24;cursor:pointer;color:#4575ef;position:absolute;bottom:0;left:50%;border-radius:50%;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out;-webkit-transform:translate(-50%, 30%);transform:translate(-50%, 30%)}.\+N0IA658jy .ZCaxHW8Cay>div:first-child .oivnZfOxdd{-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out;-webkit-box-shadow:0 1px 2px -2px rgba(0,0,0,0.16),0 3px 6px 0 rgba(0,0,0,0.12),0 5px 12px 4px rgba(0,0,0,0.09);box-shadow:0 1px 2px -2px rgba(0,0,0,0.16),0 3px 6px 0 rgba(0,0,0,0.12),0 5px 12px 4px rgba(0,0,0,0.09);-webkit-transform:translateY(-7px);transform:translateY(-7px)}.\+N0IA658jy .ZCaxHW8Cay>div:first-child .oivnZfOxdd>.pZs7g7oUAs{-webkit-transform:translate(-50%, 30%) rotate(180deg);transform:translate(-50%, 30%) rotate(180deg)}.\+N0IA658jy .ZCaxHW8Cay>div:first-child .oivnZfOxdd:before{content:'';width:4px;height:75px;display:block;position:absolute;top:50%;left:0;-webkit-transform:translateY(-50%);transform:translateY(-50%);border-radius:0 10px 10px 0;background-color:#6874e2}.\+N0IA658jy .ZCaxHW8Cay>div:first-child .s1bhSG5lVp:not(:last-child){margin-right:20px}.\+N0IA658jy .ZCaxHW8Cay .Lu3vPWCk5\+{border-radius:10px;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);background-color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;background-color:initial;height:0;overflow:hidden;margin:18px 0 12px 0;padding:0 24px;-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.\+N0IA658jy .ZCaxHW8Cay .Lu3vPWCk5\+ .iARf1-58\+C{border-radius:10px;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);background-color:#fff;-webkit-box-shadow:initial;box-shadow:initial;border-radius:0;margin:0 12px;-webkit-box-flex:1;-ms-flex:1 1 1px;flex:1 1 1px;height:200px;padding:0 12px;max-width:500px}.\+N0IA658jy .ZCaxHW8Cay .Lu3vPWCk5\+ .iARf1-58\+C .VJRM0uGD\+v{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;height:50px}.\+N0IA658jy .ZCaxHW8Cay .Lu3vPWCk5\+ .iARf1-58\+C .VJRM0uGD\+v>div:first-child{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.\+N0IA658jy .ZCaxHW8Cay .Lu3vPWCk5\+ .iARf1-58\+C .VJRM0uGD\+v>span:last-child{font-size:12px}.\+N0IA658jy .ZCaxHW8Cay .Lu3vPWCk5\+ .iARf1-58\+C .\+7tv\+jvaIO{height:calc(100% - 90px);border-top:1px solid #f0f0f0;border-bottom:1px solid #f0f0f0;padding:4px 0}.\+N0IA658jy .ZCaxHW8Cay .Lu3vPWCk5\+ .iARf1-58\+C .\+7tv\+jvaIO .I0qiWR3bR6{min-height:25px;font-size:12px}.\+N0IA658jy .ZCaxHW8Cay .Lu3vPWCk5\+ .iARf1-58\+C .\+7tv\+jvaIO .NjhEwUUNjk{color:#8f97a9}.\+N0IA658jy .ZCaxHW8Cay .Lu3vPWCk5\+ .iARf1-58\+C .\+nwEGAjLpg{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;height:40px}.\+N0IA658jy .ZCaxHW8Cay .begYfg769D{height:400px}.\+N0IA658jy .zcQFRrQqcC{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:20px}.\+N0IA658jy .zcQFRrQqcC .Wxk67F8YF2{-webkit-box-flex:5;-ms-flex:5 1 1px;flex:5 1 1px;margin-right:20px;min-width:0px}.\+N0IA658jy .zcQFRrQqcC .nUwq4m36Yr{-webkit-box-flex:3;-ms-flex:3 1 1px;flex:3 1 1px}.\+N0IA658jy .zcQFRrQqcC .nUwq4m36Yr .h\+xDV9ilIg{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-flex:1;-ms-flex:1 1 1px;flex:1 1 1px;color:#fff;width:120px;height:45px;font-size:16px;border-radius:8px;background-color:#3d455c}.\+N0IA658jy .zcQFRrQqcC .nUwq4m36Yr .JNh7at259L{height:calc(100% - 65px);margin-top:16px;padding:25px 30px;border-radius:10px;background-color:#fff;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15)}.\+N0IA658jy .zcQFRrQqcC .nUwq4m36Yr .JNh7at259L .jDjCnj9c1u{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:50px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.\+N0IA658jy .zcQFRrQqcC .nUwq4m36Yr .JNh7at259L .jDjCnj9c1u>div{-webkit-box-flex:1;-ms-flex:1 1 1px;flex:1 1 1px}.\+N0IA658jy .zcQFRrQqcC .nUwq4m36Yr .JNh7at259L .jDjCnj9c1u>div:not(:last-child){border-right:1px solid #f1f0f5}.\+N0IA658jy .C9Y7Q-3wqe{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.YiaqYF4mYk{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.\+In7hylKEk{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}._2zt4fvMmyj{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}._2zt4fvMmyj>i,._2zt4fvMmyj>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.uGdAHDC9Je{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.NaCmVN\+Xqo{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.kCNbW7q5N1{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}._6XP73bvCa6{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.Tiq-Ndr\+FE{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._0qU3Fo\+FJv{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.LS0bXVnRCB{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.LS0bXVnRCB .QExj7IUS\+o{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.LS0bXVnRCB .QExj7IUS\+o>span{color:rgba(0,0,0,0.65)}.QraT5TkS9h{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.QraT5TkS9h .\+nVlt\+WbRU{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.QraT5TkS9h .\+nVlt\+WbRU>span{font-size:8px}.mIAYWnFa4h .ant-popover-inner-content{padding:0}.mIAYWnFa4h .ant-popover-arrow{border-color:#475365 !important}.mIAYWnFa4h .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}._71N8xd8GcQ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.V9iTQEBk8e{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.V9iTQEBk8e .uQk95AFKfy{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.HKZgna27Qd{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.K\+m2CPV25w{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.K\+m2CPV25w{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.hgXoTAxQfv{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.E2gwbv8bB9 html,.E2gwbv8bB9 body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.E2gwbv8bB9 body,.E2gwbv8bB9 div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.E2gwbv8bB9 textarea{border:none !important;padding-left:0 !important}.E2gwbv8bB9 table,.E2gwbv8bB9 tr,.E2gwbv8bB9 td{page-break-inside:avoid}.E2gwbv8bB9 div{page-break-inside:avoid}.E2gwbv8bB9 thead{display:table-header-group}.E2gwbv8bB9 tfoot{display:table-footer-group}.E2gwbv8bB9 *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.E2gwbv8bB9 .fLFbHe\+Vfh,.E2gwbv8bB9 .no-print,.E2gwbv8bB9 .react-resizable-handle,.E2gwbv8bB9 .fc-whiteboard-toolbar,.E2gwbv8bB9 .ant-modal-root,.E2gwbv8bB9 .ant-alert,.E2gwbv8bB9 .ArwX80eWy2,.E2gwbv8bB9 .hCB2DXG1Le{display:none !important}.E2gwbv8bB9 .P52pYRH2iz{display:none !important}}.bqMAcMlqxd{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.UHbpnZ5mYl{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.\--b3hDkPoE{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.rltPH9dfn1{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.rltPH9dfn1>i,.rltPH9dfn1>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.uOQU7o4TMu{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.Kt2PslJFZ\+{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.DbTEwCgpZD{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}._0VpdRCJcIP{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.AsPd-CZDyd{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.dO9cRAX8aT{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.HfCn61gK-\+{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.HfCn61gK-\+ .APQwjoGxFR{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.HfCn61gK-\+ .APQwjoGxFR>span{color:rgba(0,0,0,0.65)}.Py2FtKZc0Q{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.Py2FtKZc0Q .HQvv2NzlWD{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.Py2FtKZc0Q .HQvv2NzlWD>span{font-size:8px}.pm7feIM4v7 .ant-popover-inner-content{padding:0}.pm7feIM4v7 .ant-popover-arrow{border-color:#475365 !important}.pm7feIM4v7 .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.CueIIsSJNm{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.SOKNybW8qE{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.SOKNybW8qE .X3mfmLQDjG{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.ilCe7lRp8j{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.IMbb7UPsa4{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.IMbb7UPsa4{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}._74koOIOzrD{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.yJwWruZkD\+ html,.yJwWruZkD\+ body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.yJwWruZkD\+ body,.yJwWruZkD\+ div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.yJwWruZkD\+ textarea{border:none !important;padding-left:0 !important}.yJwWruZkD\+ table,.yJwWruZkD\+ tr,.yJwWruZkD\+ td{page-break-inside:avoid}.yJwWruZkD\+ div{page-break-inside:avoid}.yJwWruZkD\+ thead{display:table-header-group}.yJwWruZkD\+ tfoot{display:table-footer-group}.yJwWruZkD\+ *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.yJwWruZkD\+ .AGhaaF8fbk,.yJwWruZkD\+ .no-print,.yJwWruZkD\+ .react-resizable-handle,.yJwWruZkD\+ .fc-whiteboard-toolbar,.yJwWruZkD\+ .ant-modal-root,.yJwWruZkD\+ .ant-alert,.yJwWruZkD\+ .MMbZ0-wJE5,.yJwWruZkD\+ .uE0mmmVQWG{display:none !important}.yJwWruZkD\+ .uOql9VGUZ0{display:none !important}}._1KGYiwndDg{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;overflow:auto}._1KGYiwndDg .l4qZZWjrjF{border:1px solid #6874e2;color:#6874e2}._1KGYiwndDg .Zl\+8hvLftQ{background-color:#6874e2;border:1px solid #77838d;color:#fff;margin:24px 100px}
.j5x2dl--K7 .YiEh0qntuF{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:24px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.j5x2dl--K7 .YiEh0qntuF .kHAwmyZL\+2{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.j5x2dl--K7 .YiEh0qntuF .kHAwmyZL\+2>span{margin:0 4px;color:#6874e2}.j5x2dl--K7 .YiEh0qntuF .Dq3LtOHdq4{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.j5x2dl--K7 .YiEh0qntuF .CwCu\+RY25h{color:#fff;background-color:#6874e2;border:1px solid #0076cf}.j5x2dl--K7 .ant-table-row{cursor:pointer}.j5x2dl--K7 .gLZykLaHyX{color:rgba(0,0,0,0.5)}.j5x2dl--K7 .J4lZ6NKrQc{font-weight:700}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.Cdy1STgk\+d{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.RmpMd452sR{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.Gp\+AFomd2O{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.Gp\+AFomd2O>i,.Gp\+AFomd2O>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.VI4GeAdoDo{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.N34nYkLpRw{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.ZA1Jxe41nx{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.TCArT0xsBw{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.DZrPfCOgLh{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._2\+pgicA0tY{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.PcJ8Nq3pdF{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.PcJ8Nq3pdF .kdJ2KzxFDn{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.PcJ8Nq3pdF .kdJ2KzxFDn>span{color:rgba(0,0,0,0.65)}.V56bYxAwN7{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.V56bYxAwN7 .h3i3skXKrN{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.V56bYxAwN7 .h3i3skXKrN>span{font-size:8px}._9SlASFkKpP .ant-popover-inner-content{padding:0}._9SlASFkKpP .ant-popover-arrow{border-color:#475365 !important}._9SlASFkKpP .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.zPb8B3qDw7{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.F8JNHhaIy1{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.F8JNHhaIy1 .pEYFHfKevS{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.vbbhX42Pe6{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.wwZ6Ap6xeB{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.wwZ6Ap6xeB{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}._8ezT3kMty5{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{._8XRgnLgRj4 html,._8XRgnLgRj4 body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}._8XRgnLgRj4 body,._8XRgnLgRj4 div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}._8XRgnLgRj4 textarea{border:none !important;padding-left:0 !important}._8XRgnLgRj4 table,._8XRgnLgRj4 tr,._8XRgnLgRj4 td{page-break-inside:avoid}._8XRgnLgRj4 div{page-break-inside:avoid}._8XRgnLgRj4 thead{display:table-header-group}._8XRgnLgRj4 tfoot{display:table-footer-group}._8XRgnLgRj4 *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}._8XRgnLgRj4 .aBt5GaOodn,._8XRgnLgRj4 .no-print,._8XRgnLgRj4 .react-resizable-handle,._8XRgnLgRj4 .fc-whiteboard-toolbar,._8XRgnLgRj4 .ant-modal-root,._8XRgnLgRj4 .ant-alert,._8XRgnLgRj4 .xCNXhkrXmc,._8XRgnLgRj4 .OzdFPw9a9i{display:none !important}._8XRgnLgRj4 ._7RIGfoOFTc{display:none !important}}.ldhBpPafc0{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;overflow:auto;padding:0;padding:8px 24px}.ldhBpPafc0 .xjIcuwTPzC{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.ldhBpPafc0 .xjIcuwTPzC>span{margin:0 4px;color:#6874e2}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.Txv7IFHi\+W{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.T23oWEfS6g{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.uOn\+ENOg4R{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.uOn\+ENOg4R>i,.uOn\+ENOg4R>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.l1vnJZ0N-D{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.cPPLMxZ-GX{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.x043OJMMeo{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.NumGkv2yVQ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.O5QvVbJ-8t{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._3RDdPahjbd{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.K9c2ebOX\+M{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.K9c2ebOX\+M .pz1wYNsNN1{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.K9c2ebOX\+M .pz1wYNsNN1>span{color:rgba(0,0,0,0.65)}.kYgWxbwpM2{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.kYgWxbwpM2 .LKR\+ucPU5L{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.kYgWxbwpM2 .LKR\+ucPU5L>span{font-size:8px}.QntTDZ-Jbn .ant-popover-inner-content{padding:0}.QntTDZ-Jbn .ant-popover-arrow{border-color:#475365 !important}.QntTDZ-Jbn .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}._9i30hyyGHv{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.wjEuKQ2GyR{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.wjEuKQ2GyR ._4Ul5C\+yvZ4{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.YKqh0NufG3{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.M52lO6SSgu{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.M52lO6SSgu{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}._7mHG4hK\+to{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.S9ZKxFBY0z html,.S9ZKxFBY0z body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.S9ZKxFBY0z body,.S9ZKxFBY0z div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.S9ZKxFBY0z textarea{border:none !important;padding-left:0 !important}.S9ZKxFBY0z table,.S9ZKxFBY0z tr,.S9ZKxFBY0z td{page-break-inside:avoid}.S9ZKxFBY0z div{page-break-inside:avoid}.S9ZKxFBY0z thead{display:table-header-group}.S9ZKxFBY0z tfoot{display:table-footer-group}.S9ZKxFBY0z *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.S9ZKxFBY0z .ktzs87M1HG,.S9ZKxFBY0z .no-print,.S9ZKxFBY0z .react-resizable-handle,.S9ZKxFBY0z .fc-whiteboard-toolbar,.S9ZKxFBY0z .ant-modal-root,.S9ZKxFBY0z .ant-alert,.S9ZKxFBY0z .dRSJVLIzuw,.S9ZKxFBY0z .BnnfGE4i0x{display:none !important}.S9ZKxFBY0z .QjYFuiz2tU{display:none !important}}._620QQmJWhL{height:100%}._620QQmJWhL .d5bDYD94Rh{width:100vw;display:grid;overflow-x:hidden;overflow-y:auto;overflow:hidden auto;grid-template-columns:6fr 3fr;margin-bottom:12px;height:-webkit-fit-content;height:-moz-fit-content;height:fit-content}._620QQmJWhL .d5bDYD94Rh .HHQT-8sszD{font-size:16px;font-weight:500;color:#3d455c}._620QQmJWhL .d5bDYD94Rh .ZCZmlEK2ce{border-radius:10px;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);background-color:#fff}._620QQmJWhL .d5bDYD94Rh ._9TgcpfxAmr{height:-webkit-fit-content;height:-moz-fit-content;height:fit-content}._620QQmJWhL .d5bDYD94Rh ._9TgcpfxAmr>div:not(:last-child){margin-bottom:20px}._620QQmJWhL .d5bDYD94Rh ._9TgcpfxAmr .HHQT-8sszD{display:block;color:#3d455c;font-size:16px;padding:10px 20px}._620QQmJWhL .d5bDYD94Rh ._9TgcpfxAmr ._6MFdKhlFRQ{display:grid;grid-template-columns:repeat(3, 1fr);grid-gap:24px;cursor:pointer}._620QQmJWhL .d5bDYD94Rh ._9TgcpfxAmr ._6MFdKhlFRQ .cHnyYrhmfq{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;height:110px;border-radius:10px;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);background-color:#fff}._620QQmJWhL .d5bDYD94Rh ._9TgcpfxAmr ._6MFdKhlFRQ .cHnyYrhmfq>p{font-size:18px;font-weight:bold;color:#6874e2;margin-top:0}._620QQmJWhL .d5bDYD94Rh ._9TgcpfxAmr ._6MFdKhlFRQ .cHnyYrhmfq>div{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._620QQmJWhL .d5bDYD94Rh .kFcdpPpzbT{margin-left:20px}._620QQmJWhL .d5bDYD94Rh .kFcdpPpzbT .RfXCCzPtU8{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:9px}._620QQmJWhL .d5bDYD94Rh .kFcdpPpzbT .RfXCCzPtU8 .rFrZJpouj3{-webkit-box-flex:1;-ms-flex:1 1 1px;flex:1 1 1px;min-width:120px;height:36px;font-size:16px;color:#eff1f7;border-radius:6px;background-color:#3d455c;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}._620QQmJWhL .d5bDYD94Rh .kFcdpPpzbT .RfXCCzPtU8 .rFrZJpouj3:nth-child(2){margin:0 20px}._620QQmJWhL .d5bDYD94Rh .kFcdpPpzbT>div:last-child{border-radius:10px;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);background-color:#fff;padding:25px 30px;height:calc(100% - 45px)}._620QQmJWhL .d5bDYD94Rh .kFcdpPpzbT>div:last-child .F5xREIV1mB .T\+QmGl9Sgv{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:baseline;-ms-flex-align:baseline;align-items:baseline;padding:24px 0;font-size:40px;color:#101010}._620QQmJWhL .d5bDYD94Rh .kFcdpPpzbT>div:last-child .F5xREIV1mB .T\+QmGl9Sgv>span:first-child{font-size:18px;margin-right:4px}._620QQmJWhL .d5bDYD94Rh .kFcdpPpzbT>div:last-child .F5xREIV1mB>div:last-child{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding-bottom:24px;border-bottom:1px solid #f1f0f5}._620QQmJWhL .d5bDYD94Rh .kFcdpPpzbT>div:last-child .F5xREIV1mB .KDwgTPWowO{-webkit-box-flex:1;-ms-flex:1 1 1px;flex:1 1 1px}._620QQmJWhL .d5bDYD94Rh .kFcdpPpzbT>div:last-child .F5xREIV1mB .KDwgTPWowO:not(:last-child){border-right:1px solid #f1f0f5}._620QQmJWhL .d5bDYD94Rh .kFcdpPpzbT>div:last-child .R1KnvAGJU9{margin-top:24px;height:calc(100% - 320px)}._620QQmJWhL .d5bDYD94Rh .kFcdpPpzbT>div:last-child .R1KnvAGJU9 .isXSWKHnG1{height:420px;overflow-y:auto;margin:18px 0 0}._620QQmJWhL .d5bDYD94Rh .kFcdpPpzbT>div:last-child .R1KnvAGJU9 .isXSWKHnG1>div:not(:last-child){display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:8px 12px;margin-bottom:8px;border-radius:6px;color:rgba(0,0,0,0.85)}._620QQmJWhL .d5bDYD94Rh .kFcdpPpzbT>div:last-child .R1KnvAGJU9 .isXSWKHnG1>div:not(:last-child):nth-child(odd){background-color:#f6f6fa}._620QQmJWhL .rMisSZfdMB{text-align:center}._620QQmJWhL .rMisSZfdMB>div{font-size:30px;font-weight:500}._620QQmJWhL .rMisSZfdMB>span:first-child{display:block;font-size:12px;color:#9297a6}._620QQmJWhL .x043OJMMeo{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}._620QQmJWhL .l1vnJZ0N-D{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.krfGoGL7Wl{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.NVWzm7oUPw{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.EdYyUL1j-F{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.EdYyUL1j-F>i,.EdYyUL1j-F>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.TSK8vmq92w{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.cTTtfe\+A0q{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.fWrQducths{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.hccz32QNtp{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}._8PbZmWU39X{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.BpwL0QaYOw{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.IDZcGBVHqV{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.IDZcGBVHqV .dNYGGpqOOW{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.IDZcGBVHqV .dNYGGpqOOW>span{color:rgba(0,0,0,0.65)}.XTLJSC3LOB{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.XTLJSC3LOB .qoVfUu62Vu{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.XTLJSC3LOB .qoVfUu62Vu>span{font-size:8px}.ELHNgBYSbC .ant-popover-inner-content{padding:0}.ELHNgBYSbC .ant-popover-arrow{border-color:#475365 !important}.ELHNgBYSbC .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.C0zU5B1XiA{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.\+hiTF\+OR3e{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.\+hiTF\+OR3e ._6N9ePfj4Lc{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.jjy48aDkUl{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.Hf3T7iF\+B6{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.Hf3T7iF\+B6{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}._3osh76PEzs{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.cwn0LEkxSZ html,.cwn0LEkxSZ body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.cwn0LEkxSZ body,.cwn0LEkxSZ div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.cwn0LEkxSZ textarea{border:none !important;padding-left:0 !important}.cwn0LEkxSZ table,.cwn0LEkxSZ tr,.cwn0LEkxSZ td{page-break-inside:avoid}.cwn0LEkxSZ div{page-break-inside:avoid}.cwn0LEkxSZ thead{display:table-header-group}.cwn0LEkxSZ tfoot{display:table-footer-group}.cwn0LEkxSZ *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.cwn0LEkxSZ .PLusFxb7JV,.cwn0LEkxSZ .no-print,.cwn0LEkxSZ .react-resizable-handle,.cwn0LEkxSZ .fc-whiteboard-toolbar,.cwn0LEkxSZ .ant-modal-root,.cwn0LEkxSZ .ant-alert,.cwn0LEkxSZ .i2fp9p-qW9,.cwn0LEkxSZ .psT7GaX4dC{display:none !important}.cwn0LEkxSZ .n8S888dW9s{display:none !important}}._1eqDkxkAZ6 .Tcw2vdOtSk{display:-webkit-box;display:-ms-flexbox;display:flex}._1eqDkxkAZ6 .Tcw2vdOtSk .\+g8Em6ZhR4{height:45px;width:150px;margin-right:8px;color:#f5f5fa;cursor:pointer;line-height:48px;background-color:#5278d6;-webkit-transition:all .3s ease-in;transition:all .3s ease-in}._1eqDkxkAZ6 .Tcw2vdOtSk .\+g8Em6ZhR4>span:first-child{font-size:12px;margin:0 6px 0 20px}._1eqDkxkAZ6 .Tcw2vdOtSk .\+g8Em6ZhR4>span:last-child{font-size:24px;font-weight:500}._1eqDkxkAZ6 .Tcw2vdOtSk .\+dI9FFev0E{color:#222;position:relative;background-color:#fff}._1eqDkxkAZ6 .Tcw2vdOtSk .\+dI9FFev0E>span:last-child{color:#6874e2}._1eqDkxkAZ6 .Tcw2vdOtSk .\+dI9FFev0E:before{content:'';width:3px;height:28px;position:absolute;display:inline-block;background-color:#6874e2;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}._1eqDkxkAZ6 ._9-AwtjGiAz{height:130px;background-color:#fff;padding:12px;border-radius:0 8px 8px 8px;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15)}._1eqDkxkAZ6 ._9-AwtjGiAz .OS16TYC8oh{-webkit-box-flex:initial !important;-ms-flex:initial !important;flex:initial !important;min-width:45px !important;margin-right:50px !important}._1eqDkxkAZ6 ._9-AwtjGiAz .OS16TYC8oh{font-size:10px;text-align:center;border-radius:2px;display:inline-block}._1eqDkxkAZ6 ._9-AwtjGiAz .zfM9rADiSf{color:#7954fd !important}._1eqDkxkAZ6 ._9-AwtjGiAz .zfM9rADiSf{background-color:#e6e1fa}._1eqDkxkAZ6 ._9-AwtjGiAz .oTI6\+-1aSX{color:#9c933a !important}._1eqDkxkAZ6 ._9-AwtjGiAz .oTI6\+-1aSX{background-color:#fff8cb}._1eqDkxkAZ6 ._9-AwtjGiAz .Y2xUDLUsVv{color:#3d455c !important}._1eqDkxkAZ6 ._9-AwtjGiAz .Y2xUDLUsVv{background-color:#a9b3cf}._1eqDkxkAZ6 ._9-AwtjGiAz .aOn-U5SS1C{color:#3a7f9c !important}._1eqDkxkAZ6 ._9-AwtjGiAz .aOn-U5SS1C{background-color:#cbf0ff}._1eqDkxkAZ6 ._9-AwtjGiAz ._3aFsEIoRtx{color:#fa6f13 !important}._1eqDkxkAZ6 ._9-AwtjGiAz ._3aFsEIoRtx{background-color:#ffdcc5}._1eqDkxkAZ6 ._9-AwtjGiAz .sSRSaFEWhU{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:6px 15px}._1eqDkxkAZ6 ._9-AwtjGiAz .sSRSaFEWhU>span{-webkit-box-flex:1;-ms-flex:1 1 1px;flex:1 1 1px;color:#222;display:inline-block;min-width:140px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;margin-right:8px}
.M4r4BuPNzr{background-color:#fff}.M4r4BuPNzr .aGgR\+ZTKJy{width:100%;padding:2vh 3vh 4vh}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.gBdCftFqei{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.A0KPgyaRVz{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.vWLX3dc0EG{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.vWLX3dc0EG>i,.vWLX3dc0EG>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.EzzratTz2d{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.aHDExdT-cF{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.rNtnmwzfJX{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.iRw-FeZIlu{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.Xa534gqvJZ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.m9KhdnCGIs{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.oPdUcOUEqG{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.oPdUcOUEqG .lRvzhtAAbm{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.oPdUcOUEqG .lRvzhtAAbm>span{color:rgba(0,0,0,0.65)}.HYcyQL5vI3{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.HYcyQL5vI3 .zXMQoi4ZYn{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.HYcyQL5vI3 .zXMQoi4ZYn>span{font-size:8px}.eG1IPHOqOX .ant-popover-inner-content{padding:0}.eG1IPHOqOX .ant-popover-arrow{border-color:#475365 !important}.eG1IPHOqOX .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.VnxoVLf50R{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.GJaS\+EUIIY{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.GJaS\+EUIIY ._5mBI0nqFw4{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}._8QJYE5127h{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.VRuIQWzmE9{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.VRuIQWzmE9{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.GVDkWLZVXq{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.vJ9wMfOvjV html,.vJ9wMfOvjV body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.vJ9wMfOvjV body,.vJ9wMfOvjV div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.vJ9wMfOvjV textarea{border:none !important;padding-left:0 !important}.vJ9wMfOvjV table,.vJ9wMfOvjV tr,.vJ9wMfOvjV td{page-break-inside:avoid}.vJ9wMfOvjV div{page-break-inside:avoid}.vJ9wMfOvjV thead{display:table-header-group}.vJ9wMfOvjV tfoot{display:table-footer-group}.vJ9wMfOvjV *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.vJ9wMfOvjV .R6JWGgjPcQ,.vJ9wMfOvjV .no-print,.vJ9wMfOvjV .react-resizable-handle,.vJ9wMfOvjV .fc-whiteboard-toolbar,.vJ9wMfOvjV .ant-modal-root,.vJ9wMfOvjV .ant-alert,.vJ9wMfOvjV .uA3YbQxTTV,.vJ9wMfOvjV .tvBQAA9JWB{display:none !important}.vJ9wMfOvjV .V0ILZs9KWh{display:none !important}}.EfrdLukFrL{margin-right:10px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.C06sAQxKiI{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}._5vxJrjXcBB{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.GmXx6PEkDD{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.GmXx6PEkDD>i,.GmXx6PEkDD>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.NVkwApaj2u{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.m9LuFNEq6I{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}._4CJr5E\+VqO{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.KLthJH5HbK{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.H4onJFexoO{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.aZemo2Pvif{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.TWW3J3Z\+1H{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.TWW3J3Z\+1H .C9RDwr4ZOL{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.TWW3J3Z\+1H .C9RDwr4ZOL>span{color:rgba(0,0,0,0.65)}.LEAwSb1LR1{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.LEAwSb1LR1 .zeW\+-pOMaD{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.LEAwSb1LR1 .zeW\+-pOMaD>span{font-size:8px}.\+UrTXvVNFt .ant-popover-inner-content{padding:0}.\+UrTXvVNFt .ant-popover-arrow{border-color:#475365 !important}.\+UrTXvVNFt .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.NE9LDQKRIO{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}._0C-8aQZzef{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._0C-8aQZzef .A9v9CLO\+uy{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.Xz0RtyzRQs{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}._3d-vJpvNV0{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{._3d-vJpvNV0{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.wLzS4L6inp{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.HiOb5Qbene html,.HiOb5Qbene body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.HiOb5Qbene body,.HiOb5Qbene div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.HiOb5Qbene textarea{border:none !important;padding-left:0 !important}.HiOb5Qbene table,.HiOb5Qbene tr,.HiOb5Qbene td{page-break-inside:avoid}.HiOb5Qbene div{page-break-inside:avoid}.HiOb5Qbene thead{display:table-header-group}.HiOb5Qbene tfoot{display:table-footer-group}.HiOb5Qbene *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.HiOb5Qbene ._2iR8DYLuUS,.HiOb5Qbene .no-print,.HiOb5Qbene .react-resizable-handle,.HiOb5Qbene .fc-whiteboard-toolbar,.HiOb5Qbene .ant-modal-root,.HiOb5Qbene .ant-alert,.HiOb5Qbene .pS53N7DcxG,.HiOb5Qbene .dxbv2cUpxh{display:none !important}.HiOb5Qbene .zDudvk8p7n{display:none !important}}.paNfb715F4{position:relative;margin-top:5px}.paNfb715F4:hover .zGWjhGzVk8{visibility:visible;max-height:250px;overflow-y:scroll}.paNfb715F4 .e18GZsQnk1{color:#1677ff;cursor:pointer}.paNfb715F4 .zGWjhGzVk8{visibility:hidden;position:absolute;z-index:999;width:260px;right:0;padding-top:5px;background:white;-webkit-box-shadow:0 2px 3px #bfbfbf;box-shadow:0 2px 3px #bfbfbf}.paNfb715F4 .zGWjhGzVk8 .Iz75HYR-Sq .AQPwsTfPdO{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-bottom:1px solid #f0f0f0;padding-left:10px}.paNfb715F4 .zGWjhGzVk8 .Iz75HYR-Sq .AQPwsTfPdO .YoS8Qfz3X-{margin-right:5px}.paNfb715F4 .zGWjhGzVk8 .Iz75HYR-Sq .AQPwsTfPdO .tHUVMRmrQG{color:#1677ff}.paNfb715F4 .zGWjhGzVk8 .Iz75HYR-Sq .AQPwsTfPdO ._8Exi1pC98p{color:#ff4d4f}.paNfb715F4 .zGWjhGzVk8 .Iz75HYR-Sq .AQPwsTfPdO .FIkRL8LAxk{color:#13d369}.paNfb715F4 .zGWjhGzVk8 .Iz75HYR-Sq .AQPwsTfPdO .FNRo-2z72Z{color:#999}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}._6apoS26OOi{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.s-9HfhKJTk{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.tGz1byta9r{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.tGz1byta9r>i,.tGz1byta9r>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.gVSnbsusRj{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.k2YApCi8f1{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.bFE0fCWdg7{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.d6rOOuYReq{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.OMK\+oSnOL7{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.PZzZoHDVpy{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.I\+kUIEe3Ow{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.I\+kUIEe3Ow .nonUagvCW\+{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.I\+kUIEe3Ow .nonUagvCW\+>span{color:rgba(0,0,0,0.65)}.hlylxiKm6i{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.hlylxiKm6i .bcN7vhzKPB{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.hlylxiKm6i .bcN7vhzKPB>span{font-size:8px}.PLswbpZ2dB .ant-popover-inner-content{padding:0}.PLswbpZ2dB .ant-popover-arrow{border-color:#475365 !important}.PLswbpZ2dB .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.Rn-csgNemU{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.RF3K8WYaNV{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.RF3K8WYaNV .acPux-H\+vZ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.gg2-ijhaot{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.UeOb\+HWD8b{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.UeOb\+HWD8b{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.vyBxrWVPLs{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.YHSi3hvOm4 html,.YHSi3hvOm4 body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.YHSi3hvOm4 body,.YHSi3hvOm4 div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.YHSi3hvOm4 textarea{border:none !important;padding-left:0 !important}.YHSi3hvOm4 table,.YHSi3hvOm4 tr,.YHSi3hvOm4 td{page-break-inside:avoid}.YHSi3hvOm4 div{page-break-inside:avoid}.YHSi3hvOm4 thead{display:table-header-group}.YHSi3hvOm4 tfoot{display:table-footer-group}.YHSi3hvOm4 *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.YHSi3hvOm4 .HJrAkCMbJ\+,.YHSi3hvOm4 .no-print,.YHSi3hvOm4 .react-resizable-handle,.YHSi3hvOm4 .fc-whiteboard-toolbar,.YHSi3hvOm4 .ant-modal-root,.YHSi3hvOm4 .ant-alert,.YHSi3hvOm4 .HsSu36czFx,.YHSi3hvOm4 .CCAvdbslJf{display:none !important}.YHSi3hvOm4 .RkuQdltYE0{display:none !important}}.evGp1ZlGlL{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.evGp1ZlGlL .Bui2hJKtn6{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex}
.s\+s0GV6Toj{position:relative}
.DkFKsJvQhB{position:relative}._72E6rgjZa8{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}
.XVtjRZFiGU{position:relative}
.tGh2QsfDN1{position:relative}.tGh2QsfDN1 .ant-timeline-item{padding-bottom:0 !important}.tGh2QsfDN1 .ant-space-item{display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important;-webkit-box-align:center !important;-ms-flex-align:center !important;align-items:center !important}.tGh2QsfDN1 .ant-tooltip{max-width:500px !important}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.m1YCe0Xgh\+{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.djdu8O\+1F0{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.lSlMCVR-qO{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.lSlMCVR-qO>i,.lSlMCVR-qO>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.sjAWaXT1x6{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.G0ZhgiuRC3{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.YIy07xKJRC{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}._6f31iV4hCi{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.L1s7c-eZyE{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.pTab\+EhivM{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.JR-5zHEnZI{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.JR-5zHEnZI ._6bioqhoJCX{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.JR-5zHEnZI ._6bioqhoJCX>span{color:rgba(0,0,0,0.65)}.xbUlZJBwYH{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.xbUlZJBwYH .F0c8VAzf6M{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.xbUlZJBwYH .F0c8VAzf6M>span{font-size:8px}.Ixl0UctEjk .ant-popover-inner-content{padding:0}.Ixl0UctEjk .ant-popover-arrow{border-color:#475365 !important}.Ixl0UctEjk .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.WDJNt3TnLn{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}._0ZZFBAH9yK{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._0ZZFBAH9yK .TrcuJf3SzY{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.Cp0P3MB31f{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}._4HfJCV\+JT0{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{._4HfJCV\+JT0{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.baZbM0GwpW{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.iT\+q6R66TN html,.iT\+q6R66TN body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.iT\+q6R66TN body,.iT\+q6R66TN div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.iT\+q6R66TN textarea{border:none !important;padding-left:0 !important}.iT\+q6R66TN table,.iT\+q6R66TN tr,.iT\+q6R66TN td{page-break-inside:avoid}.iT\+q6R66TN div{page-break-inside:avoid}.iT\+q6R66TN thead{display:table-header-group}.iT\+q6R66TN tfoot{display:table-footer-group}.iT\+q6R66TN *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.iT\+q6R66TN ._4sFgEsA0UH,.iT\+q6R66TN .no-print,.iT\+q6R66TN .react-resizable-handle,.iT\+q6R66TN .fc-whiteboard-toolbar,.iT\+q6R66TN .ant-modal-root,.iT\+q6R66TN .ant-alert,.iT\+q6R66TN .u-Trb2jIGw,.iT\+q6R66TN .iqi0ndmauG{display:none !important}.iT\+q6R66TN .TZYBLqOS5z{display:none !important}}.Z1hNsJAv3h{padding-top:24px}.Z1hNsJAv3h .g\+fyEiMPe\+{width:560;margin-top:32px}.Z1hNsJAv3h .g\+fyEiMPe\+ .saSmaPXJEu{display:-webkit-box;display:-ms-flexbox;display:flex}.Z1hNsJAv3h .g\+fyEiMPe\+ .saSmaPXJEu>div:first-child{min-width:100px}.Z1hNsJAv3h .qTt0rZSqGR{color:rgba(0,0,0,0.65)}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.WYyZRTyjwT{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.WYXY-6IiTj{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.jyZvSaxGqj{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.jyZvSaxGqj>i,.jyZvSaxGqj>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.OeTx8Aluco{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.PTWQ0HR03j{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.Vd71w8CEuN{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}._3exlOVMOuX{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.NiX3h4\+sKG{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.MrD8Co963H{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.jCugQym51U{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.jCugQym51U .ZnIkeFfRKK{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.jCugQym51U .ZnIkeFfRKK>span{color:rgba(0,0,0,0.65)}.afe-98BQCm{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.afe-98BQCm .QjcE0-OvmI{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.afe-98BQCm .QjcE0-OvmI>span{font-size:8px}.ei5\+nhXfM3 .ant-popover-inner-content{padding:0}.ei5\+nhXfM3 .ant-popover-arrow{border-color:#475365 !important}.ei5\+nhXfM3 .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.ilxcwiPGbx{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.smEjbU0g1F{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.smEjbU0g1F .nsnv3QJUyV{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.EzigG\+Bo\+D{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.DZzJs\+gPB8{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.DZzJs\+gPB8{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.c4-vCsdk2u{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.TdpG8oEFy- html,.TdpG8oEFy- body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.TdpG8oEFy- body,.TdpG8oEFy- div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.TdpG8oEFy- textarea{border:none !important;padding-left:0 !important}.TdpG8oEFy- table,.TdpG8oEFy- tr,.TdpG8oEFy- td{page-break-inside:avoid}.TdpG8oEFy- div{page-break-inside:avoid}.TdpG8oEFy- thead{display:table-header-group}.TdpG8oEFy- tfoot{display:table-footer-group}.TdpG8oEFy- *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.TdpG8oEFy- .fR8PMAHfpT,.TdpG8oEFy- .no-print,.TdpG8oEFy- .react-resizable-handle,.TdpG8oEFy- .fc-whiteboard-toolbar,.TdpG8oEFy- .ant-modal-root,.TdpG8oEFy- .ant-alert,.TdpG8oEFy- .nv9xni4Jqh,.TdpG8oEFy- ._32gJbjiFQ7{display:none !important}.TdpG8oEFy- .DD7f3sb1d9{display:none !important}}._0UJgLNcrx4{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;padding:24px;padding-top:0}._0UJgLNcrx4 .ant-descriptions-item-label{-webkit-box-align:center;-ms-flex-align:center;align-items:center}._0UJgLNcrx4 .psjCmD4ZVN{width:100%;margin-top:24px}._0UJgLNcrx4 .psjCmD4ZVN .j2nKtXZRED{margin-top:12px}._0UJgLNcrx4 .psjCmD4ZVN .Mukb4FosAi{margin-top:12px;display:-webkit-box;display:-ms-flexbox;display:flex}._0UJgLNcrx4 .psjCmD4ZVN .Mukb4FosAi .HRuVBcEYeV{margin-right:24px;padding:12px;border:1px solid rgba(0,0,0,0.25)}._0UJgLNcrx4 .psjCmD4ZVN .Mukb4FosAi .HRuVBcEYeV div{max-width:240px;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-bottom:6px}._0UJgLNcrx4 .jCJl1u\+H7m{margin-top:24px}._0UJgLNcrx4 .r3TFbJDpv3{margin:24px 0 48px 0;width:100%}._0UJgLNcrx4 .r3TFbJDpv3 .CZ10aHly1E{padding:12 0;border-bottom:1px solid rgba(0,0,0,0.25)}._0UJgLNcrx4 .r3TFbJDpv3 .CZ10aHly1E .xZXmC4rLOt{margin-top:12px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}._0UJgLNcrx4 .r3TFbJDpv3 .CZ10aHly1E .xZXmC4rLOt .PQFDGgpg9Q{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}._0UJgLNcrx4 .r3TFbJDpv3 .CZ10aHly1E .xZXmC4rLOt .PQFDGgpg9Q input{width:50%;margin-left:12px}._0UJgLNcrx4 .r3TFbJDpv3 .CZ10aHly1E .xZXmC4rLOt .b5kFe55mj9{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}._0UJgLNcrx4 .r3TFbJDpv3 .CZ10aHly1E .xZXmC4rLOt .b5kFe55mj9 .yUjYMbMx34{width:200px}._0UJgLNcrx4 .r3TFbJDpv3 .CZ10aHly1E .RY\+l-EFSPn{margin-right:24px;color:#f93e3e;font-size:14px}._0UJgLNcrx4 .r3TFbJDpv3 .CZ10aHly1E .RY\+l-EFSPn div{margin-bottom:12px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.UV68sL95dm{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.aOxKV2vCzW{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}._26cBSQv5KQ{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}._26cBSQv5KQ>i,._26cBSQv5KQ>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.vW7uxyDIlG{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.oYG1RXPAXs{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.z53YJZAFah{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.RWb0uLsS-F{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}._1pFylewPDy{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.\+tUhEgoOKz{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.KOY9uTfvvF{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.KOY9uTfvvF .OnfI2MTiV1{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.KOY9uTfvvF .OnfI2MTiV1>span{color:rgba(0,0,0,0.65)}.iz5nbNtxwG{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.iz5nbNtxwG .\+VkDvheG-X{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.iz5nbNtxwG .\+VkDvheG-X>span{font-size:8px}.D8wiSxVZag .ant-popover-inner-content{padding:0}.D8wiSxVZag .ant-popover-arrow{border-color:#475365 !important}.D8wiSxVZag .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.ltJVN9QJ-F{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.GaztUCIya-{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.GaztUCIya- .PIw85IJbE3{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.o7vkjuY2Vd{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.EwIfwHkiNN{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.EwIfwHkiNN{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.SSnLlQV2tX{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.SQzoDDU3O6 html,.SQzoDDU3O6 body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.SQzoDDU3O6 body,.SQzoDDU3O6 div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.SQzoDDU3O6 textarea{border:none !important;padding-left:0 !important}.SQzoDDU3O6 table,.SQzoDDU3O6 tr,.SQzoDDU3O6 td{page-break-inside:avoid}.SQzoDDU3O6 div{page-break-inside:avoid}.SQzoDDU3O6 thead{display:table-header-group}.SQzoDDU3O6 tfoot{display:table-footer-group}.SQzoDDU3O6 *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.SQzoDDU3O6 .e62SCCCBEy,.SQzoDDU3O6 .no-print,.SQzoDDU3O6 .react-resizable-handle,.SQzoDDU3O6 .fc-whiteboard-toolbar,.SQzoDDU3O6 .ant-modal-root,.SQzoDDU3O6 .ant-alert,.SQzoDDU3O6 .yr4St6nuyx,.SQzoDDU3O6 .jEXKfncu3g{display:none !important}.SQzoDDU3O6 .uJ2erNEGLe{display:none !important}}.US3ZQMDSFo{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap;margin:24px 0;-ms-flex-wrap:nowrap;flex-wrap:nowrap;overflow-x:auto}.US3ZQMDSFo ._1bMhXiqljb{width:280px;min-width:280px;margin-left:24px}.US3ZQMDSFo .-jrIu\+I0KP{width:280px;min-width:280px;margin-left:24px;border:1px solid #6874e2}.US3ZQMDSFo ._5sMZ4tcuNa{width:280px;min-width:280px;margin-left:24px;border:1px solid #ff5f71}.US3ZQMDSFo ._9U19bnQCkl{width:280px;min-width:280px;margin-left:24px;border:1px dashed rgba(0,0,0,0.45)}.US3ZQMDSFo .pR4q18GMSs{position:absolute;height:12px;margin:24px 8px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.US3ZQMDSFo .WKXHhQzVQF{padding:16px 24px 24px 48px}.US3ZQMDSFo .ant-card-actions>li{margin:0}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.\+yMZ7AqMFO{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.OFf7G\+N9a2{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.CI2ocYUGbh{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.CI2ocYUGbh>i,.CI2ocYUGbh>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}._0TH5UZK5j7{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.RXzvAefI7m{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.TLN5Z4wa-l{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.AXtRZwAFnc{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.RjV-qZjbuz{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.PWcW1Ui0gG{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.v9NKgXdpt5{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.v9NKgXdpt5 ._6\+9Uay2zae{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.v9NKgXdpt5 ._6\+9Uay2zae>span{color:rgba(0,0,0,0.65)}.IBdu623rPE{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.IBdu623rPE .mWqEtxEOfZ{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.IBdu623rPE .mWqEtxEOfZ>span{font-size:8px}.ULiiH\+O\+xu .ant-popover-inner-content{padding:0}.ULiiH\+O\+xu .ant-popover-arrow{border-color:#475365 !important}.ULiiH\+O\+xu .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.NZrLsUAHyx{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.E5VWNMNnGp{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.E5VWNMNnGp .XW7UnGEt\+T{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.Zr\+uG8d-uS{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.G9ra-TtkkL{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.G9ra-TtkkL{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.poXdXnujJV{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.zhrXBMS6Nq html,.zhrXBMS6Nq body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.zhrXBMS6Nq body,.zhrXBMS6Nq div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.zhrXBMS6Nq textarea{border:none !important;padding-left:0 !important}.zhrXBMS6Nq table,.zhrXBMS6Nq tr,.zhrXBMS6Nq td{page-break-inside:avoid}.zhrXBMS6Nq div{page-break-inside:avoid}.zhrXBMS6Nq thead{display:table-header-group}.zhrXBMS6Nq tfoot{display:table-footer-group}.zhrXBMS6Nq *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.zhrXBMS6Nq ._2O5hJtqq2P,.zhrXBMS6Nq .no-print,.zhrXBMS6Nq .react-resizable-handle,.zhrXBMS6Nq .fc-whiteboard-toolbar,.zhrXBMS6Nq .ant-modal-root,.zhrXBMS6Nq .ant-alert,.zhrXBMS6Nq .ZOGNyv6nKy,.zhrXBMS6Nq .O3GIH5cXPS{display:none !important}.zhrXBMS6Nq .jjSkaseq3p{display:none !important}}.tPdsJXJQ65{background-color:#fff;width:100%}.tPdsJXJQ65 .dpb3p\+3S0u{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:24px}.tPdsJXJQ65 .dpb3p\+3S0u div:first-child{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.tPdsJXJQ65 .dpb3p\+3S0u div:first-child>span.TSTeiKsQec{color:#6874e2;font-size:20px;margin-left:15px}.tPdsJXJQ65 ._5r-Lzj7eZO{margin-top:24px}.tPdsJXJQ65 ._01mA3sxb7A{color:rgba(0,0,0,0.65)}.tPdsJXJQ65 .iTDqoN\+25O{cursor:pointer;-webkit-transition:all ease-in-out .3s;transition:all ease-in-out .3s}.tPdsJXJQ65 .ant-row{margin-bottom:8px}.tPdsJXJQ65 .ant-form-item{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:0}.tPdsJXJQ65 .ant-form-item-label>label{width:105px;padding-right:8px;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;color:rgba(0,0,0,0.65)}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}._6rBkgxiFeA{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}._4H8AVftkzU{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.WoWq6iq9af{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.WoWq6iq9af>i,.WoWq6iq9af>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}._07Dy5B-vln{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.iYge1Jb7l5{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.aonP2SPJ1N{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.jtCluityQ9{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.H20LQin4FZ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.S9mZVqwApc{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.sodFZF3i-i{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.sodFZF3i-i .GIPBVj3SS9{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.sodFZF3i-i .GIPBVj3SS9>span{color:rgba(0,0,0,0.65)}.uagl5srfMn{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.uagl5srfMn .KlhQe9DgZj{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.uagl5srfMn .KlhQe9DgZj>span{font-size:8px}.CYl5MKN3vM .ant-popover-inner-content{padding:0}.CYl5MKN3vM .ant-popover-arrow{border-color:#475365 !important}.CYl5MKN3vM .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.CTHoqZHqkF{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.LmghPSGa8L{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.LmghPSGa8L .V2Ot8NMg4L{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.DKir6Fb5Jc{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.LsGYa\+VaTc{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.LsGYa\+VaTc{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.mxTK\+dDAiO{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.XFfC51wb2D html,.XFfC51wb2D body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.XFfC51wb2D body,.XFfC51wb2D div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.XFfC51wb2D textarea{border:none !important;padding-left:0 !important}.XFfC51wb2D table,.XFfC51wb2D tr,.XFfC51wb2D td{page-break-inside:avoid}.XFfC51wb2D div{page-break-inside:avoid}.XFfC51wb2D thead{display:table-header-group}.XFfC51wb2D tfoot{display:table-footer-group}.XFfC51wb2D *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.XFfC51wb2D .DPz3gneEs\+,.XFfC51wb2D .no-print,.XFfC51wb2D .react-resizable-handle,.XFfC51wb2D .fc-whiteboard-toolbar,.XFfC51wb2D .ant-modal-root,.XFfC51wb2D .ant-alert,.XFfC51wb2D .F\+0\+TgThIn,.XFfC51wb2D ._6sFiDrF5Eb{display:none !important}.XFfC51wb2D .Ses1TwM-ug{display:none !important}}.owBcdMK9A0{display:grid;grid-gap:8px;margin-top:12px}.k39cQIddnr{position:inherit}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}._1QYXsKlUJe{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}._4F9fcDxRZI{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.nSa0Bb4\+04{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.nSa0Bb4\+04>i,.nSa0Bb4\+04>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.BGlusUWeqf{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.dzEOpJgwk2{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}._05h10mgNzz{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.DMZoqcsMxu{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.zmw7\+lCa4U{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.Vb6V5U7z8o{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.hEOGFA3F8G{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.hEOGFA3F8G .Pros0Ktfqy{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.hEOGFA3F8G .Pros0Ktfqy>span{color:rgba(0,0,0,0.65)}.jqL9yzh4J\+{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.jqL9yzh4J\+ .yTCDuMiCVI{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.jqL9yzh4J\+ .yTCDuMiCVI>span{font-size:8px}.w-sIWIV7JO .ant-popover-inner-content{padding:0}.w-sIWIV7JO .ant-popover-arrow{border-color:#475365 !important}.w-sIWIV7JO .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}._2X2KOYkxuR{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.SnkmM92j\+p{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.SnkmM92j\+p .Ad0QVMVngF{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.vDgtBZoLHE{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.WYtg7vXZXj{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.WYtg7vXZXj{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.\+71WKyongr{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{._0zdU8laVmh html,._0zdU8laVmh body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}._0zdU8laVmh body,._0zdU8laVmh div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}._0zdU8laVmh textarea{border:none !important;padding-left:0 !important}._0zdU8laVmh table,._0zdU8laVmh tr,._0zdU8laVmh td{page-break-inside:avoid}._0zdU8laVmh div{page-break-inside:avoid}._0zdU8laVmh thead{display:table-header-group}._0zdU8laVmh tfoot{display:table-footer-group}._0zdU8laVmh *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}._0zdU8laVmh .IUUd8Ap9Tj,._0zdU8laVmh .no-print,._0zdU8laVmh .react-resizable-handle,._0zdU8laVmh .fc-whiteboard-toolbar,._0zdU8laVmh .ant-modal-root,._0zdU8laVmh .ant-alert,._0zdU8laVmh .Mk0weG8UAb,._0zdU8laVmh .X6rLGeLWrh{display:none !important}._0zdU8laVmh .KOf55boF72{display:none !important}}.lIQaN8VBTQ{margin-bottom:40px;background-color:#fff}.lIQaN8VBTQ ._1RLDoZWe-1{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-bottom:24px}.lIQaN8VBTQ ._1RLDoZWe-1>span{color:#6874e2;font-size:20px;margin-left:15px}.lIQaN8VBTQ .DL863emPGz{margin-bottom:12px;color:rgba(0,0,0,0.65)}.lIQaN8VBTQ .DL863emPGz>span{display:inline-block}.lIQaN8VBTQ .QSpnoqpYcw{cursor:pointer;position:relative;border:1px solid;padding:8px;border-radius:4px;margin-bottom:4px}.lIQaN8VBTQ .QSpnoqpYcw>span:first-child{z-index:99;position:absolute;top:4px;left:4px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}._9LqQNps1vJ{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.qmlliS0NEm{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}._5\+3N5qfQ8Z{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}._5\+3N5qfQ8Z>i,._5\+3N5qfQ8Z>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}._3vqa0KsX3c{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.OfKxsGTjQy{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.c1Xw7qDpi4{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.\+3PUcmBeQp{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.UNd4bhqXYi{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.osiYGWGZND{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.C3vg4JkDAc{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.C3vg4JkDAc .dPpSBKZz4y{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.C3vg4JkDAc .dPpSBKZz4y>span{color:rgba(0,0,0,0.65)}.D01TZ9PJwV{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.D01TZ9PJwV .rsriZ2NiTn{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.D01TZ9PJwV .rsriZ2NiTn>span{font-size:8px}._2iw6eb8xbF .ant-popover-inner-content{padding:0}._2iw6eb8xbF .ant-popover-arrow{border-color:#475365 !important}._2iw6eb8xbF .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}._0nQ1JPiDfV{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.JrbdymSYU2{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.JrbdymSYU2 .zJ04fw4Pm-{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.HTa9dixLJO{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}._28wf9FTBGf{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{._28wf9FTBGf{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.WWlbudM84y{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.mFvE2nO-tK html,.mFvE2nO-tK body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.mFvE2nO-tK body,.mFvE2nO-tK div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.mFvE2nO-tK textarea{border:none !important;padding-left:0 !important}.mFvE2nO-tK table,.mFvE2nO-tK tr,.mFvE2nO-tK td{page-break-inside:avoid}.mFvE2nO-tK div{page-break-inside:avoid}.mFvE2nO-tK thead{display:table-header-group}.mFvE2nO-tK tfoot{display:table-footer-group}.mFvE2nO-tK *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.mFvE2nO-tK .CYeBs6\+27L,.mFvE2nO-tK .no-print,.mFvE2nO-tK .react-resizable-handle,.mFvE2nO-tK .fc-whiteboard-toolbar,.mFvE2nO-tK .ant-modal-root,.mFvE2nO-tK .ant-alert,.mFvE2nO-tK .TmfmTq-LIY,.mFvE2nO-tK ._34tosI\+u6t{display:none !important}.mFvE2nO-tK .yNBEO36Ao0{display:none !important}}.UycmOhSqHj{height:100%;overflow-x:visible;overflow-x:initial;overflow-y:auto}.UycmOhSqHj .SD9BortJPR{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-bottom:24px}.UycmOhSqHj .SD9BortJPR>span{color:#6874e2;font-size:20px;margin-left:15px}.UycmOhSqHj .XdJQl3UaRJ{border-radius:4px;background-color:#fff;padding:18px 32px;margin-bottom:24px;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15)}.UycmOhSqHj .IR-gaWlKce{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:absolute;bottom:0;width:100%;height:60px;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12);z-index:99}.UycmOhSqHj .IR-gaWlKce .rjwL76W3dN{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:18px;margin-right:18px;color:rgba(0,0,0,0.65)}.UycmOhSqHj .IR-gaWlKce .rjwL76W3dN span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap;color:#fa6400}.UycmOhSqHj .IR-gaWlKce .f-FFfDIAf7{color:#fff;margin:0 12px 0 36px;background-color:#6874e2}.UycmOhSqHj .IR-gaWlKce .tjB9d4FAsL{color:#6874e2;border:1px solid #6874e2}.UycmOhSqHj .j7NesOJbAw{color:#fff;background-color:#6874e2}.t7Rfd3CTBR{font-family:PingFangSC-Regular;font-size:14px;color:rgba(0,0,0,0.45);margin-left:16px}.opVH5i3Wrj{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:16px;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.opVH5i3Wrj .-pYAMoiFIs{margin-left:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}._7cV8WbUbuP{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.o5LQF3uatv{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}._91VNCrG1DP{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}._91VNCrG1DP>i,._91VNCrG1DP>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.gLm6jUxgTa{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.EL9D-a6WSJ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.G80X0D5Vjv{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.WaVDoyLP\+m{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.yJ7hmlHJmN{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.AosImAuD6X{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.JKNz8MzQT\+{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.JKNz8MzQT\+ .usrXjyd3B9{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.JKNz8MzQT\+ .usrXjyd3B9>span{color:rgba(0,0,0,0.65)}.QyQhPNaF9V{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.QyQhPNaF9V .EgEMwlSU6g{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.QyQhPNaF9V .EgEMwlSU6g>span{font-size:8px}.QSkFMry-lr .ant-popover-inner-content{padding:0}.QSkFMry-lr .ant-popover-arrow{border-color:#475365 !important}.QSkFMry-lr .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.IFAmCFOb7I{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.PfPCM6kNvg{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.PfPCM6kNvg .GT1M8E2DUo{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}._08MOHAlzeP{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.miNJqmydOO{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.miNJqmydOO{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.vJ\+xko2eCj{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.C6XX-6zFyY html,.C6XX-6zFyY body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.C6XX-6zFyY body,.C6XX-6zFyY div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.C6XX-6zFyY textarea{border:none !important;padding-left:0 !important}.C6XX-6zFyY table,.C6XX-6zFyY tr,.C6XX-6zFyY td{page-break-inside:avoid}.C6XX-6zFyY div{page-break-inside:avoid}.C6XX-6zFyY thead{display:table-header-group}.C6XX-6zFyY tfoot{display:table-footer-group}.C6XX-6zFyY *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.C6XX-6zFyY ._7-DKHQt2um,.C6XX-6zFyY .no-print,.C6XX-6zFyY .react-resizable-handle,.C6XX-6zFyY .fc-whiteboard-toolbar,.C6XX-6zFyY .ant-modal-root,.C6XX-6zFyY .ant-alert,.C6XX-6zFyY .SOUwN0qE6p,.C6XX-6zFyY .xuN7zmiMws{display:none !important}.C6XX-6zFyY .nNycrV1ogo{display:none !important}}.iUrokDsBRM{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;padding:24px}.iUrokDsBRM ._9nAbbnkar9{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:24px;color:rgba(0,0,0,0.65)}
.aEwapHSJmt{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.aEwapHSJmt .m7O4QoLO\+j{border:0;overflow:'hidden';border-radius:4px;margin-bottom:24px;background-color:#f7f7f7}.aEwapHSJmt .ant-tabs-tab-btn{width:auto !important;width:initial !important}.aEwapHSJmt .ant-collapse{border:0;background-color:#fff}.aEwapHSJmt .ant-collapse-item{border:0}.aEwapHSJmt .ant-collapse-content{border-top:0;padding-left:24px;background-color:#f7f7f7}.aEwapHSJmt .ant-checkbox-group-item{font-size:12px;color:rgba(0,0,0,0.5)}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.PW9Bn54FdB{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.x8qIT9YBmY{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.z1CPWDWaCF{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.z1CPWDWaCF>i,.z1CPWDWaCF>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.B16cpeNoy6{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.m7rsLQycw9{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.q1LV8JPkMM{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.DIIZMiAxHM{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.RD3dR2myvL{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.Z7Ox8jiQsy{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.MnUckzkQFP{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.MnUckzkQFP .VTJ8\+nej9E{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.MnUckzkQFP .VTJ8\+nej9E>span{color:rgba(0,0,0,0.65)}.iU\+jkZ7OUx{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.iU\+jkZ7OUx ._5tREh4L944{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.iU\+jkZ7OUx ._5tREh4L944>span{font-size:8px}.u9z0wHBBZF .ant-popover-inner-content{padding:0}.u9z0wHBBZF .ant-popover-arrow{border-color:#475365 !important}.u9z0wHBBZF .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}._1rS3zboKsT{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.hpNUIUXEu2{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.hpNUIUXEu2 .mbIQ2r9I5u{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.TRQyJ1-I68{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.hXn8D3ww57{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.hXn8D3ww57{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.Weo7bdfaBN{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{._27KJ4j60mO html,._27KJ4j60mO body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}._27KJ4j60mO body,._27KJ4j60mO div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}._27KJ4j60mO textarea{border:none !important;padding-left:0 !important}._27KJ4j60mO table,._27KJ4j60mO tr,._27KJ4j60mO td{page-break-inside:avoid}._27KJ4j60mO div{page-break-inside:avoid}._27KJ4j60mO thead{display:table-header-group}._27KJ4j60mO tfoot{display:table-footer-group}._27KJ4j60mO *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}._27KJ4j60mO ._1KAibmS0Vl,._27KJ4j60mO .no-print,._27KJ4j60mO .react-resizable-handle,._27KJ4j60mO .fc-whiteboard-toolbar,._27KJ4j60mO .ant-modal-root,._27KJ4j60mO .ant-alert,._27KJ4j60mO ._7YK3NHgIM4,._27KJ4j60mO ._3K12NFXIKM{display:none !important}._27KJ4j60mO .aF2eQiTqiG{display:none !important}}._6boEDibkqh{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;padding:24px}._6boEDibkqh ._0rhhYABKzm{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;width:220px;margin-bottom:12px}._6boEDibkqh .O3fig2N8Dy{padding:0}._6boEDibkqh .By30wIj\+mG{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}._6boEDibkqh .By30wIj\+mG .ndLJV7xSEL{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}._6boEDibkqh>.ant-tabs>.ant-tabs-nav{height:calc(100vh - 100px);overflow:auto}._6boEDibkqh .anticon{margin:0 4px}._6boEDibkqh .ant-tabs-tab-btn{width:220px}
.n9AU\+1tXNv{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;height:100%}.n9AU\+1tXNv .IIKZ3T2flz{width:100%;margin-top:32px;background-color:#fff;padding:16px;padding-top:0}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.thyFeXsjhM{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.C1kDGCAFOU{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.e2bRl179wX{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.e2bRl179wX>i,.e2bRl179wX>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}._99INJTQNQE{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.Dp8AwLT61o{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.O-PHj1xafw{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.OQqQ3cpcGc{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.HkbCTzPW-M{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.-DAz0SLMwQ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._3mIiZ82T75{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}._3mIiZ82T75 .PYHU7L3AQD{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}._3mIiZ82T75 .PYHU7L3AQD>span{color:rgba(0,0,0,0.65)}.\+\+SwCdfZXc{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.\+\+SwCdfZXc .tM3cFWVjby{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.\+\+SwCdfZXc .tM3cFWVjby>span{font-size:8px}.y8-fw5rl7j .ant-popover-inner-content{padding:0}.y8-fw5rl7j .ant-popover-arrow{border-color:#475365 !important}.y8-fw5rl7j .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.KqChxZO6JA{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.iYzBGleaU4{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.iYzBGleaU4 .\+cZedcridz{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.LEcjgTXg0n{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}._42\+\+U6Maae{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{._42\+\+U6Maae{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.PJ00Hfkbfk{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.hzKASMEtrK html,.hzKASMEtrK body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.hzKASMEtrK body,.hzKASMEtrK div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.hzKASMEtrK textarea{border:none !important;padding-left:0 !important}.hzKASMEtrK table,.hzKASMEtrK tr,.hzKASMEtrK td{page-break-inside:avoid}.hzKASMEtrK div{page-break-inside:avoid}.hzKASMEtrK thead{display:table-header-group}.hzKASMEtrK tfoot{display:table-footer-group}.hzKASMEtrK *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.hzKASMEtrK ._1EjKk5JWTZ,.hzKASMEtrK .no-print,.hzKASMEtrK .react-resizable-handle,.hzKASMEtrK .fc-whiteboard-toolbar,.hzKASMEtrK .ant-modal-root,.hzKASMEtrK .ant-alert,.hzKASMEtrK ._36sIO6SOh7,.hzKASMEtrK .H0g\+9zkaKa{display:none !important}.hzKASMEtrK ._3LVap2NTwk{display:none !important}}.KyJktDJe5L{height:200px;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.KyJktDJe5L .XdIlcGFjIO{-webkit-box-flex:1;-ms-flex:1 1 1px;flex:1 1 1px;height:220px;background-color:#fff;margin-right:20px}.KyJktDJe5L .XdIlcGFjIO:last-child{margin-right:0}.KyJktDJe5L .XdIlcGFjIO .VRFaj041bG{height:48px;font-size:16px;font-weight:bold;line-height:48px;color:#000;padding-left:32px;border-bottom:1px solid #e8e8e8}.KyJktDJe5L .XdIlcGFjIO .ccHZBSv\+0L .lJaASaFLZA{font-size:14px;color:rgba(0,0,0,0.45);margin:16px 0 8px 32px}.KyJktDJe5L .XdIlcGFjIO .ccHZBSv\+0L .aogOxgy0uw{width:100%;padding:0 32px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:baseline;-ms-flex-align:baseline;align-items:baseline}.KyJktDJe5L .XdIlcGFjIO .ccHZBSv\+0L .aogOxgy0uw ._8E9ITu2n-9{font-size:30px;color:#000}.KyJktDJe5L .XdIlcGFjIO .ccHZBSv\+0L .aogOxgy0uw .TT5fxyER0A{font-size:18px;color:#fc8a3d;margin-left:18px}.KyJktDJe5L .XdIlcGFjIO .ccHZBSv\+0L ._9EcEx5MCy7{height:18px;margin:16px 32px 8px 32px}.KyJktDJe5L .XdIlcGFjIO .ccHZBSv\+0L .r0bNTu5f1m{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;width:100%;font-size:12px;padding:0 32px;color:rgba(0,0,0,0.45)}.KyJktDJe5L .XdIlcGFjIO .ccHZBSv\+0L .OUVT9dha-e{width:100%;height:32px;font-size:12px;color:#000;margin-top:16px;margin-left:32px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.hIe5gVGsqp{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.IKkYQFcJDm{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.r\+NyEWjf41{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.r\+NyEWjf41>i,.r\+NyEWjf41>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.aDGx7rvpK8{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.u3N0thQhOR{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.CL6oJGySqN{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}._9HZSubICA-{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.H-HBIDgr6V{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.Qk\+TDIcuGt{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.fb3tPQVHV9{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.fb3tPQVHV9 .zHScXdvP3Q{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.fb3tPQVHV9 .zHScXdvP3Q>span{color:rgba(0,0,0,0.65)}.YSofdc6P6X{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.YSofdc6P6X ._730rcALlj0{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.YSofdc6P6X ._730rcALlj0>span{font-size:8px}.w6hQo6lhvG .ant-popover-inner-content{padding:0}.w6hQo6lhvG .ant-popover-arrow{border-color:#475365 !important}.w6hQo6lhvG .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.wGBbuObkHL{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.xqz0akWchr{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.xqz0akWchr .KAgOcK1tYZ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}._1yREDcCs3p{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.jGHByYNgfW{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.jGHByYNgfW{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.zgUXYcTLSU{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.KbdHGZnNod html,.KbdHGZnNod body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.KbdHGZnNod body,.KbdHGZnNod div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.KbdHGZnNod textarea{border:none !important;padding-left:0 !important}.KbdHGZnNod table,.KbdHGZnNod tr,.KbdHGZnNod td{page-break-inside:avoid}.KbdHGZnNod div{page-break-inside:avoid}.KbdHGZnNod thead{display:table-header-group}.KbdHGZnNod tfoot{display:table-footer-group}.KbdHGZnNod *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.KbdHGZnNod .z2cv7xf0zo,.KbdHGZnNod .no-print,.KbdHGZnNod .react-resizable-handle,.KbdHGZnNod .fc-whiteboard-toolbar,.KbdHGZnNod .ant-modal-root,.KbdHGZnNod .ant-alert,.KbdHGZnNod .GZcK0SJ1O2,.KbdHGZnNod ._9Hg9C\+Q1Xm{display:none !important}.KbdHGZnNod ._3PIIH\+6UMB{display:none !important}}._6WG6w5Ysja{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);padding-bottom:50px;position:relative}.yPIVzRcoVQ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;position:fixed;height:60px;bottom:0;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12);z-index:9;width:100vw;left:0;padding:0 10vw}
.ofI433Aq1O{position:relative}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.cRrQdwENYa{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.FesV-pO8ME{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.yl0u4Y70Kz{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.yl0u4Y70Kz>i,.yl0u4Y70Kz>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.EVj1YDQVtk{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.EUZcZTydJF{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}._7WCrmldeK9{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.JoqNQwOSJU{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.aIWdw2\+e\+D{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.Hexz5do\+Yk{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.OfhYgCWPdO{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.OfhYgCWPdO .wcvD4Xu6kZ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.OfhYgCWPdO .wcvD4Xu6kZ>span{color:rgba(0,0,0,0.65)}.PYp3SpFYRf{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.PYp3SpFYRf .gRgTABN\+bz{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.PYp3SpFYRf .gRgTABN\+bz>span{font-size:8px}.on69mgY0-5 .ant-popover-inner-content{padding:0}.on69mgY0-5 .ant-popover-arrow{border-color:#475365 !important}.on69mgY0-5 .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.uYgNSDIsi6{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.HREuEoemTg{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.HREuEoemTg .MrET9\+Poz0{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.fZIL4w04\+a{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.O4w0D-cz3A{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.O4w0D-cz3A{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.kQuHyoLpAA{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.XDLuBzkA\+a html,.XDLuBzkA\+a body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.XDLuBzkA\+a body,.XDLuBzkA\+a div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.XDLuBzkA\+a textarea{border:none !important;padding-left:0 !important}.XDLuBzkA\+a table,.XDLuBzkA\+a tr,.XDLuBzkA\+a td{page-break-inside:avoid}.XDLuBzkA\+a div{page-break-inside:avoid}.XDLuBzkA\+a thead{display:table-header-group}.XDLuBzkA\+a tfoot{display:table-footer-group}.XDLuBzkA\+a *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.XDLuBzkA\+a .rWtP\+pzVlT,.XDLuBzkA\+a .no-print,.XDLuBzkA\+a .react-resizable-handle,.XDLuBzkA\+a .fc-whiteboard-toolbar,.XDLuBzkA\+a .ant-modal-root,.XDLuBzkA\+a .ant-alert,.XDLuBzkA\+a .Ohmik6yi3L,.XDLuBzkA\+a .i5SvclGinT{display:none !important}.XDLuBzkA\+a .kKjqE0TSfM{display:none !important}}.CmB91KmCdl{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);padding-bottom:50px;position:relative}.CmB91KmCdl .ant-col{display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important}.CmB91KmCdl .ant-col{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.\+FRaz6Zf7G{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;position:fixed;height:60px;bottom:0;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12);z-index:9;width:100vw;left:0;padding:0 10vw;-webkit-box-sizing:border-box;box-sizing:border-box}.AuZSzA7VKi{border:1px solid #e9e9e9;margin-bottom:24px}.AuZSzA7VKi .KCAC4CYdRo{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:#fafafa;height:54px;padding:0 16px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.AuZSzA7VKi .ykVXn9L2Cm{padding:16px;width:100%}.AuZSzA7VKi .ykVXn9L2Cm .WOCbnYbZlj{padding:4px;border:1px solid #d8d8d8}.AuZSzA7VKi .ykVXn9L2Cm .ant-row{height:45px}.AuZSzA7VKi .ant-form-item{margin:0}.AuZSzA7VKi .ant-form-explain{font-size:12px}.AuZSzA7VKi .ant-upload-picture-card-wrapper{width:120px;margin-right:12px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.Z\+3qpWeHR-{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}._33ukSSsqf5{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.aF2XKIVQym{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.aF2XKIVQym>i,.aF2XKIVQym>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.cHFBQYkh4l{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.HxMYHJUbkR{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.eENubajznK{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.FcF1yPCfW4{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.adPPiVfPeF{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.\-4gk2YdZI5{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.yHhfVPvsR2{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.yHhfVPvsR2 .sH4NaLCMU0{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.yHhfVPvsR2 .sH4NaLCMU0>span{color:rgba(0,0,0,0.65)}.btQ1EtEgNC{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.btQ1EtEgNC ._1zkO0NTlJt{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.btQ1EtEgNC ._1zkO0NTlJt>span{font-size:8px}.UNUB0JvSnL .ant-popover-inner-content{padding:0}.UNUB0JvSnL .ant-popover-arrow{border-color:#475365 !important}.UNUB0JvSnL .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.ilvWUUxOJY{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}._9HRFrAtd4n{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._9HRFrAtd4n .nGmkHZGwfC{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.Z5K6dw-TU\+{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.fMdoRAZSiZ{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.fMdoRAZSiZ{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.BJ4UUi\+gST{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.hNgzXtTwRM html,.hNgzXtTwRM body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.hNgzXtTwRM body,.hNgzXtTwRM div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.hNgzXtTwRM textarea{border:none !important;padding-left:0 !important}.hNgzXtTwRM table,.hNgzXtTwRM tr,.hNgzXtTwRM td{page-break-inside:avoid}.hNgzXtTwRM div{page-break-inside:avoid}.hNgzXtTwRM thead{display:table-header-group}.hNgzXtTwRM tfoot{display:table-footer-group}.hNgzXtTwRM *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.hNgzXtTwRM ._0nzTh8qV-E,.hNgzXtTwRM .no-print,.hNgzXtTwRM .react-resizable-handle,.hNgzXtTwRM .fc-whiteboard-toolbar,.hNgzXtTwRM .ant-modal-root,.hNgzXtTwRM .ant-alert,.hNgzXtTwRM .CeEgOp18nc,.hNgzXtTwRM .LIf842IL0V{display:none !important}.hNgzXtTwRM .HCGg\+EpGVF{display:none !important}}.LzTkhVc7W9{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;padding:0 16px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.bUu00kz68l{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.tEwj-S\+Ti7{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.OC3gGlNSYG{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.OC3gGlNSYG>i,.OC3gGlNSYG>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.AlnxhG5ywe{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.Bj6J8X5c7z{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}._4P7PNuY9bK{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.DMJNCTxt0h{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.j4L1SUloX0{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.bEEtnpwRaG{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.MLv4f9nA50{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.MLv4f9nA50 .Xbl29rmUlD{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.MLv4f9nA50 .Xbl29rmUlD>span{color:rgba(0,0,0,0.65)}._69eFNmTvKj{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}._69eFNmTvKj .\+x3dchDzLF{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}._69eFNmTvKj .\+x3dchDzLF>span{font-size:8px}._0rKP0OlhoV .ant-popover-inner-content{padding:0}._0rKP0OlhoV .ant-popover-arrow{border-color:#475365 !important}._0rKP0OlhoV .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.kdkWK-4z9o{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.Mm\+C1QuSNP{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.Mm\+C1QuSNP .jJ0a0IQlV3{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.AfDgqGq\+bP{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}._8XBieOcKp9{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{._8XBieOcKp9{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.HwdMMAwpjR{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.YnCVi-iUOx html,.YnCVi-iUOx body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.YnCVi-iUOx body,.YnCVi-iUOx div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.YnCVi-iUOx textarea{border:none !important;padding-left:0 !important}.YnCVi-iUOx table,.YnCVi-iUOx tr,.YnCVi-iUOx td{page-break-inside:avoid}.YnCVi-iUOx div{page-break-inside:avoid}.YnCVi-iUOx thead{display:table-header-group}.YnCVi-iUOx tfoot{display:table-footer-group}.YnCVi-iUOx *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.YnCVi-iUOx .Rmvvu-Cpyi,.YnCVi-iUOx .no-print,.YnCVi-iUOx .react-resizable-handle,.YnCVi-iUOx .fc-whiteboard-toolbar,.YnCVi-iUOx .ant-modal-root,.YnCVi-iUOx .ant-alert,.YnCVi-iUOx .dgjLB\+d-\+x,.YnCVi-iUOx .jsccg0O-ga{display:none !important}.YnCVi-iUOx .FNdp482Xm7{display:none !important}}.EEloyBifkZ{margin-bottom:8px}.EEloyBifkZ .ant-btn{padding:0}.K1kfFAVtY7{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:16px;font-weight:bolder}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.XB9XrMEnIS{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.HpKmYcvqqj{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.ZudKrZrHaR{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.ZudKrZrHaR>i,.ZudKrZrHaR>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.tOzEniNOCx{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.atPs0FjP6Z{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.ryaUeAHCxK{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.IK3WxiBtrB{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.j79eoGVscL{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.vyBP74FSBt{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.cRojFgv9JO{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.cRojFgv9JO .wCKkmk8qPg{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.cRojFgv9JO .wCKkmk8qPg>span{color:rgba(0,0,0,0.65)}.G7eLTpjyy7{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.G7eLTpjyy7 .y1FZaF6MH1{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.G7eLTpjyy7 .y1FZaF6MH1>span{font-size:8px}.PXu61Baksg .ant-popover-inner-content{padding:0}.PXu61Baksg .ant-popover-arrow{border-color:#475365 !important}.PXu61Baksg .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.sz67DYyti5{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.dGSuibKr2D{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.dGSuibKr2D .z\+6ovIAKEx{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.wJlH7XF4Pk{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.P-FqtTjQUZ{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.P-FqtTjQUZ{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.ogW1KQk1yN{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.gufCivGW0E html,.gufCivGW0E body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.gufCivGW0E body,.gufCivGW0E div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.gufCivGW0E textarea{border:none !important;padding-left:0 !important}.gufCivGW0E table,.gufCivGW0E tr,.gufCivGW0E td{page-break-inside:avoid}.gufCivGW0E div{page-break-inside:avoid}.gufCivGW0E thead{display:table-header-group}.gufCivGW0E tfoot{display:table-footer-group}.gufCivGW0E *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.gufCivGW0E .m58f1UUbfa,.gufCivGW0E .no-print,.gufCivGW0E .react-resizable-handle,.gufCivGW0E .fc-whiteboard-toolbar,.gufCivGW0E .ant-modal-root,.gufCivGW0E .ant-alert,.gufCivGW0E ._4fJCOiWpc0,.gufCivGW0E .MUIiOKuJzl{display:none !important}.gufCivGW0E .RhGC\+BPuFK{display:none !important}}.-Wi4Leltcs{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;padding-bottom:60px;overflow:hidden}.-Wi4Leltcs .k0rrv750Yh{padding:12px;height:calc(100% - 60px);overflow:auto}.-Wi4Leltcs .ant-steps-icon{top:6px}.-Wi4Leltcs .d2dr5Yi-Dh{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:100%;position:absolute;height:60px;bottom:0;z-index:9;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}._8Lcn3p0jGr{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.NB7O3YBZhL{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.QzfaKKwUBb{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.QzfaKKwUBb>i,.QzfaKKwUBb>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.NY6Ug8oH4U{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._2bu\+G771Ht{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.BImVbLDnuH{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}._083nfChusa{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.Bs5XuzgVP9{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.\+p4DAZeQ1z{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.FE1xr9biOV{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.FE1xr9biOV .aBVGT8hxLW{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.FE1xr9biOV .aBVGT8hxLW>span{color:rgba(0,0,0,0.65)}.lTUY7Pp7tN{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.lTUY7Pp7tN ._6TntdT4YZQ{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.lTUY7Pp7tN ._6TntdT4YZQ>span{font-size:8px}.u9LsGVAc9K .ant-popover-inner-content{padding:0}.u9LsGVAc9K .ant-popover-arrow{border-color:#475365 !important}.u9LsGVAc9K .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.AWq0oZ8kuk{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.VVB6PGu0b9{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.VVB6PGu0b9 .k3NiAbdsP4{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}._0TexRA1TzV{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.jDVKgc8vbA{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.jDVKgc8vbA{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}._1F-JgHSTpA{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.HYUFIGm6l0 html,.HYUFIGm6l0 body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.HYUFIGm6l0 body,.HYUFIGm6l0 div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.HYUFIGm6l0 textarea{border:none !important;padding-left:0 !important}.HYUFIGm6l0 table,.HYUFIGm6l0 tr,.HYUFIGm6l0 td{page-break-inside:avoid}.HYUFIGm6l0 div{page-break-inside:avoid}.HYUFIGm6l0 thead{display:table-header-group}.HYUFIGm6l0 tfoot{display:table-footer-group}.HYUFIGm6l0 *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.HYUFIGm6l0 .xIPdK\+OKXh,.HYUFIGm6l0 .no-print,.HYUFIGm6l0 .react-resizable-handle,.HYUFIGm6l0 .fc-whiteboard-toolbar,.HYUFIGm6l0 .ant-modal-root,.HYUFIGm6l0 .ant-alert,.HYUFIGm6l0 .zeDyp2f-ID,.HYUFIGm6l0 .s4O5zOPXMy{display:none !important}.HYUFIGm6l0 .o61ezbeQCN{display:none !important}}.cQ2xmzJ8X-{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.iJRCtgHZz4{color:rgba(0,0,0,0.6);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;cursor:pointer}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.w---Q8-tHd{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.ZIf7scvb2p{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.DcCNg5zFiA{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.DcCNg5zFiA>i,.DcCNg5zFiA>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.d9eJjs-QaC{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.xfl2tRA66R{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.fIlmSEvHGe{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.W4DOwhnqz5{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.icUMeAYwQC{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.TqE4IwkIAG{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._3XruH0C5CT{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}._3XruH0C5CT .JK8iQZwwTJ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}._3XruH0C5CT .JK8iQZwwTJ>span{color:rgba(0,0,0,0.65)}.ffZcfkvm5p{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.ffZcfkvm5p .fgg-\+pFmWx{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.ffZcfkvm5p .fgg-\+pFmWx>span{font-size:8px}.E-CnqK1fmA .ant-popover-inner-content{padding:0}.E-CnqK1fmA .ant-popover-arrow{border-color:#475365 !important}.E-CnqK1fmA .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.tWe3IHMnUq{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.Dy-5Ysg61r{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.Dy-5Ysg61r .p\+N4qpQrad{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}._0Nc-FhCdpH{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.yksuneaKk3{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.yksuneaKk3{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.-Z6Pgs9p\+n{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.Y-8UQemyGO html,.Y-8UQemyGO body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.Y-8UQemyGO body,.Y-8UQemyGO div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.Y-8UQemyGO textarea{border:none !important;padding-left:0 !important}.Y-8UQemyGO table,.Y-8UQemyGO tr,.Y-8UQemyGO td{page-break-inside:avoid}.Y-8UQemyGO div{page-break-inside:avoid}.Y-8UQemyGO thead{display:table-header-group}.Y-8UQemyGO tfoot{display:table-footer-group}.Y-8UQemyGO *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.Y-8UQemyGO .lLb-6vlbpG,.Y-8UQemyGO .no-print,.Y-8UQemyGO .react-resizable-handle,.Y-8UQemyGO .fc-whiteboard-toolbar,.Y-8UQemyGO .ant-modal-root,.Y-8UQemyGO .ant-alert,.Y-8UQemyGO .uy8zgwk72M,.Y-8UQemyGO .Gt13x7BzXC{display:none !important}.Y-8UQemyGO .SeotbRq0YD{display:none !important}}.xRZW1x-nM0{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.fNxfcxvrva{color:rgba(0,0,0,0.6);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;cursor:pointer}.VcKLl\+kl\+D{padding:16px 24px}.VcKLl\+kl\+D .iMVyT7jK2G{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.EAvJq4H6JD{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.\+KTl8PsV78{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.gGnYsO97pK{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.gGnYsO97pK>i,.gGnYsO97pK>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.z1-A-zcHLQ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.g\+DrLwRgqr{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.YtBWCaNZgn{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.BZhXLs\+y3Y{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.Jn5ql39Yrh{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.S1UZcTwUFw{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.tg1vBrz5tT{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.tg1vBrz5tT .u9JJZKCQGf{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.tg1vBrz5tT .u9JJZKCQGf>span{color:rgba(0,0,0,0.65)}.ZMqM2IR6Zk{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.ZMqM2IR6Zk .V4RSKEHv7l{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.ZMqM2IR6Zk .V4RSKEHv7l>span{font-size:8px}.Amy\+kYQxSC .ant-popover-inner-content{padding:0}.Amy\+kYQxSC .ant-popover-arrow{border-color:#475365 !important}.Amy\+kYQxSC .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.At5JlY0wAu{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.pcyF7\+2DBw{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.pcyF7\+2DBw .CR0lzspRM3{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.HrVryP5a66{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.mM8OFy4znm{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.mM8OFy4znm{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.nlJTn3a\+0D{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.VT\+L\+irMwE html,.VT\+L\+irMwE body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.VT\+L\+irMwE body,.VT\+L\+irMwE div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.VT\+L\+irMwE textarea{border:none !important;padding-left:0 !important}.VT\+L\+irMwE table,.VT\+L\+irMwE tr,.VT\+L\+irMwE td{page-break-inside:avoid}.VT\+L\+irMwE div{page-break-inside:avoid}.VT\+L\+irMwE thead{display:table-header-group}.VT\+L\+irMwE tfoot{display:table-footer-group}.VT\+L\+irMwE *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.VT\+L\+irMwE .uj6CtFlcpF,.VT\+L\+irMwE .no-print,.VT\+L\+irMwE .react-resizable-handle,.VT\+L\+irMwE .fc-whiteboard-toolbar,.VT\+L\+irMwE .ant-modal-root,.VT\+L\+irMwE .ant-alert,.VT\+L\+irMwE .cFt38PNRVn,.VT\+L\+irMwE .daYkxNl1Oq{display:none !important}.VT\+L\+irMwE ._8gCcclH1qu{display:none !important}}.-LTF5OiLJ8{padding:0;width:100%;height:100%}.-LTF5OiLJ8 .-NsYiLUmEE{margin-bottom:16px;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15)}.-LTF5OiLJ8 .ant-tabs-nav{background-color:#fff;border-radius:0 0 3px 3px;-webkit-box-shadow:0 1px 4px rgba(0,21,41,0.08);box-shadow:0 1px 4px rgba(0,21,41,0.08)}.-LTF5OiLJ8 .ant-tabs-tab{padding:0}.-LTF5OiLJ8 .ant-tabs-tabpane{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;padding:24px;border-radius:4px;overflow:auto}.-LTF5OiLJ8 .ant-tabs-tab-btn{padding:12px 16px}._1p5Gz5aZhG{-webkit-transform:translateY(0) !important;transform:translateY(0) !important}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.c\+szeKAKoA{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}._2JfvJ-Fia\+{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.lqNB7W65LC{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.lqNB7W65LC>i,.lqNB7W65LC>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.oHn8HEJLwM{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.u3kuNex-o-{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}._3VIyiOg16q{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.eMPHTx3VnD{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}._5VpYeBBuR7{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.mggPd4RqYj{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.UG2D8GV1dv{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.UG2D8GV1dv .jPbcKLZxnw{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.UG2D8GV1dv .jPbcKLZxnw>span{color:rgba(0,0,0,0.65)}.Ehd6tj6bXP{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.Ehd6tj6bXP .ZUyTNrd2a8{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.Ehd6tj6bXP .ZUyTNrd2a8>span{font-size:8px}.t-ketf\+BTF .ant-popover-inner-content{padding:0}.t-ketf\+BTF .ant-popover-arrow{border-color:#475365 !important}.t-ketf\+BTF .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.QhmJ24bw-b{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.ZbHEp0uO6F{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.ZbHEp0uO6F .XOIEF5hm3L{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.OPcTbbnyUE{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.J9yQHzvnwr{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.J9yQHzvnwr{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.qFCCETuK6F{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.b5vj86wYQ7 html,.b5vj86wYQ7 body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.b5vj86wYQ7 body,.b5vj86wYQ7 div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.b5vj86wYQ7 textarea{border:none !important;padding-left:0 !important}.b5vj86wYQ7 table,.b5vj86wYQ7 tr,.b5vj86wYQ7 td{page-break-inside:avoid}.b5vj86wYQ7 div{page-break-inside:avoid}.b5vj86wYQ7 thead{display:table-header-group}.b5vj86wYQ7 tfoot{display:table-footer-group}.b5vj86wYQ7 *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.b5vj86wYQ7 .vaqt6JoSO1,.b5vj86wYQ7 .no-print,.b5vj86wYQ7 .react-resizable-handle,.b5vj86wYQ7 .fc-whiteboard-toolbar,.b5vj86wYQ7 .ant-modal-root,.b5vj86wYQ7 .ant-alert,.b5vj86wYQ7 ._1CWPnjC4Ci,.b5vj86wYQ7 .E7AtdctHzA{display:none !important}.b5vj86wYQ7 .\-7OPeZ29LF{display:none !important}}@media print{html,body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}body,div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}textarea{border:none !important;padding-left:0 !important}table,tr,td{page-break-inside:avoid}div{page-break-inside:avoid}thead{display:table-header-group}tfoot{display:table-footer-group}*{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.vaqt6JoSO1,.no-print,.react-resizable-handle,.fc-whiteboard-toolbar,.ant-modal-root,.ant-alert,._1CWPnjC4Ci,.E7AtdctHzA{display:none !important}.\-7OPeZ29LF{display:none !important}}.ZHCZIFTP3Z{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:space-evenly;-ms-flex-pack:space-evenly;justify-content:space-evenly;width:100vw;height:100vh}@media print{@page{size:auto}.ZHCZIFTP3Z .ant-input{background:none !important;border:none !important;font-size:18px !important;font-weight:bold !important}.ZHCZIFTP3Z .VE1HImnlr8{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-transform:translateX(15%);transform:translateX(15%)}}.lxaqDqYTmR{border:1px solid black;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;position:relative}.bQEGk6Ql8W{height:32px;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}
.u304gDQWaN{margin-bottom:24px;display:-webkit-box;display:-ms-flexbox;display:flex;overflow-x:auto}.u304gDQWaN .ant-steps-item-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}._3ZwLDLgz99{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}._38bJ6\+1Uv6{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.oj-EwG7LAW{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.oj-EwG7LAW>i,.oj-EwG7LAW>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.XENpz\+HoHJ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.FC0xduqfh0{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.WoRvB7PlLX{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.uNwjWwwT-o{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.-YKPu2DL14{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.R3KUlZL8xi{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.v6gXmaL0nr{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.v6gXmaL0nr .-Eoboi7P91{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.v6gXmaL0nr .-Eoboi7P91>span{color:rgba(0,0,0,0.65)}.EUtrAiZad3{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.EUtrAiZad3 .T\+D5gq7ang{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.EUtrAiZad3 .T\+D5gq7ang>span{font-size:8px}.GoLRcSgUZY .ant-popover-inner-content{padding:0}.GoLRcSgUZY .ant-popover-arrow{border-color:#475365 !important}.GoLRcSgUZY .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.EcbhE4ZhCj{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.EHMbOqz0tP{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.EHMbOqz0tP ._2ahArHmQkB{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.iuegtj7o7u{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}._253rcM5pBs{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{._253rcM5pBs{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.u3-qtmVJNn{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.vYXnvXJQSX html,.vYXnvXJQSX body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.vYXnvXJQSX body,.vYXnvXJQSX div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.vYXnvXJQSX textarea{border:none !important;padding-left:0 !important}.vYXnvXJQSX table,.vYXnvXJQSX tr,.vYXnvXJQSX td{page-break-inside:avoid}.vYXnvXJQSX div{page-break-inside:avoid}.vYXnvXJQSX thead{display:table-header-group}.vYXnvXJQSX tfoot{display:table-footer-group}.vYXnvXJQSX *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.vYXnvXJQSX .y2Qdw-jskO,.vYXnvXJQSX .no-print,.vYXnvXJQSX .react-resizable-handle,.vYXnvXJQSX .fc-whiteboard-toolbar,.vYXnvXJQSX .ant-modal-root,.vYXnvXJQSX .ant-alert,.vYXnvXJQSX .LYW--UcaW3,.vYXnvXJQSX .oeX8Opve4Z{display:none !important}.vYXnvXJQSX .CIU1EeFyC6{display:none !important}}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.AfmeAftLKA{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}._0MT6UfV\+RU{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.LoaXv2Aqe0{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.LoaXv2Aqe0>i,.LoaXv2Aqe0>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.zgfSceUSza{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.rB8gbnRDos{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}._7txewSUafG{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.IA2P-K6uPo{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.g5rx9g9ZcU{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.nkKZw\+-9ei{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.yhRSp-x67w{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.yhRSp-x67w .sBanP0cwZQ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.yhRSp-x67w .sBanP0cwZQ>span{color:rgba(0,0,0,0.65)}.c2eVD0IIe9{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.c2eVD0IIe9 .hEc\+lwJfA5{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.c2eVD0IIe9 .hEc\+lwJfA5>span{font-size:8px}.iIqsCmS4R0 .ant-popover-inner-content{padding:0}.iIqsCmS4R0 .ant-popover-arrow{border-color:#475365 !important}.iIqsCmS4R0 .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.ZCs9YIeyUn{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}._2vUW3HqAKG{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._2vUW3HqAKG .dpEznHSKpz{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.x7UDR-aRw5{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.wXFUKI9zgy{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.wXFUKI9zgy{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}._2HKfdzJtjT{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.A3cmXCVGup html,.A3cmXCVGup body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.A3cmXCVGup body,.A3cmXCVGup div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.A3cmXCVGup textarea{border:none !important;padding-left:0 !important}.A3cmXCVGup table,.A3cmXCVGup tr,.A3cmXCVGup td{page-break-inside:avoid}.A3cmXCVGup div{page-break-inside:avoid}.A3cmXCVGup thead{display:table-header-group}.A3cmXCVGup tfoot{display:table-footer-group}.A3cmXCVGup *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.A3cmXCVGup ._0YxY2tYYE6,.A3cmXCVGup .no-print,.A3cmXCVGup .react-resizable-handle,.A3cmXCVGup .fc-whiteboard-toolbar,.A3cmXCVGup .ant-modal-root,.A3cmXCVGup .ant-alert,.A3cmXCVGup ._9kY6XideZC,.A3cmXCVGup .lEbP7dLfL9{display:none !important}.A3cmXCVGup ._9DUbaqoMcp{display:none !important}}.a65qd9\+DHy .ant-steps-item-icon{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:#ffb100;border-color:transparent}.a65qd9\+DHy .ant-steps-item-icon .ant-steps-icon{color:#fff}.a65qd9\+DHy .EZ4\+sjB9M3{padding:5px 0}.a65qd9\+DHy .xGwmeo83i1{font-weight:500;color:#333}.a65qd9\+DHy .yY5Q2fYOIz{font-weight:500;color:#333;color:#d9d9d9}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.HOR8OffWGI{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}._5PgHr5Sm5f{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.pjBL7fEySw{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.pjBL7fEySw>i,.pjBL7fEySw>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.MmuwoTyHUZ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._0gZoFqvHKs{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.MJnqEFeNRj{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}._073HMmgn3s{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.tJm5vEPwtR{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.PfkdNtUqPm{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.xROXwlNi\+D{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.xROXwlNi\+D .R7I6jdc9LJ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.xROXwlNi\+D .R7I6jdc9LJ>span{color:rgba(0,0,0,0.65)}._1EF9Td0g7M{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}._1EF9Td0g7M .dFoIjSE0n4{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}._1EF9Td0g7M .dFoIjSE0n4>span{font-size:8px}.h90-p3Kszu .ant-popover-inner-content{padding:0}.h90-p3Kszu .ant-popover-arrow{border-color:#475365 !important}.h90-p3Kszu .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.FqbzGXt824{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.NinQQOCm75{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.NinQQOCm75 .RTIPxexVxt{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.\+2mEISiJbj{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.QFkycwjIYZ{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.QFkycwjIYZ{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.ekrFwzBMzi{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.X6P2BawWI2 html,.X6P2BawWI2 body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.X6P2BawWI2 body,.X6P2BawWI2 div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.X6P2BawWI2 textarea{border:none !important;padding-left:0 !important}.X6P2BawWI2 table,.X6P2BawWI2 tr,.X6P2BawWI2 td{page-break-inside:avoid}.X6P2BawWI2 div{page-break-inside:avoid}.X6P2BawWI2 thead{display:table-header-group}.X6P2BawWI2 tfoot{display:table-footer-group}.X6P2BawWI2 *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.X6P2BawWI2 ._8I3rTmbUGx,.X6P2BawWI2 .no-print,.X6P2BawWI2 .react-resizable-handle,.X6P2BawWI2 .fc-whiteboard-toolbar,.X6P2BawWI2 .ant-modal-root,.X6P2BawWI2 .ant-alert,.X6P2BawWI2 .RdlPjIYXlf,.X6P2BawWI2 .qqa1UM5Txr{display:none !important}.X6P2BawWI2 .nlP-7ac\+GL{display:none !important}}.oiFbhO7TWp{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.oiFbhO7TWp .FOTtsHLvL9{overflow:auto;padding:1rem 1.25rem;height:calc(100% - 120px)}.oiFbhO7TWp .FOTtsHLvL9 .gXUMQbCIQS{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-top:8px;margin-bottom:16px}.oiFbhO7TWp .lYhdeXaY3E{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-ms-flex-wrap:nowrap;flex-wrap:nowrap;position:absolute;bottom:0;height:60px;width:100%;overflow-x:auto;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.G4\+5CVt4bf{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.xM\+vvWcyTv{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.Fv4lcEtyQu{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.Fv4lcEtyQu>i,.Fv4lcEtyQu>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.SzyU2cmSOf{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.NOhHOUxpyp{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.fFWloaUDjZ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.G3aVfP46Jk{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.re3RK1qgwo{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.PXe8Wdh-V0{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.rgLQy3iAwt{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.rgLQy3iAwt .Jg9GAIaNxa{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.rgLQy3iAwt .Jg9GAIaNxa>span{color:rgba(0,0,0,0.65)}.sWu-rXe-Th{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.sWu-rXe-Th .g\+9jjRZWE0{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.sWu-rXe-Th .g\+9jjRZWE0>span{font-size:8px}.HVTIhWSZfV .ant-popover-inner-content{padding:0}.HVTIhWSZfV .ant-popover-arrow{border-color:#475365 !important}.HVTIhWSZfV .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.dlDT3hQKXx{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.fPwUexBF4f{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.fPwUexBF4f ._99LFxRFL8p{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.ojEU8eGhm0{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.gF1V7f4uwF{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.gF1V7f4uwF{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}._76e6-Zog-2{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.IcXJNiuIFp html,.IcXJNiuIFp body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.IcXJNiuIFp body,.IcXJNiuIFp div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.IcXJNiuIFp textarea{border:none !important;padding-left:0 !important}.IcXJNiuIFp table,.IcXJNiuIFp tr,.IcXJNiuIFp td{page-break-inside:avoid}.IcXJNiuIFp div{page-break-inside:avoid}.IcXJNiuIFp thead{display:table-header-group}.IcXJNiuIFp tfoot{display:table-footer-group}.IcXJNiuIFp *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.IcXJNiuIFp .jzNdyQURvO,.IcXJNiuIFp .no-print,.IcXJNiuIFp .react-resizable-handle,.IcXJNiuIFp .fc-whiteboard-toolbar,.IcXJNiuIFp .ant-modal-root,.IcXJNiuIFp .ant-alert,.IcXJNiuIFp .-VgNaFZbkt,.IcXJNiuIFp .WY4mvfzK4d{display:none !important}.IcXJNiuIFp .rL4j1Z9HI\+{display:none !important}}.shvNu2UTOJ{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.shvNu2UTOJ .-LEvUKJJab{padding:1rem 1.25rem;height:calc(100% - 120px);overflow:auto}.shvNu2UTOJ .-LEvUKJJab ._5D8gUrNM8S{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-top:8px}.shvNu2UTOJ .-LEvUKJJab .iWsXvv\+SI4{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.shvNu2UTOJ .OaxqhFo4Bx{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-ms-flex-wrap:nowrap;flex-wrap:nowrap;position:absolute;bottom:0;height:60px;width:100%;overflow-x:auto;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.MMjlLTM9TY{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.brSCy6suNh{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.Sv4Q5DsTh7{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.Sv4Q5DsTh7>i,.Sv4Q5DsTh7>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}._40twMEanxV{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.NJSL4AyaRA{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.MCBtHHz9dy{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.Br8eoKUakr{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.y95ISSBSGN{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.rwk4TNfc\+B{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._876sj1Uv1i{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}._876sj1Uv1i .jjyK8EZTmJ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}._876sj1Uv1i .jjyK8EZTmJ>span{color:rgba(0,0,0,0.65)}.WJSt2ycHwW{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.WJSt2ycHwW .omQ4QLqjXa{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.WJSt2ycHwW .omQ4QLqjXa>span{font-size:8px}.XLmUzyVec9 .ant-popover-inner-content{padding:0}.XLmUzyVec9 .ant-popover-arrow{border-color:#475365 !important}.XLmUzyVec9 .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}._4bBAkWOgGj{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.IJa32vHcVq{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.IJa32vHcVq .w\+OxcZbxu9{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.oxnBFH0bBo{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.Jdsc2VS9Gc{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.Jdsc2VS9Gc{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}._5xX\+unixlr{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{._7HLGdeiP9U html,._7HLGdeiP9U body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}._7HLGdeiP9U body,._7HLGdeiP9U div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}._7HLGdeiP9U textarea{border:none !important;padding-left:0 !important}._7HLGdeiP9U table,._7HLGdeiP9U tr,._7HLGdeiP9U td{page-break-inside:avoid}._7HLGdeiP9U div{page-break-inside:avoid}._7HLGdeiP9U thead{display:table-header-group}._7HLGdeiP9U tfoot{display:table-footer-group}._7HLGdeiP9U *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}._7HLGdeiP9U .YB0NCUVG7o,._7HLGdeiP9U .no-print,._7HLGdeiP9U .react-resizable-handle,._7HLGdeiP9U .fc-whiteboard-toolbar,._7HLGdeiP9U .ant-modal-root,._7HLGdeiP9U .ant-alert,._7HLGdeiP9U .GlLXEF3sXN,._7HLGdeiP9U .egohqRrlrl{display:none !important}._7HLGdeiP9U .QnXTxvGGyQ{display:none !important}}.YOlmI\+5Irj{position:relative}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.iCTamaDV7n{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}._7VqqCmHK7o{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.okM06ZQ8-w{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.okM06ZQ8-w>i,.okM06ZQ8-w>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.nAjdvXOp1m{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.F7hu5g5iVy{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}._5PpVoIzGP6{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.Pi1vwPxMWB{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.YW1qjtXZ8U{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.fBmt-3ACrn{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.W-7EArzr5Q{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.W-7EArzr5Q .Cs3JpA8S7K{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.W-7EArzr5Q .Cs3JpA8S7K>span{color:rgba(0,0,0,0.65)}.UTZb3EneJC{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.UTZb3EneJC .naNPpJinOB{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.UTZb3EneJC .naNPpJinOB>span{font-size:8px}.LpNLPK-NK2 .ant-popover-inner-content{padding:0}.LpNLPK-NK2 .ant-popover-arrow{border-color:#475365 !important}.LpNLPK-NK2 .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.Wl0SAz6KdP{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}._8un4zHFoIn{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._8un4zHFoIn .tJU786IGui{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.mi0lR5\+dTh{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.hMedsTchZm{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.hMedsTchZm{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.ndA1DIE1E\+{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.w4W5Er8OoM html,.w4W5Er8OoM body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.w4W5Er8OoM body,.w4W5Er8OoM div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.w4W5Er8OoM textarea{border:none !important;padding-left:0 !important}.w4W5Er8OoM table,.w4W5Er8OoM tr,.w4W5Er8OoM td{page-break-inside:avoid}.w4W5Er8OoM div{page-break-inside:avoid}.w4W5Er8OoM thead{display:table-header-group}.w4W5Er8OoM tfoot{display:table-footer-group}.w4W5Er8OoM *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.w4W5Er8OoM .a\+Fgig\+eDn,.w4W5Er8OoM .no-print,.w4W5Er8OoM .react-resizable-handle,.w4W5Er8OoM .fc-whiteboard-toolbar,.w4W5Er8OoM .ant-modal-root,.w4W5Er8OoM .ant-alert,.w4W5Er8OoM .DPAN3z9By4,.w4W5Er8OoM .Uh7OiNqqQw{display:none !important}.w4W5Er8OoM .eLJ5mJmerK{display:none !important}}.YhzT5t9q1H{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;overflow:auto;padding-bottom:48px}.YhzT5t9q1H .gsDK6YSOrS{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:#fafafa;padding:24px 0 24px 36px}.YhzT5t9q1H .gsDK6YSOrS .ant-descriptions-row>td{padding-bottom:0}.YhzT5t9q1H .gsDK6YSOrS .ao4EH7E3B9{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-left:32px}.YhzT5t9q1H .gsDK6YSOrS .ao4EH7E3B9 .Ket3iibpxX{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.YhzT5t9q1H .gsDK6YSOrS .ao4EH7E3B9 .Ket3iibpxX>p{font-size:16px;margin-right:24px;margin-bottom:0}.YhzT5t9q1H .gsDK6YSOrS .ao4EH7E3B9 .B7fSkj2QX0{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.YhzT5t9q1H .gsDK6YSOrS .ao4EH7E3B9 .ant-descriptions-item-content{font-size:18px}.YhzT5t9q1H .gsDK6YSOrS .NHJULwXvOM{border:1px solid #6874e2;color:#6874e2}.YhzT5t9q1H .gsDK6YSOrS ._1e-sPB1lDx{width:100px;height:100px;border-radius:50%;cursor:pointer;background-color:#fff;border:1px dashed #d9d9d9;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-transition:border .6s;transition:border .6s}.YhzT5t9q1H .gsDK6YSOrS ._1e-sPB1lDx>p{text-align:center;font-size:14px;margin-top:8px}.YhzT5t9q1H .gsDK6YSOrS ._1e-sPB1lDx:hover{-webkit-transition:border .6s;transition:border .6s;border:1px dashed #6874e2}.YhzT5t9q1H .\+UlufoIOBd{padding:16px 36px}.YhzT5t9q1H .\+UlufoIOBd .WCFF7M0-C9{display:-webkit-box;display:-ms-flexbox;display:flex;padding:6px 0;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:45px}.YhzT5t9q1H .\+UlufoIOBd .WCFF7M0-C9 .ni44wV0qOh{color:rgba(0,0,0,0.85);font-size:16px;width:130px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.YhzT5t9q1H .\+UlufoIOBd .WCFF7M0-C9 .DO9plbcm4a{margin:0 12px 0 6px;width:250px;color:rgba(0,0,0,0.45);font-size:16px;font-weight:200}.YhzT5t9q1H .\+UlufoIOBd .WCFF7M0-C9 .OVl\+\+2XulD{width:60px;height:27px;color:#6874e2;font-size:12px;border:1px solid #6874e2}.YhzT5t9q1H .\+UlufoIOBd .WCFF7M0-C9 ._9QQS7jH91X{width:60px;height:27px;color:#fff;font-size:12px;border:1px solid #6874e2;background-color:#6874e2}.YhzT5t9q1H .\+UlufoIOBd .WCFF7M0-C9 .YR2mQjZvsW{margin:0 12px 0 6px;color:rgba(0,0,0,0.45);font-size:16px;font-weight:200}.YhzT5t9q1H .zLyNI79Q7r{margin:16px 40px 48px}
._27nR3xwGkE .ant-checkbox-wrapper{width:250px;font-size:12px;margin:0 12px 12px 0;color:rgba(0,0,0,0.65)}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.A91ZTEM6kZ{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.SuC8AxUBHw{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.CmbUMJK-hs{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.CmbUMJK-hs>i,.CmbUMJK-hs>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.k1cg21EeeF{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.jhpB8A4QhY{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.a3HUh-5VrN{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.J4nbHB3s\+R{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.xcANYY5IfH{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.orQ8eTr8hg{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._5q1uZE7jRr{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}._5q1uZE7jRr .lCQm3H9w7C{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}._5q1uZE7jRr .lCQm3H9w7C>span{color:rgba(0,0,0,0.65)}.qJlX2xJPHL{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.qJlX2xJPHL ._6fa1C\+rOfC{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.qJlX2xJPHL ._6fa1C\+rOfC>span{font-size:8px}.enxM4esfTg .ant-popover-inner-content{padding:0}.enxM4esfTg .ant-popover-arrow{border-color:#475365 !important}.enxM4esfTg .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}._0LAzS8XKu2{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.uZr1Bx7pzc{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.uZr1Bx7pzc ._9OSclbvZAI{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.yVxFS4Bc9\+{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.KEaLds2ewT{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.KEaLds2ewT{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.vpb3EgeaUp{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.uAx1UFob6E html,.uAx1UFob6E body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.uAx1UFob6E body,.uAx1UFob6E div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.uAx1UFob6E textarea{border:none !important;padding-left:0 !important}.uAx1UFob6E table,.uAx1UFob6E tr,.uAx1UFob6E td{page-break-inside:avoid}.uAx1UFob6E div{page-break-inside:avoid}.uAx1UFob6E thead{display:table-header-group}.uAx1UFob6E tfoot{display:table-footer-group}.uAx1UFob6E *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.uAx1UFob6E ._4C\+D9xBYtA,.uAx1UFob6E .no-print,.uAx1UFob6E .react-resizable-handle,.uAx1UFob6E .fc-whiteboard-toolbar,.uAx1UFob6E .ant-modal-root,.uAx1UFob6E .ant-alert,.uAx1UFob6E .FIW9KHm4G6,.uAx1UFob6E .lNqMsVtpWr{display:none !important}.uAx1UFob6E .SYMiAUWzlu{display:none !important}}.o9-UwSfMnC{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;position:fixed;height:60px;bottom:0;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12);z-index:9;width:100vw;left:0;padding:0 10vw}._4-XZkYhbGI{border:1px solid #e9e9e9;margin-bottom:24px}._4-XZkYhbGI .MAgxUfIg4O{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:#fafafa;height:54px;padding:0 16px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}._4-XZkYhbGI .fjRULJoCbA{padding:16px;width:100%}._4-XZkYhbGI .fjRULJoCbA .V212X5c6Ey{padding:4px;border:1px solid #d8d8d8}._4-XZkYhbGI .fjRULJoCbA .ant-row{height:45px}._4-XZkYhbGI .ant-form-item{margin:0}._4-XZkYhbGI .ant-form-explain{font-size:12px}._4-XZkYhbGI .ant-upload-picture-card-wrapper{width:120px;margin-right:12px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}._3vCzanQvRt{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.HCam5eJtXy{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.GqqlfkjcUw{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.GqqlfkjcUw>i,.GqqlfkjcUw>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.cxN4EjMt2f{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.TfuBLNMGgr{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}._3UX-8nOnea{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.UWHScl3vYL{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.s6l7pD4IVg{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.gGnNU8IzwF{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.E\+8F2Pwuem{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.E\+8F2Pwuem .QAWz9QiNOd{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.E\+8F2Pwuem .QAWz9QiNOd>span{color:rgba(0,0,0,0.65)}.giZN5Z0gOR{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.giZN5Z0gOR .TZcnPmnyAh{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.giZN5Z0gOR .TZcnPmnyAh>span{font-size:8px}.pU9TnXsrtD .ant-popover-inner-content{padding:0}.pU9TnXsrtD .ant-popover-arrow{border-color:#475365 !important}.pU9TnXsrtD .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.kq5U41otV1{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.rXqQkQz5p\+{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.rXqQkQz5p\+ .iguC3EbWJy{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.RNOMYMFeKx{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}._8oE\+PL0cSu{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{._8oE\+PL0cSu{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.vzdzShXlEQ{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.KZH4viknc5 html,.KZH4viknc5 body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.KZH4viknc5 body,.KZH4viknc5 div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.KZH4viknc5 textarea{border:none !important;padding-left:0 !important}.KZH4viknc5 table,.KZH4viknc5 tr,.KZH4viknc5 td{page-break-inside:avoid}.KZH4viknc5 div{page-break-inside:avoid}.KZH4viknc5 thead{display:table-header-group}.KZH4viknc5 tfoot{display:table-footer-group}.KZH4viknc5 *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.KZH4viknc5 .BlE5G\+AcGV,.KZH4viknc5 .no-print,.KZH4viknc5 .react-resizable-handle,.KZH4viknc5 .fc-whiteboard-toolbar,.KZH4viknc5 .ant-modal-root,.KZH4viknc5 .ant-alert,.KZH4viknc5 .iBoD\+edTTl,.KZH4viknc5 .G664UhKRKY{display:none !important}.KZH4viknc5 ._1G-6Lpf9DU{display:none !important}}.Y3nlnZBEsf{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;position:fixed;height:60px;bottom:0;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12);z-index:9;width:100vw;left:0;padding:0 10vw}.x-OLrRi\+5x{border:1px solid #e9e9e9;margin-bottom:24px}.x-OLrRi\+5x .aFwLYn81sm{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:#fafafa;height:54px;padding:0 16px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.x-OLrRi\+5x ._2L2r0vY-3K{padding:16px;width:100%}.x-OLrRi\+5x ._2L2r0vY-3K .DOb8aGwk0y{padding:4px;border:1px solid #d8d8d8}.x-OLrRi\+5x ._2L2r0vY-3K .ant-row{height:45px}.x-OLrRi\+5x .ant-form-item{margin:0}.x-OLrRi\+5x .ant-form-explain{font-size:12px}.x-OLrRi\+5x .ant-upload-picture-card-wrapper{width:120px;margin-right:12px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.-I12lIPm-E{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.qigjS8C3YS{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.GhZdTHUW1k{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.GhZdTHUW1k>i,.GhZdTHUW1k>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}._5izEjuRiFm{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.FHestzxqRI{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.yBbG6P7KY3{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}._6SpU1jlP0A{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}._2NDbM4BWkZ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.gfhdCVxLqZ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.UG7-XF41kL{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.UG7-XF41kL .GvxoMSywiP{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.UG7-XF41kL .GvxoMSywiP>span{color:rgba(0,0,0,0.65)}.cOoIn6jrdJ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.cOoIn6jrdJ .lW8vTw-dX5{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.cOoIn6jrdJ .lW8vTw-dX5>span{font-size:8px}.X-y01LxdIm .ant-popover-inner-content{padding:0}.X-y01LxdIm .ant-popover-arrow{border-color:#475365 !important}.X-y01LxdIm .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}._63McpV1WKh{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.DC-AZhuTle{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.DC-AZhuTle ._4Se81qIHP0{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}._62t8B0bQuk{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.YIfdQTM5IM{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.YIfdQTM5IM{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.ECQvEAFJYf{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{._6Pj-vfdbYi html,._6Pj-vfdbYi body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}._6Pj-vfdbYi body,._6Pj-vfdbYi div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}._6Pj-vfdbYi textarea{border:none !important;padding-left:0 !important}._6Pj-vfdbYi table,._6Pj-vfdbYi tr,._6Pj-vfdbYi td{page-break-inside:avoid}._6Pj-vfdbYi div{page-break-inside:avoid}._6Pj-vfdbYi thead{display:table-header-group}._6Pj-vfdbYi tfoot{display:table-footer-group}._6Pj-vfdbYi *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}._6Pj-vfdbYi .CnrtV0aWp6,._6Pj-vfdbYi .no-print,._6Pj-vfdbYi .react-resizable-handle,._6Pj-vfdbYi .fc-whiteboard-toolbar,._6Pj-vfdbYi .ant-modal-root,._6Pj-vfdbYi .ant-alert,._6Pj-vfdbYi .qKFk3ca6Ct,._6Pj-vfdbYi .B5NgyHRHEz{display:none !important}._6Pj-vfdbYi ._8oOKDCb6wJ{display:none !important}}.LOlpGhkog2{position:relative;padding:24px 48px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.khNL28hCNu{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.o3EVRYCtH7{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.TNX4B3fNdV{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.TNX4B3fNdV>i,.TNX4B3fNdV>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.hM\+y5kdYV\+{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.u4JJiagV\+F{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.M\+prn9RewE{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.fTz6yO2CV6{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.JeM3yVBrGX{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.g-CZiXkHam{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._6siuJmvbDu{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}._6siuJmvbDu .OLmn1lmxBx{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}._6siuJmvbDu .OLmn1lmxBx>span{color:rgba(0,0,0,0.65)}.L6PXtywF2b{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.L6PXtywF2b ._0tLmHQbQvu{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.L6PXtywF2b ._0tLmHQbQvu>span{font-size:8px}.oDYX6M9wmd .ant-popover-inner-content{padding:0}.oDYX6M9wmd .ant-popover-arrow{border-color:#475365 !important}.oDYX6M9wmd .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.Hpre-eGFG-{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.KyvRpf1Hx-{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.KyvRpf1Hx- .pjgbZkUIp-{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}._6cFAXb0A9N{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.opAyHuqcAX{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.opAyHuqcAX{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.et\+E9PFIJe{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.OL\+N5L1Z3D html,.OL\+N5L1Z3D body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.OL\+N5L1Z3D body,.OL\+N5L1Z3D div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.OL\+N5L1Z3D textarea{border:none !important;padding-left:0 !important}.OL\+N5L1Z3D table,.OL\+N5L1Z3D tr,.OL\+N5L1Z3D td{page-break-inside:avoid}.OL\+N5L1Z3D div{page-break-inside:avoid}.OL\+N5L1Z3D thead{display:table-header-group}.OL\+N5L1Z3D tfoot{display:table-footer-group}.OL\+N5L1Z3D *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.OL\+N5L1Z3D .N797hyAP2g,.OL\+N5L1Z3D .no-print,.OL\+N5L1Z3D .react-resizable-handle,.OL\+N5L1Z3D .fc-whiteboard-toolbar,.OL\+N5L1Z3D .ant-modal-root,.OL\+N5L1Z3D .ant-alert,.OL\+N5L1Z3D .kkXS9fAoah,.OL\+N5L1Z3D .k51wOm6Vri{display:none !important}.OL\+N5L1Z3D .C\+0n8ebmYe{display:none !important}}.r6s64KmUaZ{-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15)}.r6s64KmUaZ .ant-card-head{height:40px;min-height:0;padding:0 8px;background-color:#fafafa}.r6s64KmUaZ .ant-card-head-title{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:0;height:40px;font-size:14px;color:rgba(0,0,0,0.65)}._814LsYtLpy{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch}._814LsYtLpy ._9pJzV8t2cT{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:distribute;justify-content:space-around;padding:24px;width:180px;border-left:1px solid #f0f0f0}._814LsYtLpy ._9pJzV8t2cT>span{display:block}.GAMMN-sBCd{padding:24px 0 24px 24px}.GAMMN-sBCd>div{margin-right:8px}.R95a6fL94c{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:absolute;opacity:0;bottom:0;right:0;left:0;-webkit-transition:opacity .3s ease-in;transition:opacity .3s ease-in}.ELCNW\+\+Cru{cursor:pointer;-webkit-transition:all .3s ease-in;transition:all .3s ease-in}.VYQNyrQSAY{opacity:1 !important}.X5aEy0dWTS{-webkit-transform:rotateX(180deg);transform:rotateX(180deg)}.n-na7WquoX{display:inline-block;width:25px;height:25px;color:#fff;text-align:center;line-height:25px;border-radius:50%;background-color:#e90;margin-right:12}.yDrKxYW2Xf{height:0;overflow:hidden;-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.okI7cZrm4O{height:auto;height:initial}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.PMWmpR7nvC{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.JdrX5ec6nP{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.MRNDv\+yNDp{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.MRNDv\+yNDp>i,.MRNDv\+yNDp>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.cBh2QCe\+2S{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.ikVn1ZZOKa{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.FiKJF1NjWF{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.caF71q1RXo{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.gp\+cKTFogz{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.snC6fPmf8b{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.ZlBOXrrF8h{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.ZlBOXrrF8h .emUj3U1rU3{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.ZlBOXrrF8h .emUj3U1rU3>span{color:rgba(0,0,0,0.65)}.bE2hVHJyYf{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.bE2hVHJyYf .Ky0gQf4l57{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.bE2hVHJyYf .Ky0gQf4l57>span{font-size:8px}.ed82TyrF87 .ant-popover-inner-content{padding:0}.ed82TyrF87 .ant-popover-arrow{border-color:#475365 !important}.ed82TyrF87 .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.iusVZvE0Ix{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.PO1\+ItYmpt{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.PO1\+ItYmpt ._566xnmX54r{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.PPDRsnZ0DW{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}._7wX11Yvt9K{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{._7wX11Yvt9K{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}._1M87MA8-bY{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.xgaEuMr3Rg html,.xgaEuMr3Rg body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.xgaEuMr3Rg body,.xgaEuMr3Rg div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.xgaEuMr3Rg textarea{border:none !important;padding-left:0 !important}.xgaEuMr3Rg table,.xgaEuMr3Rg tr,.xgaEuMr3Rg td{page-break-inside:avoid}.xgaEuMr3Rg div{page-break-inside:avoid}.xgaEuMr3Rg thead{display:table-header-group}.xgaEuMr3Rg tfoot{display:table-footer-group}.xgaEuMr3Rg *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.xgaEuMr3Rg .ZtNLw4QWqJ,.xgaEuMr3Rg .no-print,.xgaEuMr3Rg .react-resizable-handle,.xgaEuMr3Rg .fc-whiteboard-toolbar,.xgaEuMr3Rg .ant-modal-root,.xgaEuMr3Rg .ant-alert,.xgaEuMr3Rg ._6FpppdhqBq,.xgaEuMr3Rg .jmzvsbiEkm{display:none !important}.xgaEuMr3Rg .huYtkGbaYv{display:none !important}}.pxeiY7Mjpn{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.ZHTp5\+wUZo{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.cjL\+RYb93A{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.\-50axXeKhc{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.\-50axXeKhc>i,.\-50axXeKhc>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}._9KNS3ydV8w{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.jv0PBey6Lr{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.H4nzk3dUpb{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.URDYilP7gO{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.FGEAYwizoq{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.tPRwQdAJsM{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.ka7ODjFCxv{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.ka7ODjFCxv .gEQkqYMEI9{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.ka7ODjFCxv .gEQkqYMEI9>span{color:rgba(0,0,0,0.65)}.V-gqkGTWIb{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.V-gqkGTWIb .mugakb14gn{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.V-gqkGTWIb .mugakb14gn>span{font-size:8px}.ojUnWpTBHz .ant-popover-inner-content{padding:0}.ojUnWpTBHz .ant-popover-arrow{border-color:#475365 !important}.ojUnWpTBHz .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.nEugI6Wgqx{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.DRnYcVvdQb{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.DRnYcVvdQb .S\+fxCOCuVB{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}._1dgLHHQIv5{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.jsK\+pYLUbz{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.jsK\+pYLUbz{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.nnAgE3F4Nv{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.xKsYv53UkF html,.xKsYv53UkF body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.xKsYv53UkF body,.xKsYv53UkF div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.xKsYv53UkF textarea{border:none !important;padding-left:0 !important}.xKsYv53UkF table,.xKsYv53UkF tr,.xKsYv53UkF td{page-break-inside:avoid}.xKsYv53UkF div{page-break-inside:avoid}.xKsYv53UkF thead{display:table-header-group}.xKsYv53UkF tfoot{display:table-footer-group}.xKsYv53UkF *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.xKsYv53UkF ._4Q9PKJPhb-,.xKsYv53UkF .no-print,.xKsYv53UkF .react-resizable-handle,.xKsYv53UkF .fc-whiteboard-toolbar,.xKsYv53UkF .ant-modal-root,.xKsYv53UkF .ant-alert,.xKsYv53UkF .Qg5IZG6mbY,.xKsYv53UkF .cFrBDWNF-l{display:none !important}.xKsYv53UkF .hb1qirGl8d{display:none !important}}._1GW9moYEIQ{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}._1GW9moYEIQ .fmc-file-manager-container{padding:24px}._1GW9moYEIQ .sr8UVN0UK3{position:relative}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.Uk5s2d41gK{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.CcaacdlPcy{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.h3CsQNgnRc{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.h3CsQNgnRc>i,.h3CsQNgnRc>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.Xvz58mKLOC{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.y87KB5ey-6{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.lOdzGX0uUM{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.dHX2-Qfe5o{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}._1M-keWnvgS{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.xNeIxZTBaf{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.a9d1udhqzR{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.a9d1udhqzR .FTHoFrKBNx{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.a9d1udhqzR .FTHoFrKBNx>span{color:rgba(0,0,0,0.65)}.JdcRp7G-J9{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.JdcRp7G-J9 .j9f-vPnd4y{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.JdcRp7G-J9 .j9f-vPnd4y>span{font-size:8px}.M-IWkbGVyG .ant-popover-inner-content{padding:0}.M-IWkbGVyG .ant-popover-arrow{border-color:#475365 !important}.M-IWkbGVyG .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.pbgm2TwP8T{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.LB7z8hR49l{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.LB7z8hR49l .opBAIxJgeQ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}._7OedvAezWI{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.pMa6yXcLlu{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.pMa6yXcLlu{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.ClsBbBPFN\+{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.n8rBak1mt9 html,.n8rBak1mt9 body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.n8rBak1mt9 body,.n8rBak1mt9 div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.n8rBak1mt9 textarea{border:none !important;padding-left:0 !important}.n8rBak1mt9 table,.n8rBak1mt9 tr,.n8rBak1mt9 td{page-break-inside:avoid}.n8rBak1mt9 div{page-break-inside:avoid}.n8rBak1mt9 thead{display:table-header-group}.n8rBak1mt9 tfoot{display:table-footer-group}.n8rBak1mt9 *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.n8rBak1mt9 .zQNoIPyclN,.n8rBak1mt9 .no-print,.n8rBak1mt9 .react-resizable-handle,.n8rBak1mt9 .fc-whiteboard-toolbar,.n8rBak1mt9 .ant-modal-root,.n8rBak1mt9 .ant-alert,.n8rBak1mt9 ._81cGt-oJSE,.n8rBak1mt9 .aP1NnJjgbT{display:none !important}.n8rBak1mt9 .KUbnOeAc9y{display:none !important}}.i3j80LPY6J{overflow:hidden !important}.i3j80LPY6J{height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;max-height:calc(100vh - 110px)}.i3j80LPY6J .NVe63WfyyR{padding:12px 24px;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:#fff;border-radius:3px 3px 0 0;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.i3j80LPY6J .ant-tabs{width:100%;height:100%}.i3j80LPY6J .ant-tabs .ant-tabs-nav{height:50px;background:white;padding-left:24px;border-radius:0 0 3px 3px;-webkit-box-shadow:0 1px 4px rgba(0,21,41,0.08);box-shadow:0 1px 4px rgba(0,21,41,0.08)}.i3j80LPY6J .ant-tabs .ant-tabs-content{height:100%}.i3j80LPY6J .ant-tabs .ant-tabs-tabpane{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;padding:24px;border-radius:4px;overflow:auto;height:calc(100vh - 240px)}.i3j80LPY6J .ant-tabs .ant-tabs-tab-btn{padding:12px 16px}.IwEgzk7fA6{height:100%}.IwEgzk7fA6 .U7EI0cRWSr{margin-bottom:16px;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15)}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.fGrJmKVAu5{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}._30CwbLQ6da{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.CeSQ\+fL\+vD{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.CeSQ\+fL\+vD>i,.CeSQ\+fL\+vD>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.omTMLXus13{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.DFzkiI4txS{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.FbpbAGd7yD{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.uW9tuLTcMI{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.rYkQROkF24{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._5-WHyDr0zC{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._8bZKAnf0DU{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}._8bZKAnf0DU .pkHZk25Hmz{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}._8bZKAnf0DU .pkHZk25Hmz>span{color:rgba(0,0,0,0.65)}.jHl6nZlehD{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.jHl6nZlehD .w11FVCbqr1{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.jHl6nZlehD .w11FVCbqr1>span{font-size:8px}.OeewqsQIvW .ant-popover-inner-content{padding:0}.OeewqsQIvW .ant-popover-arrow{border-color:#475365 !important}.OeewqsQIvW .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.Jz9FFm1SFA{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.HhGppTLLAH{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.HhGppTLLAH ._06bvf2zBXY{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}._9cWi7HlcGC{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.DVAD8HbACJ{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.DVAD8HbACJ{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.SZk\+qDB4TY{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.Le3hoJTGqF html,.Le3hoJTGqF body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.Le3hoJTGqF body,.Le3hoJTGqF div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.Le3hoJTGqF textarea{border:none !important;padding-left:0 !important}.Le3hoJTGqF table,.Le3hoJTGqF tr,.Le3hoJTGqF td{page-break-inside:avoid}.Le3hoJTGqF div{page-break-inside:avoid}.Le3hoJTGqF thead{display:table-header-group}.Le3hoJTGqF tfoot{display:table-footer-group}.Le3hoJTGqF *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.Le3hoJTGqF .rDmdfY3LhZ,.Le3hoJTGqF .no-print,.Le3hoJTGqF .react-resizable-handle,.Le3hoJTGqF .fc-whiteboard-toolbar,.Le3hoJTGqF .ant-modal-root,.Le3hoJTGqF .ant-alert,.Le3hoJTGqF .LqlcuV-r42,.Le3hoJTGqF .qp3\+FA\+F5n{display:none !important}.Le3hoJTGqF ._6EaV273UfA{display:none !important}}.xSJwsljHUz{border-radius:4px;padding:18px 32px;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);background-color:#fff}.xSJwsljHUz .OFOrDr7ZIE{margin-bottom:24px}.xSJwsljHUz .OFOrDr7ZIE>span:last-child{font-size:20px;margin-left:15px;color:#6874e2}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.mwyxtvlwDC{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.YpDZ8Nu0Pl{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.NB9Lw2tdFc{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.NB9Lw2tdFc>i,.NB9Lw2tdFc>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.KACpy6yMd3{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.uA8SlBjBAy{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.uoyDoLKgIg{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.X9pI6zVhf7{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.PiAh762W4m{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.E\+8\+cmbneZ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.IaZsw1WHne{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.IaZsw1WHne .q4F3uVWf72{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.IaZsw1WHne .q4F3uVWf72>span{color:rgba(0,0,0,0.65)}.SldgJ1yYpX{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.SldgJ1yYpX .QIUTESYAbz{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.SldgJ1yYpX .QIUTESYAbz>span{font-size:8px}.bmHtEfH3to .ant-popover-inner-content{padding:0}.bmHtEfH3to .ant-popover-arrow{border-color:#475365 !important}.bmHtEfH3to .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.ATGllkkma2{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.nFPsWUA8ee{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.nFPsWUA8ee ._8EeLvAuaAo{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.eXdK1G7y94{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.YTayvrtb1A{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.YTayvrtb1A{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}._9xv8qeRmcm{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.nvTGyPliS8 html,.nvTGyPliS8 body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.nvTGyPliS8 body,.nvTGyPliS8 div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.nvTGyPliS8 textarea{border:none !important;padding-left:0 !important}.nvTGyPliS8 table,.nvTGyPliS8 tr,.nvTGyPliS8 td{page-break-inside:avoid}.nvTGyPliS8 div{page-break-inside:avoid}.nvTGyPliS8 thead{display:table-header-group}.nvTGyPliS8 tfoot{display:table-footer-group}.nvTGyPliS8 *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.nvTGyPliS8 .TGwfurL0xp,.nvTGyPliS8 .no-print,.nvTGyPliS8 .react-resizable-handle,.nvTGyPliS8 .fc-whiteboard-toolbar,.nvTGyPliS8 .ant-modal-root,.nvTGyPliS8 .ant-alert,.nvTGyPliS8 ._6PYeU-90HV,.nvTGyPliS8 ._2\+efihf5sc{display:none !important}.nvTGyPliS8 .fCHzSUw4Hh{display:none !important}}.RaXNBZ8BGQ{width:100%;height:100%;position:relative}.RaXNBZ8BGQ .GfVRP5KpGl{border-radius:4px;padding:18px 32px;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);background-color:#fff;color:rgba(0,0,0,0.65);margin-bottom:24px}.RaXNBZ8BGQ .MZmSDbzhOy{margin-bottom:24px}.RaXNBZ8BGQ .MZmSDbzhOy>span:last-child{font-size:20px;margin-left:15px;color:#6874e2}.RaXNBZ8BGQ .xM0Erp0b\+4{min-width:80px;padding-right:8px;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;color:rgba(0,0,0,0.65);-webkit-box-align:center;-ms-flex-align:center;align-items:center}.RaXNBZ8BGQ ._5LYAk39uUs{margin-bottom:12px;min-width:80px;padding-right:8px;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;color:rgba(0,0,0,0.65);-webkit-box-align:center;-ms-flex-align:center;align-items:center}.RaXNBZ8BGQ ._5LYAk39uUs:before{display:inline-block;margin-right:4px;color:#ff4d4f;font-size:14px;font-family:SimSun,sans-serif;line-height:1;content:'*'}.RaXNBZ8BGQ .eJC3uhvDLS{border-radius:4px;padding:18px 32px;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);background-color:#fff}.fBf8Vnf6kb{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding-right:20%;height:60px;position:fixed;bottom:0;width:100vw;z-index:9;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}:where(.css-1jg35ys).ant-btn-default.ant-btn-background-ghost{color:rgba(0,0,0,0.88) !important;border-color:#d9d9d9 !important}:where(.css-1jg35ys).ant-btn-default.ant-btn-background-ghost{background:transparent}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.fNXVfKJBj9{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.ENIfpgJgJd{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.XJK\+gY7zsJ{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.XJK\+gY7zsJ>i,.XJK\+gY7zsJ>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.wLqHV2c0Ka{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.lh1J4eTNJH{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.uEIv6sA9AG{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.btPIr0B821{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.ZFV1-T4TrD{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.GDilYf0x5d{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.MgjKhxRXwy{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.MgjKhxRXwy .h8lrVp2t4D{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.MgjKhxRXwy .h8lrVp2t4D>span{color:rgba(0,0,0,0.65)}.rhwO5CwB4Q{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.rhwO5CwB4Q ._09ADfgYOIo{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.rhwO5CwB4Q ._09ADfgYOIo>span{font-size:8px}._3zGya4S--G .ant-popover-inner-content{padding:0}._3zGya4S--G .ant-popover-arrow{border-color:#475365 !important}._3zGya4S--G .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.qc0oD4pF\+N{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.T-4nxVS-QQ{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.T-4nxVS-QQ .PYfBdZix7K{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}._0-i0txFB9G{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.l697ie05rw{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.l697ie05rw{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.wVIe2-Z9SV{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.uzv\+cSRAOy html,.uzv\+cSRAOy body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.uzv\+cSRAOy body,.uzv\+cSRAOy div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.uzv\+cSRAOy textarea{border:none !important;padding-left:0 !important}.uzv\+cSRAOy table,.uzv\+cSRAOy tr,.uzv\+cSRAOy td{page-break-inside:avoid}.uzv\+cSRAOy div{page-break-inside:avoid}.uzv\+cSRAOy thead{display:table-header-group}.uzv\+cSRAOy tfoot{display:table-footer-group}.uzv\+cSRAOy *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.uzv\+cSRAOy .\+OTW0Bjy2\+,.uzv\+cSRAOy .no-print,.uzv\+cSRAOy .react-resizable-handle,.uzv\+cSRAOy .fc-whiteboard-toolbar,.uzv\+cSRAOy .ant-modal-root,.uzv\+cSRAOy .ant-alert,.uzv\+cSRAOy ._5oufyfkEyt,.uzv\+cSRAOy .xOSSMirjOn{display:none !important}.uzv\+cSRAOy .BKN7neCinb{display:none !important}}.Ohe-XFNzxg{margin-top:16px}.WXFlqmxM9F{width:100%;height:100%;padding:48px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;opacity:.7}.WXFlqmxM9F .rOx\+IA8QUB{font-size:50px;color:#6874e2}.WXFlqmxM9F .EbFF1c\+WA5{margin-top:24px;font-size:18px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.YolmmspOkC{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.YsyFDNE2N5{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}._1P5R0eMHGY{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}._1P5R0eMHGY>i,._1P5R0eMHGY>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.m1CTLCfLkx{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.ZzqQc8hWiR{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.hw3LA8RjeK{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.wrvHXCMdk1{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}._6IH16BNzAg{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.Ha7NSvEsRP{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.CoR9R8YvBU{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.CoR9R8YvBU ._6cuZj86uiU{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.CoR9R8YvBU ._6cuZj86uiU>span{color:rgba(0,0,0,0.65)}.GzRwVyfvTq{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.GzRwVyfvTq .\+YAbWo\+rfF{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.GzRwVyfvTq .\+YAbWo\+rfF>span{font-size:8px}.XrlapKxdVp .ant-popover-inner-content{padding:0}.XrlapKxdVp .ant-popover-arrow{border-color:#475365 !important}.XrlapKxdVp .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.To3l\+SMhhs{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.KZZBV-lvZ2{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.KZZBV-lvZ2 ._0eqo7AxoDr{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.QVGB7Im7e4{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.py9gBioRWK{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.py9gBioRWK{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.R7AQ3NKAp8{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.UMmzfcE5fM html,.UMmzfcE5fM body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.UMmzfcE5fM body,.UMmzfcE5fM div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.UMmzfcE5fM textarea{border:none !important;padding-left:0 !important}.UMmzfcE5fM table,.UMmzfcE5fM tr,.UMmzfcE5fM td{page-break-inside:avoid}.UMmzfcE5fM div{page-break-inside:avoid}.UMmzfcE5fM thead{display:table-header-group}.UMmzfcE5fM tfoot{display:table-footer-group}.UMmzfcE5fM *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.UMmzfcE5fM .VTaFf-To-4,.UMmzfcE5fM .no-print,.UMmzfcE5fM .react-resizable-handle,.UMmzfcE5fM .fc-whiteboard-toolbar,.UMmzfcE5fM .ant-modal-root,.UMmzfcE5fM .ant-alert,.UMmzfcE5fM .eK6WuPOmPp,.UMmzfcE5fM ._4bdEXvkVJw{display:none !important}.UMmzfcE5fM .KbBqt3k0tu{display:none !important}}.kFcCKJcidh{width:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;height:100%;overflow:auto;padding:0 24px}.q7-ehqkrKZ ._1JSZIZyaue{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:50px;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;font-size:16px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.VySbxkNyVx{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.H4mTt06rvd{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.r8EzMC9Sue{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.r8EzMC9Sue>i,.r8EzMC9Sue>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.MXvd6WZ1xr{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.j9Kj9NPxXb{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.HfVHu4EOlz{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.G7NttJx75i{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.iLuI9kv8iI{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.c\+rrV3IoTy{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.r6\+as2-LHH{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.r6\+as2-LHH .iVEnJ4kqGE{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.r6\+as2-LHH .iVEnJ4kqGE>span{color:rgba(0,0,0,0.65)}.sO8pwOL\+yH{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.sO8pwOL\+yH .UWZbeGdcjs{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.sO8pwOL\+yH .UWZbeGdcjs>span{font-size:8px}.u1p8e\+Xyd3 .ant-popover-inner-content{padding:0}.u1p8e\+Xyd3 .ant-popover-arrow{border-color:#475365 !important}.u1p8e\+Xyd3 .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.muwUevYDl4{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.jx0epDOJUr{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.jx0epDOJUr ._3NfEnLaHue{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.UWuFemKNRt{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.bX1UEtt9fv{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.bX1UEtt9fv{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.WbGh\+XUDzc{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.Ojo5UTMGiJ html,.Ojo5UTMGiJ body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.Ojo5UTMGiJ body,.Ojo5UTMGiJ div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.Ojo5UTMGiJ textarea{border:none !important;padding-left:0 !important}.Ojo5UTMGiJ table,.Ojo5UTMGiJ tr,.Ojo5UTMGiJ td{page-break-inside:avoid}.Ojo5UTMGiJ div{page-break-inside:avoid}.Ojo5UTMGiJ thead{display:table-header-group}.Ojo5UTMGiJ tfoot{display:table-footer-group}.Ojo5UTMGiJ *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.Ojo5UTMGiJ .wlGdH-5xj1,.Ojo5UTMGiJ .no-print,.Ojo5UTMGiJ .react-resizable-handle,.Ojo5UTMGiJ .fc-whiteboard-toolbar,.Ojo5UTMGiJ .ant-modal-root,.Ojo5UTMGiJ .ant-alert,.Ojo5UTMGiJ .UOrzRpwsdy,.Ojo5UTMGiJ .BBHJiunQ3m{display:none !important}.Ojo5UTMGiJ ._0uuco3a1pS{display:none !important}}.TPPLPxIKf6{padding:16px;padding-top:0}.u4c4J-MGWI{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;width:160px}.u4c4J-MGWI .US2muqui\+L{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around;opacity:0;-webkit-transition:all ease-in .3s;transition:all ease-in .3s}.u4c4J-MGWI:hover .US2muqui\+L{opacity:1}.aYaVcBRxUe{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.IuvBCsrlMi{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;width:220px;padding:0 8px;margin-bottom:12px}.anticon{margin:0 4px}.ant-tag{cursor:pointer}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.r4ovYVY8m8{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.NzSbb8FjQc{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.rgS6Wg\+qLv{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.rgS6Wg\+qLv>i,.rgS6Wg\+qLv>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.j\+64BSAYKc{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.j9ygWnLV9H{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.tAUvwsyj1u{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.bI7JwuWu-y{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.ll\+I\+oCSys{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._8UE20VYCG3{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.g5TPoUHHxs{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.g5TPoUHHxs .T9qNK9DV8n{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.g5TPoUHHxs .T9qNK9DV8n>span{color:rgba(0,0,0,0.65)}.R09bSCvoxb{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.R09bSCvoxb .TrNYp4S73G{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.R09bSCvoxb .TrNYp4S73G>span{font-size:8px}.Ca32ZtkjeG .ant-popover-inner-content{padding:0}.Ca32ZtkjeG .ant-popover-arrow{border-color:#475365 !important}.Ca32ZtkjeG .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.AU5t5t3HLl{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.MWRPCEQXr6{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.MWRPCEQXr6 .MLfNUc-3-a{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.wd6v23uNfD{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}._4Ipm\+7U4\+4{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{._4Ipm\+7U4\+4{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.h4LQlYDmVh{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.uMLzTzXfQF html,.uMLzTzXfQF body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.uMLzTzXfQF body,.uMLzTzXfQF div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.uMLzTzXfQF textarea{border:none !important;padding-left:0 !important}.uMLzTzXfQF table,.uMLzTzXfQF tr,.uMLzTzXfQF td{page-break-inside:avoid}.uMLzTzXfQF div{page-break-inside:avoid}.uMLzTzXfQF thead{display:table-header-group}.uMLzTzXfQF tfoot{display:table-footer-group}.uMLzTzXfQF *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.uMLzTzXfQF ._4y44kErmQF,.uMLzTzXfQF .no-print,.uMLzTzXfQF .react-resizable-handle,.uMLzTzXfQF .fc-whiteboard-toolbar,.uMLzTzXfQF .ant-modal-root,.uMLzTzXfQF .ant-alert,.uMLzTzXfQF ._9MwXJOkae0,.uMLzTzXfQF .DXa\+mYcMJo{display:none !important}.uMLzTzXfQF .lpQztKO6e1{display:none !important}}.WYEL4rflYo{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.WYEL4rflYo .lrOvglhbK1{padding:5px;background:#fff;border-radius:2px;-webkit-box-shadow:0 0 0 1px rgba(0,0,0,0.1);box-shadow:0 0 0 1px rgba(0,0,0,0.1);display:inline-block;cursor:pointer}.WYEL4rflYo .lrOvglhbK1 .Ycp2TK4AJK{width:45px;height:20px;display:block;border-radius:3px;background-color:#ddd}.qyjEGONVdP .ant-popover-content .ant-popover-inner .ant-popover-inner-content{padding:0}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.s\+8E6wuUMG{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.bNA098Okhn{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.KoLEvUojKi{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.KoLEvUojKi>i,.KoLEvUojKi>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.EYbpjYQGN2{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.ONwF0oTxPw{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.aDpV1kKWdz{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.hHwiv0LhTl{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.vOR0fAwOEB{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._4uGcDG6Hzk{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.rO\+Wipj\+PY{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.rO\+Wipj\+PY ._6p-1picxfv{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.rO\+Wipj\+PY ._6p-1picxfv>span{color:rgba(0,0,0,0.65)}.H\+4-txsTRK{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.H\+4-txsTRK .HHuQ1q5OiQ{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.H\+4-txsTRK .HHuQ1q5OiQ>span{font-size:8px}.UXjWUwd2TY .ant-popover-inner-content{padding:0}.UXjWUwd2TY .ant-popover-arrow{border-color:#475365 !important}.UXjWUwd2TY .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.ZbUALyunKi{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}._0Hhyag-LWP{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._0Hhyag-LWP .YREglxVnZC{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}._3D5HR7c7Od{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.yAUt9kgbQB{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.yAUt9kgbQB{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.PW76CeJFt5{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.yteIuSmw6Z html,.yteIuSmw6Z body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.yteIuSmw6Z body,.yteIuSmw6Z div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.yteIuSmw6Z textarea{border:none !important;padding-left:0 !important}.yteIuSmw6Z table,.yteIuSmw6Z tr,.yteIuSmw6Z td{page-break-inside:avoid}.yteIuSmw6Z div{page-break-inside:avoid}.yteIuSmw6Z thead{display:table-header-group}.yteIuSmw6Z tfoot{display:table-footer-group}.yteIuSmw6Z *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.yteIuSmw6Z .q1Qe4m\+1vu,.yteIuSmw6Z .no-print,.yteIuSmw6Z .react-resizable-handle,.yteIuSmw6Z .fc-whiteboard-toolbar,.yteIuSmw6Z .ant-modal-root,.yteIuSmw6Z .ant-alert,.yteIuSmw6Z ._04Ue--Npsx,.yteIuSmw6Z .MxCrCciCQJ{display:none !important}.yteIuSmw6Z .WtuKVLRwBf{display:none !important}}.EbNg-45M\+S ._3h0W7Gt8eU{font-size:12px;line-height:normal;color:rgba(0,0,0,0.45)}.EbNg-45M\+S ._3h0W7Gt8eU>span{cursor:pointer;color:#6874e2;margin-left:4px}.EbNg-45M\+S .ant-row{margin-bottom:16px;width:100%}.EbNg-45M\+S .ant-radio-group-solid{width:650px}.FMsAsQzthr{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.O64pQNEr8f>div:first-child>div:last-child>div{padding:0}
.BJkKXsCAL3{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;justify-items:flex-start}.BJkKXsCAL3 .ant-upload-picture-card-wrapper{width:auto}.BJkKXsCAL3 .ant-upload.ant-upload-select-picture-card{margin:0}.jHSETfQRo1{margin-left:12px;display:-webkit-box;display:-ms-flexbox;display:flex;justify-items:flex-start;-ms-flex-wrap:nowrap;flex-wrap:nowrap;overflow-x:auto}._1uT1tQvrbT{position:relative;padding:7px;border-radius:2px;border:1px solid #d9d9d9}._1uT1tQvrbT:not(:last-child){margin-right:8px}._1uT1tQvrbT:hover:before,._1uT1tQvrbT:hover .OWr-OX64FU{opacity:1}._1uT1tQvrbT:before{position:absolute;z-index:1;top:8px;bottom:8px;left:8px;right:8px;background-color:rgba(0,0,0,0.50196);opacity:0;-webkit-transition:all .3s;transition:all .3s;content:' '}._1uT1tQvrbT .OWr-OX64FU{position:absolute;top:50%;left:50%;z-index:10;white-space:nowrap;color:rgba(255,255,255,0.85098);-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);opacity:0;-webkit-transition:all .3s;transition:all .3s}._1uT1tQvrbT .OWr-OX64FU>span{cursor:pointer}._1uT1tQvrbT .OWr-OX64FU>span:hover{color:#fff}._1uT1tQvrbT>img{width:88px;height:88px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.gE3oQMjv9R{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.LyoJwcpC3w{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.pgmK5ydzf4{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.pgmK5ydzf4>i,.pgmK5ydzf4>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.JwXrHXWOnT{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.ijEwLGDpEO{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.uxZVa4Rh00{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.SSTnexW0GB{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.WrlLdpbf8T{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.sv2aFwST-k{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.oXtkbL-fEq{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.oXtkbL-fEq .PiWL9HU7Ci{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.oXtkbL-fEq .PiWL9HU7Ci>span{color:rgba(0,0,0,0.65)}.OurLzU5J9i{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.OurLzU5J9i ._15-uGobuFv{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.OurLzU5J9i ._15-uGobuFv>span{font-size:8px}.OdqXaNjNH5 .ant-popover-inner-content{padding:0}.OdqXaNjNH5 .ant-popover-arrow{border-color:#475365 !important}.OdqXaNjNH5 .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}._1jkN3t69VK{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.OspY3o7f\+o{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.OspY3o7f\+o ._1lIPZ9FS5y{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.-OwP5-J3E0{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}._2dFPvp6QX2{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{._2dFPvp6QX2{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.hRJMMsMIA-{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.kaXz9phkj8 html,.kaXz9phkj8 body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.kaXz9phkj8 body,.kaXz9phkj8 div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.kaXz9phkj8 textarea{border:none !important;padding-left:0 !important}.kaXz9phkj8 table,.kaXz9phkj8 tr,.kaXz9phkj8 td{page-break-inside:avoid}.kaXz9phkj8 div{page-break-inside:avoid}.kaXz9phkj8 thead{display:table-header-group}.kaXz9phkj8 tfoot{display:table-footer-group}.kaXz9phkj8 *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.kaXz9phkj8 .yRa-JvWadx,.kaXz9phkj8 .no-print,.kaXz9phkj8 .react-resizable-handle,.kaXz9phkj8 .fc-whiteboard-toolbar,.kaXz9phkj8 .ant-modal-root,.kaXz9phkj8 .ant-alert,.kaXz9phkj8 .QQcs9bjjqb,.kaXz9phkj8 .Raiiy0\+WFX{display:none !important}.kaXz9phkj8 .b2x6VFgjey{display:none !important}}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.q0fdTAQvnP{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.Bc8pQ-WIjH{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.HlKre0lme3{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.HlKre0lme3>i,.HlKre0lme3>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.xOIB6BGk8o{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.U0j6Jvwd3t{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.atrls7h\+ay{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.zFC14IauY1{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.iyX3-VS91Z{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.Bd0kRVc5d\+{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.xE1rbzzhaF{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.xE1rbzzhaF .WxnI-XcmDT{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.xE1rbzzhaF .WxnI-XcmDT>span{color:rgba(0,0,0,0.65)}.EZx3W\+YAKY{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.EZx3W\+YAKY .Z9USRL9lGD{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.EZx3W\+YAKY .Z9USRL9lGD>span{font-size:8px}.BSIDqg-nON .ant-popover-inner-content{padding:0}.BSIDqg-nON .ant-popover-arrow{border-color:#475365 !important}.BSIDqg-nON .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.\+VuHkdUDkl{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}._522Ygpyg5U{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._522Ygpyg5U .lgclRlTgqk{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.JgPR9tud9l{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.mP8nVW9UGC{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.mP8nVW9UGC{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.r0ODML2Rz7{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.\+W2KciN8Mi html,.\+W2KciN8Mi body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.\+W2KciN8Mi body,.\+W2KciN8Mi div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.\+W2KciN8Mi textarea{border:none !important;padding-left:0 !important}.\+W2KciN8Mi table,.\+W2KciN8Mi tr,.\+W2KciN8Mi td{page-break-inside:avoid}.\+W2KciN8Mi div{page-break-inside:avoid}.\+W2KciN8Mi thead{display:table-header-group}.\+W2KciN8Mi tfoot{display:table-footer-group}.\+W2KciN8Mi *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.\+W2KciN8Mi .E1O64WtDpW,.\+W2KciN8Mi .no-print,.\+W2KciN8Mi .react-resizable-handle,.\+W2KciN8Mi .fc-whiteboard-toolbar,.\+W2KciN8Mi .ant-modal-root,.\+W2KciN8Mi .ant-alert,.\+W2KciN8Mi .WyicLbxlqO,.\+W2KciN8Mi .\-9twGGVqQX{display:none !important}.\+W2KciN8Mi .SuJDD3cjOm{display:none !important}}.\+-cXvnNx4h{padding:16px 0;padding-left:16px;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15)}.\+-cXvnNx4h .ant-select-selection,.\+-cXvnNx4h .ant-select-selection--single{border:none}.\+-cXvnNx4h .ant-empty-normal{margin:0}
.ZQFZouWH84{position:relative}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.lK0gOeZ7OS{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.wa3I5x\+ZFB{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.pOBDGTv3VQ{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.pOBDGTv3VQ>i,.pOBDGTv3VQ>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}._6u3jq7EMCQ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._0eofyK8rIY{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}._2yeVG8FyBv{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}._8kKwrnRrYv{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.qV\+B4I7oTI{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.Ta0sG0XG1Q{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.D7IIF2jUeb{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.D7IIF2jUeb .b1\+hDetXhY{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.D7IIF2jUeb .b1\+hDetXhY>span{color:rgba(0,0,0,0.65)}.oXPFQW4lI9{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.oXPFQW4lI9 .QNGzJYWRn3{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.oXPFQW4lI9 .QNGzJYWRn3>span{font-size:8px}.fYIYGApeLc .ant-popover-inner-content{padding:0}.fYIYGApeLc .ant-popover-arrow{border-color:#475365 !important}.fYIYGApeLc .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.abAYFoYnzh{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.rU-mqM58OD{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.rU-mqM58OD .\+0iM8YY3ra{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.AMRM00H5iF{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}._7Lu8rKCKnT{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{._7Lu8rKCKnT{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.Zf6PRiYf6T{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.PUdS0t7XM5 html,.PUdS0t7XM5 body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.PUdS0t7XM5 body,.PUdS0t7XM5 div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.PUdS0t7XM5 textarea{border:none !important;padding-left:0 !important}.PUdS0t7XM5 table,.PUdS0t7XM5 tr,.PUdS0t7XM5 td{page-break-inside:avoid}.PUdS0t7XM5 div{page-break-inside:avoid}.PUdS0t7XM5 thead{display:table-header-group}.PUdS0t7XM5 tfoot{display:table-footer-group}.PUdS0t7XM5 *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.PUdS0t7XM5 .Rz-MRUkBdQ,.PUdS0t7XM5 .no-print,.PUdS0t7XM5 .react-resizable-handle,.PUdS0t7XM5 .fc-whiteboard-toolbar,.PUdS0t7XM5 .ant-modal-root,.PUdS0t7XM5 .ant-alert,.PUdS0t7XM5 .UCGCBndRv2,.PUdS0t7XM5 .OLhS6cz2Eh{display:none !important}.PUdS0t7XM5 .lM1beqXojD{display:none !important}}.jMCeiKv90c .ant-row{margin-bottom:16px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.ZGUxa6GyvB{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.skBxLhyIBk{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.-uPOD2FgxK{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.-uPOD2FgxK>i,.-uPOD2FgxK>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.QwVCDVE7We{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._2hpx8djTnw{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.XTftH17hla{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.JXodMYhqFd{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.YOOmZLBA0P{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.NT8xzYOvqi{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.NBziCg07kL{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.NBziCg07kL .xfA\+Hi2pKN{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.NBziCg07kL .xfA\+Hi2pKN>span{color:rgba(0,0,0,0.65)}.thocFm3CD0{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.thocFm3CD0 ._9nvygCkZqd{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.thocFm3CD0 ._9nvygCkZqd>span{font-size:8px}.urbygvwENp .ant-popover-inner-content{padding:0}.urbygvwENp .ant-popover-arrow{border-color:#475365 !important}.urbygvwENp .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}._93cs6oO3Hb{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.ZzGDmxJB2u{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.ZzGDmxJB2u .wYY175jJbb{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.dv1rWweGYd{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}._9jvcjDRy1y{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{._9jvcjDRy1y{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.XEi5fhkwaW{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{._8nlEEGzVyY html,._8nlEEGzVyY body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}._8nlEEGzVyY body,._8nlEEGzVyY div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}._8nlEEGzVyY textarea{border:none !important;padding-left:0 !important}._8nlEEGzVyY table,._8nlEEGzVyY tr,._8nlEEGzVyY td{page-break-inside:avoid}._8nlEEGzVyY div{page-break-inside:avoid}._8nlEEGzVyY thead{display:table-header-group}._8nlEEGzVyY tfoot{display:table-footer-group}._8nlEEGzVyY *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}._8nlEEGzVyY .lrAPRrgyqG,._8nlEEGzVyY .no-print,._8nlEEGzVyY .react-resizable-handle,._8nlEEGzVyY .fc-whiteboard-toolbar,._8nlEEGzVyY .ant-modal-root,._8nlEEGzVyY .ant-alert,._8nlEEGzVyY .HLSbNscrjk,._8nlEEGzVyY .ZUMEOu2P8P{display:none !important}._8nlEEGzVyY .\--PjNHDTdN{display:none !important}}.\+UONiYUobj{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;padding:0 24px}.I8P2GvcGV2{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.I2YvcV6XeH .bbj3LYbTdc{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:50px;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;font-size:16px}.JD3lh3kJ97{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.Dvp7le3imi{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}._2JcjExdAkU{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}._2x1z4ff-B5{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}._2x1z4ff-B5>i,._2x1z4ff-B5>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.peSBGk6F-g{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._58VL-GcWR0{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.l0ChhPJlQG{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}._9-Ct98RX\+m{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.beppdk1cnm{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.YY80vXmpTb{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.spH1pL8cd3{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.spH1pL8cd3 .NwreHc-ISB{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.spH1pL8cd3 .NwreHc-ISB>span{color:rgba(0,0,0,0.65)}.J86hnxyKpO{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.J86hnxyKpO .W0g\+zhAn5j{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.J86hnxyKpO .W0g\+zhAn5j>span{font-size:8px}._3HSquIANtn .ant-popover-inner-content{padding:0}._3HSquIANtn .ant-popover-arrow{border-color:#475365 !important}._3HSquIANtn .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.pzG8oEsdkc{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.UKVABZkKCJ{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.UKVABZkKCJ .USUhrZK4sB{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}._9F6Em4ysFi{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.MX8f0kCpkz{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.MX8f0kCpkz{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.l0OCM4DU9e{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{._52SOzHZkJZ html,._52SOzHZkJZ body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}._52SOzHZkJZ body,._52SOzHZkJZ div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}._52SOzHZkJZ textarea{border:none !important;padding-left:0 !important}._52SOzHZkJZ table,._52SOzHZkJZ tr,._52SOzHZkJZ td{page-break-inside:avoid}._52SOzHZkJZ div{page-break-inside:avoid}._52SOzHZkJZ thead{display:table-header-group}._52SOzHZkJZ tfoot{display:table-footer-group}._52SOzHZkJZ *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}._52SOzHZkJZ ._4MkyS3tLnK,._52SOzHZkJZ .no-print,._52SOzHZkJZ .react-resizable-handle,._52SOzHZkJZ .fc-whiteboard-toolbar,._52SOzHZkJZ .ant-modal-root,._52SOzHZkJZ .ant-alert,._52SOzHZkJZ .zNK6AYViZk,._52SOzHZkJZ .EJG4BpHl4X{display:none !important}._52SOzHZkJZ .ylJFMecKwF{display:none !important}}.j\+wpWT5NAi{margin-top:16px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.WrGw09DgRz{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.c1Y4m\+U5Qm{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.gzN1ZcbdLd{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.gzN1ZcbdLd>i,.gzN1ZcbdLd>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.ldJvL-Q8Bi{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.i14cde9-0t{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.vglYZPbCKN{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.x7b9nRzvbc{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.pTmBvRKPn7{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.fO5IjQGTdr{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.OcgiFjnfd6{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.OcgiFjnfd6 ._7BpOCDsckg{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.OcgiFjnfd6 ._7BpOCDsckg>span{color:rgba(0,0,0,0.65)}._4Tjs\+UsV52{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}._4Tjs\+UsV52 .AHn6AMcrvJ{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}._4Tjs\+UsV52 .AHn6AMcrvJ>span{font-size:8px}.jBPVBqItNB .ant-popover-inner-content{padding:0}.jBPVBqItNB .ant-popover-arrow{border-color:#475365 !important}.jBPVBqItNB .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.KeQB5GQaSx{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.SPXxPXpdqN{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.SPXxPXpdqN .dZwHPX5MYl{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}._1-fuS-q0UE{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.KIlnR-1uWy{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.KIlnR-1uWy{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.Ye1MnPxwgb{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.AziqjzrjXJ html,.AziqjzrjXJ body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.AziqjzrjXJ body,.AziqjzrjXJ div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.AziqjzrjXJ textarea{border:none !important;padding-left:0 !important}.AziqjzrjXJ table,.AziqjzrjXJ tr,.AziqjzrjXJ td{page-break-inside:avoid}.AziqjzrjXJ div{page-break-inside:avoid}.AziqjzrjXJ thead{display:table-header-group}.AziqjzrjXJ tfoot{display:table-footer-group}.AziqjzrjXJ *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.AziqjzrjXJ .\+MYXx5r\+kg,.AziqjzrjXJ .no-print,.AziqjzrjXJ .react-resizable-handle,.AziqjzrjXJ .fc-whiteboard-toolbar,.AziqjzrjXJ .ant-modal-root,.AziqjzrjXJ .ant-alert,.AziqjzrjXJ ._2XZ1axGfZj,.AziqjzrjXJ .XWLM5DjZyC{display:none !important}.AziqjzrjXJ .iuU8K0\+LnG{display:none !important}}.nyBEvWmZf- .JZD378OroB{font-size:18px;color:rgba(0,0,0,0.75)}.nyBEvWmZf- .OCAU3l-LF9{font-size:14px;color:rgba(0,0,0,0.75)}.nyBEvWmZf- .o478KJuQXw{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:8px 0}.nyBEvWmZf- .o478KJuQXw ._8WZblv3TK8:not(:first-child){margin-left:24px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.ObiErG-gja{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.qOY6QA75oj{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.b6JWHqrmAu{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.b6JWHqrmAu>i,.b6JWHqrmAu>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.lp6p3TQCpp{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.eHwJstHRVS{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.wp9nqoJP9m{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.vS9pBemvd6{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.WDidKZMKCV{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.isnhC3\+b7O{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._4tIhNX-5nv{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}._4tIhNX-5nv .uMhLTyOyMN{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}._4tIhNX-5nv .uMhLTyOyMN>span{color:rgba(0,0,0,0.65)}.p9vxDQISBr{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.p9vxDQISBr .qItJPFBsi4{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.p9vxDQISBr .qItJPFBsi4>span{font-size:8px}.cxF0zXAhbi .ant-popover-inner-content{padding:0}.cxF0zXAhbi .ant-popover-arrow{border-color:#475365 !important}.cxF0zXAhbi .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.d\+PMxN-ljl{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.VMF4Dk21ow{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.VMF4Dk21ow .FY0XPLoFoC{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}._0q7Fk4iGoY{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.GwdULbA0RI{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.GwdULbA0RI{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.V0WdazgHMb{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.BnAff7ZXxr html,.BnAff7ZXxr body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.BnAff7ZXxr body,.BnAff7ZXxr div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.BnAff7ZXxr textarea{border:none !important;padding-left:0 !important}.BnAff7ZXxr table,.BnAff7ZXxr tr,.BnAff7ZXxr td{page-break-inside:avoid}.BnAff7ZXxr div{page-break-inside:avoid}.BnAff7ZXxr thead{display:table-header-group}.BnAff7ZXxr tfoot{display:table-footer-group}.BnAff7ZXxr *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.BnAff7ZXxr .evf91JNk2o,.BnAff7ZXxr .no-print,.BnAff7ZXxr .react-resizable-handle,.BnAff7ZXxr .fc-whiteboard-toolbar,.BnAff7ZXxr .ant-modal-root,.BnAff7ZXxr .ant-alert,.BnAff7ZXxr ._6L-\+uP0Cto,.BnAff7ZXxr ._5uApSSTJ6g{display:none !important}.BnAff7ZXxr .\+EaFxEGXbk{display:none !important}}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.GzE9mLwFm8{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}._28iwS0TaI1{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.Jgb\+z7T42u{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.Jgb\+z7T42u>i,.Jgb\+z7T42u>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.V03si0jFuH{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.mC2ho2cVeW{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.n81hotS5Qg{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.rIbo\+vBQnU{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.-Ff2C0sNvk{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.LB6Yjx66Ml{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.KiJZLzt-RT{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.KiJZLzt-RT .F\+shFtCOXO{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.KiJZLzt-RT .F\+shFtCOXO>span{color:rgba(0,0,0,0.65)}.k5YwHAe3cR{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.k5YwHAe3cR .owLm81dt71{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.k5YwHAe3cR .owLm81dt71>span{font-size:8px}.fwdxRVHa-5 .ant-popover-inner-content{padding:0}.fwdxRVHa-5 .ant-popover-arrow{border-color:#475365 !important}.fwdxRVHa-5 .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.iwgQHRI-e7{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.iVMvYzwd-i{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.iVMvYzwd-i .TBMMjx6H6U{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.p7N11TQXqX{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.cVciuiTTD9{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.cVciuiTTD9{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.vIZhIY5Pz6{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.sY01pYGoTN html,.sY01pYGoTN body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.sY01pYGoTN body,.sY01pYGoTN div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.sY01pYGoTN textarea{border:none !important;padding-left:0 !important}.sY01pYGoTN table,.sY01pYGoTN tr,.sY01pYGoTN td{page-break-inside:avoid}.sY01pYGoTN div{page-break-inside:avoid}.sY01pYGoTN thead{display:table-header-group}.sY01pYGoTN tfoot{display:table-footer-group}.sY01pYGoTN *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.sY01pYGoTN .E\+9XXQcbO5,.sY01pYGoTN .no-print,.sY01pYGoTN .react-resizable-handle,.sY01pYGoTN .fc-whiteboard-toolbar,.sY01pYGoTN .ant-modal-root,.sY01pYGoTN .ant-alert,.sY01pYGoTN .m4pN4RjsyV,.sY01pYGoTN .cWW9iChaZT{display:none !important}.sY01pYGoTN .tl3JbfOhma{display:none !important}}.fVbmZezJyx{padding:16px;padding-top:0;background-color:#fff;height:auto}._8WYzu8MYlx{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.uGGuIPB3QV{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.EaKtrE-W22{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}._3f3w6w9bxi{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}._3f3w6w9bxi>i,._3f3w6w9bxi>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.lZXPkYG4hT{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.TuEXRw3kVT{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.uDoY4wqE8l{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.x7amDkWfaL{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.PKF-nM8Vsm{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.ZoBhy\+lEYe{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.GF9bnG\+k0w{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.GF9bnG\+k0w .C6aTPvKJL2{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.GF9bnG\+k0w .C6aTPvKJL2>span{color:rgba(0,0,0,0.65)}._2JF5QUngkZ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}._2JF5QUngkZ .lc8ig5SJ6q{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}._2JF5QUngkZ .lc8ig5SJ6q>span{font-size:8px}.qphgXX5cYd .ant-popover-inner-content{padding:0}.qphgXX5cYd .ant-popover-arrow{border-color:#475365 !important}.qphgXX5cYd .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.-OXZ6HH3wL{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.v4EWnzYTvR{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.v4EWnzYTvR ._4zBM6\+jqdE{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.JU6C82HW\+j{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.OeHsj33X33{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.OeHsj33X33{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.dXKFxSABuh{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.FifxFL84Aw html,.FifxFL84Aw body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.FifxFL84Aw body,.FifxFL84Aw div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.FifxFL84Aw textarea{border:none !important;padding-left:0 !important}.FifxFL84Aw table,.FifxFL84Aw tr,.FifxFL84Aw td{page-break-inside:avoid}.FifxFL84Aw div{page-break-inside:avoid}.FifxFL84Aw thead{display:table-header-group}.FifxFL84Aw tfoot{display:table-footer-group}.FifxFL84Aw *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.FifxFL84Aw .CX7VQqb\+6X,.FifxFL84Aw .no-print,.FifxFL84Aw .react-resizable-handle,.FifxFL84Aw .fc-whiteboard-toolbar,.FifxFL84Aw .ant-modal-root,.FifxFL84Aw .ant-alert,.FifxFL84Aw .KLqc\+0tJwu,.FifxFL84Aw ._65MR9nVqwJ{display:none !important}.FifxFL84Aw .WOwzsiBSmc{display:none !important}}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.fOMQw1NzCV{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.vjdSMfmBDw{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}._4289mcGcNz{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}._4289mcGcNz>i,._4289mcGcNz>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.E20CeAeuUk{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.UwUZxuF38H{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.z7kFL4SWDQ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.\-8OscxDW-j{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.eD7x5mf8HJ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.T-ZKFekLcm{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.iB9ELynUN3{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.iB9ELynUN3 .N0iXCb-e-Q{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.iB9ELynUN3 .N0iXCb-e-Q>span{color:rgba(0,0,0,0.65)}._2p6AnYSgrZ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}._2p6AnYSgrZ .TUp2KGI13y{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}._2p6AnYSgrZ .TUp2KGI13y>span{font-size:8px}.p7qYs3eTYd .ant-popover-inner-content{padding:0}.p7qYs3eTYd .ant-popover-arrow{border-color:#475365 !important}.p7qYs3eTYd .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.-uDe00XDay{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.j3-HPeFeAC{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.j3-HPeFeAC .FXqBKYVF9c{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.CPluwQbMet{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.F88j4z1Fnj{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.F88j4z1Fnj{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.m47PFhJgzu{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{._2bN-Yf0G2m html,._2bN-Yf0G2m body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}._2bN-Yf0G2m body,._2bN-Yf0G2m div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}._2bN-Yf0G2m textarea{border:none !important;padding-left:0 !important}._2bN-Yf0G2m table,._2bN-Yf0G2m tr,._2bN-Yf0G2m td{page-break-inside:avoid}._2bN-Yf0G2m div{page-break-inside:avoid}._2bN-Yf0G2m thead{display:table-header-group}._2bN-Yf0G2m tfoot{display:table-footer-group}._2bN-Yf0G2m *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}._2bN-Yf0G2m .YN4RGGFAOQ,._2bN-Yf0G2m .no-print,._2bN-Yf0G2m .react-resizable-handle,._2bN-Yf0G2m .fc-whiteboard-toolbar,._2bN-Yf0G2m .ant-modal-root,._2bN-Yf0G2m .ant-alert,._2bN-Yf0G2m .VTn1rAAl7y,._2bN-Yf0G2m .kIMPbeCFSb{display:none !important}._2bN-Yf0G2m .V8a\+5qojDu{display:none !important}}.-DH5JHBTZG{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);padding:12px;padding-top:0;position:relative}.ant-tabs-content{height:100%}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}._3vsie0uq52{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}._3IpENH\+WAH{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.PUoAz7uNAn{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.PUoAz7uNAn>i,.PUoAz7uNAn>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.r-xVF\+65rv{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.cz8WthgzOZ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}._2-Z78Qxayy{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.vlqz6t0W8I{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.xn8C0JH3rf{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.-i9RjA4Md8{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.MqPNnhAf7e{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.MqPNnhAf7e .KL44TVg3g1{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.MqPNnhAf7e .KL44TVg3g1>span{color:rgba(0,0,0,0.65)}.iKJPr--Ppa{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.iKJPr--Ppa .O2OOG\+Cv9F{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.iKJPr--Ppa .O2OOG\+Cv9F>span{font-size:8px}.nDZdKN\+FaW .ant-popover-inner-content{padding:0}.nDZdKN\+FaW .ant-popover-arrow{border-color:#475365 !important}.nDZdKN\+FaW .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.pCAHm\+fnVw{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.E6njw48Vtl{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.E6njw48Vtl .xQhKD5WS1f{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.Kn-oGlau2k{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.aQFLcqNXXD{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.aQFLcqNXXD{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.C\+jas-CKZe{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.Gmk9RCU80L html,.Gmk9RCU80L body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.Gmk9RCU80L body,.Gmk9RCU80L div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.Gmk9RCU80L textarea{border:none !important;padding-left:0 !important}.Gmk9RCU80L table,.Gmk9RCU80L tr,.Gmk9RCU80L td{page-break-inside:avoid}.Gmk9RCU80L div{page-break-inside:avoid}.Gmk9RCU80L thead{display:table-header-group}.Gmk9RCU80L tfoot{display:table-footer-group}.Gmk9RCU80L *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.Gmk9RCU80L .wiJcV2CBws,.Gmk9RCU80L .no-print,.Gmk9RCU80L .react-resizable-handle,.Gmk9RCU80L .fc-whiteboard-toolbar,.Gmk9RCU80L .ant-modal-root,.Gmk9RCU80L .ant-alert,.Gmk9RCU80L .qLPxysz354,.Gmk9RCU80L ._0bdrruoSvP{display:none !important}.Gmk9RCU80L .Bqw6RZx6b3{display:none !important}}.u38Eh8VFsk{height:100%;overflow:hidden;padding:24px 0;padding-top:0;background-color:#fff}.u38Eh8VFsk .ant-tabs-tab{margin-top:0 !important;margin-bottom:0 !important}.u38Eh8VFsk .BEkM2t3G99{padding:0;width:200px;height:84px;margin-bottom:12px}.u38Eh8VFsk .BEkM2t3G99>button:not(:first-child){margin-top:6px}.u38Eh8VFsk .-nXeGKD8kF{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;width:200px;height:30px}.u38Eh8VFsk .-nXeGKD8kF ._5VmWsyrLCH{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around;opacity:0;-webkit-transition:all ease-in .3s;transition:all ease-in .3s}.u38Eh8VFsk .-nXeGKD8kF:hover ._5VmWsyrLCH{opacity:1 !important}.u38Eh8VFsk .k9cgSDjhNB{height:100%;overflow:auto}.u38Eh8VFsk ._9\+fphMtRSJ{height:84px;padding:0 8px;margin-bottom:12px}.u38Eh8VFsk .anticon{margin:0 4px}.u38Eh8VFsk .ant-divider-vertical{margin:0 !important}.u38Eh8VFsk .ant-tabs-dropdown-menu-item>span:first-child>div:first-child{display:-webkit-box;display:-ms-flexbox;display:flex}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}._9R5trInpZG{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}._5JyfXVGTti{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.nNqV6OHDQh{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.nNqV6OHDQh>i,.nNqV6OHDQh>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.Qx1CakHon7{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.EDEc87Fnft{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.h8o4t9JmBX{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.\+vKAvBYKaZ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.pPZJ9v7HXr{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._4YFTpewp5j{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.koCYtM9\+vv{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.koCYtM9\+vv .vOYgF-k9Py{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.koCYtM9\+vv .vOYgF-k9Py>span{color:rgba(0,0,0,0.65)}.ZHqTbS4rz0{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.ZHqTbS4rz0 ._3urVUW2toJ{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.ZHqTbS4rz0 ._3urVUW2toJ>span{font-size:8px}._2vcnGpigq1 .ant-popover-inner-content{padding:0}._2vcnGpigq1 .ant-popover-arrow{border-color:#475365 !important}._2vcnGpigq1 .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}._96kXmNteOK{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.oIpeTA4z6q{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.oIpeTA4z6q .aIXpdX9gaV{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.iOhbCqRSSM{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.tDEUEDFRyl{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.tDEUEDFRyl{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.OrES5gh6Dy{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.Jxexjgb-YJ html,.Jxexjgb-YJ body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.Jxexjgb-YJ body,.Jxexjgb-YJ div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.Jxexjgb-YJ textarea{border:none !important;padding-left:0 !important}.Jxexjgb-YJ table,.Jxexjgb-YJ tr,.Jxexjgb-YJ td{page-break-inside:avoid}.Jxexjgb-YJ div{page-break-inside:avoid}.Jxexjgb-YJ thead{display:table-header-group}.Jxexjgb-YJ tfoot{display:table-footer-group}.Jxexjgb-YJ *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.Jxexjgb-YJ .Uko9PfL-Ze,.Jxexjgb-YJ .no-print,.Jxexjgb-YJ .react-resizable-handle,.Jxexjgb-YJ .fc-whiteboard-toolbar,.Jxexjgb-YJ .ant-modal-root,.Jxexjgb-YJ .ant-alert,.Jxexjgb-YJ .I59dFwsaFc,.Jxexjgb-YJ ._6Ev7a9OvE1{display:none !important}.Jxexjgb-YJ .vxUqwTjSIL{display:none !important}}.Px\+4HNp701{padding:24px 0;padding-top:0;background-color:#fff}.Px\+4HNp701 .ant-tabs-tab{margin-top:0 !important;margin-bottom:0 !important}.Px\+4HNp701 ._5-SwjRPPsA{width:200px;height:40px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:0;margin-bottom:12px}.Px\+4HNp701 ._1YDGVNTGrV{width:200px;height:30px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.Px\+4HNp701 ._1YDGVNTGrV .pRpSVBrhsO{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around;opacity:0;-webkit-transition:all ease-in .3s;transition:all ease-in .3s}.Px\+4HNp701 ._1YDGVNTGrV:hover .pRpSVBrhsO{opacity:1}.Px\+4HNp701 .LWcmVIo1Am{height:84px;padding:0 8px;margin-bottom:12px}.Px\+4HNp701 .FeCEDuJzBF{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-bottom:8px;margin-right:16px}.Px\+4HNp701 .anticon{margin:0 4px}.Px\+4HNp701 .ant-divider-vertical{margin:0 !important}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.xmH-n9mKk2{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.xfQhRyuTmC{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.qO3dniR0dt{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.qO3dniR0dt>i,.qO3dniR0dt>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.vbl0Zlr7o4{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.nvg\+BPGIJb{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.a\+t-FVX9bH{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.V2KcS\+Flv5{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.O\+oFTa\+vut{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.DOIq8uclfF{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.lXm\+AWcRXa{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.lXm\+AWcRXa .mZ2x2lDz3-{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.lXm\+AWcRXa .mZ2x2lDz3->span{color:rgba(0,0,0,0.65)}.Rc0oY3ZzzX{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.Rc0oY3ZzzX .rHcgADTy0d{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.Rc0oY3ZzzX .rHcgADTy0d>span{font-size:8px}.UddOFkd988 .ant-popover-inner-content{padding:0}.UddOFkd988 .ant-popover-arrow{border-color:#475365 !important}.UddOFkd988 .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.D4yURvi7mJ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.NNOBVvJlMF{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.NNOBVvJlMF .qftvOoYcWU{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.x5vXL151yd{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.RMUK69OZVw{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.RMUK69OZVw{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.OrdUrN-G7g{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.mT5t24urLB html,.mT5t24urLB body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.mT5t24urLB body,.mT5t24urLB div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.mT5t24urLB textarea{border:none !important;padding-left:0 !important}.mT5t24urLB table,.mT5t24urLB tr,.mT5t24urLB td{page-break-inside:avoid}.mT5t24urLB div{page-break-inside:avoid}.mT5t24urLB thead{display:table-header-group}.mT5t24urLB tfoot{display:table-footer-group}.mT5t24urLB *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.mT5t24urLB ._9Y-Ft9cD8b,.mT5t24urLB .no-print,.mT5t24urLB .react-resizable-handle,.mT5t24urLB .fc-whiteboard-toolbar,.mT5t24urLB .ant-modal-root,.mT5t24urLB .ant-alert,.mT5t24urLB .R3iL4SQTri,.mT5t24urLB ._1rO3ZGcTkw{display:none !important}.mT5t24urLB .n830\+fpjGd{display:none !important}}._8iTBeM\+Wwj{height:100%;background-color:#fff}._8iTBeM\+Wwj .G866BRbFeE{height:100%}._8iTBeM\+Wwj .lXmQJa7t78{height:100%;padding:24;border:1px solid #f0f0f0;overflow-y:auto}._8iTBeM\+Wwj .I44cP863M5{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-bottom:8px}._8iTBeM\+Wwj .I44cP863M5 ._7ntg8XTW-R{opacity:0;margin-left:8px;-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out}._8iTBeM\+Wwj .I44cP863M5:hover ._7ntg8XTW-R{opacity:1}._8iTBeM\+Wwj .-gXdU\+mCwS{margin-bottom:8px;color:#6874e2;border-color:#6874e2}._8iTBeM\+Wwj .fHDvdFyEHr{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-bottom:8px}._8iTBeM\+Wwj .ant-tabs-tab-btn{width:200px;text-align:left}._8iTBeM\+Wwj .ant-tabs-content-holder{border:none}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.DdffkVA6Ui{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.fXUrgGseSE{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}._6sLLYEn48Q{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}._6sLLYEn48Q>i,._6sLLYEn48Q>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.WHq\+hQ0hx2{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.HzEoXt6KZJ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.NP6eaRDK49{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}._9BxFUjRRbi{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.hty7\+jiPY2{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.FjYn4xNkN3{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.ZOE6XCk3tu{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.ZOE6XCk3tu .LoXUyxnatC{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.ZOE6XCk3tu .LoXUyxnatC>span{color:rgba(0,0,0,0.65)}.AnBCqnHIDM{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.AnBCqnHIDM .qCpNeCQxVM{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.AnBCqnHIDM .qCpNeCQxVM>span{font-size:8px}.KeZjnN3Bjg .ant-popover-inner-content{padding:0}.KeZjnN3Bjg .ant-popover-arrow{border-color:#475365 !important}.KeZjnN3Bjg .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.VJ68Fo9pRJ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}._8\+d1EjA1yO{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._8\+d1EjA1yO .A586euEYKm{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.P5Xkt5C2S3{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.tndWuBEzB9{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.tndWuBEzB9{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.FlbYxBSa6h{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.l1r-nGqBsQ html,.l1r-nGqBsQ body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.l1r-nGqBsQ body,.l1r-nGqBsQ div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.l1r-nGqBsQ textarea{border:none !important;padding-left:0 !important}.l1r-nGqBsQ table,.l1r-nGqBsQ tr,.l1r-nGqBsQ td{page-break-inside:avoid}.l1r-nGqBsQ div{page-break-inside:avoid}.l1r-nGqBsQ thead{display:table-header-group}.l1r-nGqBsQ tfoot{display:table-footer-group}.l1r-nGqBsQ *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.l1r-nGqBsQ .SSoV12AYfR,.l1r-nGqBsQ .no-print,.l1r-nGqBsQ .react-resizable-handle,.l1r-nGqBsQ .fc-whiteboard-toolbar,.l1r-nGqBsQ .ant-modal-root,.l1r-nGqBsQ .ant-alert,.l1r-nGqBsQ .X65zvDtcmr,.l1r-nGqBsQ .jzD\+Baic7l{display:none !important}.l1r-nGqBsQ .VjdWIxfzNO{display:none !important}}.V3TP-ZTN6E{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);padding:12px;padding-top:0;position:relative}.ant-tabs-content{height:100%}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}._04zgkC68GN{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.Tulit2Pmws{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.wH1O6Eu5Ik{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.wH1O6Eu5Ik>i,.wH1O6Eu5Ik>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.NkSGima9oL{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._5xe53xTNiH{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.mUqVab1XI4{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.VWaES5pW92{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.SdN0aAmdU7{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.YUPfoAWpoG{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.ehxRbPj2w-{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.ehxRbPj2w- .PZFNUqVXlM{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.ehxRbPj2w- .PZFNUqVXlM>span{color:rgba(0,0,0,0.65)}.msTSRigPRa{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.msTSRigPRa ._70ol58NLu-{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.msTSRigPRa ._70ol58NLu->span{font-size:8px}.fzTjm-fzV3 .ant-popover-inner-content{padding:0}.fzTjm-fzV3 .ant-popover-arrow{border-color:#475365 !important}.fzTjm-fzV3 .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.wMzEnK\+OWP{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.Cg9M6F4svp{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.Cg9M6F4svp .HjfVQPIDnT{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}._1SMti6szel{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.ypLcQhZyQo{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.ypLcQhZyQo{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.VnbD3Wf\+rZ{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.gsJP2wpw\+a html,.gsJP2wpw\+a body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.gsJP2wpw\+a body,.gsJP2wpw\+a div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.gsJP2wpw\+a textarea{border:none !important;padding-left:0 !important}.gsJP2wpw\+a table,.gsJP2wpw\+a tr,.gsJP2wpw\+a td{page-break-inside:avoid}.gsJP2wpw\+a div{page-break-inside:avoid}.gsJP2wpw\+a thead{display:table-header-group}.gsJP2wpw\+a tfoot{display:table-footer-group}.gsJP2wpw\+a *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.gsJP2wpw\+a .tjZgB6JTqJ,.gsJP2wpw\+a .no-print,.gsJP2wpw\+a .react-resizable-handle,.gsJP2wpw\+a .fc-whiteboard-toolbar,.gsJP2wpw\+a .ant-modal-root,.gsJP2wpw\+a .ant-alert,.gsJP2wpw\+a .R-Cq0KW8R6,.gsJP2wpw\+a .\+2QtfKarZv{display:none !important}.gsJP2wpw\+a .qgT8elTKma{display:none !important}}._6lmk\+xIS1X{width:100%;height:100%;position:relative}._6lmk\+xIS1X .ant-page-header-heading-title{font-size:16px;font-weight:normal}._6lmk\+xIS1X .ant-page-header{padding:0}._6lmk\+xIS1X ._1FkaZe6sn4{border-radius:4px;padding:18px 32px;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);color:rgba(0,0,0,0.65);background-color:#fff;margin-bottom:24px}._6lmk\+xIS1X ._1FkaZe6sn4 .Uo3-MaKW97{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:24px}._6lmk\+xIS1X ._1FkaZe6sn4 .Uo3-MaKW97 div:first-child{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}._6lmk\+xIS1X ._1FkaZe6sn4 .Uo3-MaKW97 div:first-child>span.zDCyXj5q\+R{color:#6874e2;font-size:20px;margin-left:15px}._6lmk\+xIS1X .D9JIL7qzx2{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:sticky;bottom:0;height:60px;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12);z-index:999}._6lmk\+xIS1X .D9JIL7qzx2 .B\+JMbjo62I{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:baseline;-ms-flex-align:baseline;align-items:baseline;font-size:18px;margin-right:18px;color:rgba(0,0,0,0.65)}._6lmk\+xIS1X .D9JIL7qzx2 .B\+JMbjo62I>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap;color:#fa6400}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.WBKDtQci9v{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}._8HjN8bgSVV{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.QWxgW3yyZc{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.QWxgW3yyZc>i,.QWxgW3yyZc>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}._2Z7FUC2jtM{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.L\+94vSIZRD{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.kS0mL1B9qX{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.-eOrvt9aHE{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.\-2qFIYJXE9{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._5MQFH9GV3B{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.jH3NFLRNHN{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.jH3NFLRNHN .DnCR-r4bTO{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.jH3NFLRNHN .DnCR-r4bTO>span{color:rgba(0,0,0,0.65)}.wk5szXOIuW{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.wk5szXOIuW .W\+RtKmefQt{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.wk5szXOIuW .W\+RtKmefQt>span{font-size:8px}.VWL9xFJHAt .ant-popover-inner-content{padding:0}.VWL9xFJHAt .ant-popover-arrow{border-color:#475365 !important}.VWL9xFJHAt .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.vLL8wyBWSX{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.Lnz5lss0gd{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.Lnz5lss0gd .m8xhvqkI8D{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.X3xD0OMCzT{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.BuEvuDEkpd{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.BuEvuDEkpd{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.-dQ0zk94lU{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{._8meDIeYQrn html,._8meDIeYQrn body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}._8meDIeYQrn body,._8meDIeYQrn div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}._8meDIeYQrn textarea{border:none !important;padding-left:0 !important}._8meDIeYQrn table,._8meDIeYQrn tr,._8meDIeYQrn td{page-break-inside:avoid}._8meDIeYQrn div{page-break-inside:avoid}._8meDIeYQrn thead{display:table-header-group}._8meDIeYQrn tfoot{display:table-footer-group}._8meDIeYQrn *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}._8meDIeYQrn .jmMZm67wFZ,._8meDIeYQrn .no-print,._8meDIeYQrn .react-resizable-handle,._8meDIeYQrn .fc-whiteboard-toolbar,._8meDIeYQrn .ant-modal-root,._8meDIeYQrn .ant-alert,._8meDIeYQrn .\+TAaIid51w,._8meDIeYQrn .T1aBm\+8FLY{display:none !important}._8meDIeYQrn .N1EJZb2t9L{display:none !important}}
.VvHis2EGGO{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}._6kZ0-dxPjF{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.Fcic58vcZt{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.W4Ga1ynn7b{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.W4Ga1ynn7b>i,.W4Ga1ynn7b>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.Kplp8pqaO8{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._3FO12Llnz\+{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.N99PCJNRUt{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.kyypJcDPwX{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.iqXZpaQ1ai{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.\+5nlL5mBgM{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._7iTLbGHUWn{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}._7iTLbGHUWn .UYp4A9vYW4{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}._7iTLbGHUWn .UYp4A9vYW4>span{color:rgba(0,0,0,0.65)}.uMtYqvxmeQ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.uMtYqvxmeQ .ecEgjhIAO\+{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.uMtYqvxmeQ .ecEgjhIAO\+>span{font-size:8px}.fWuQGWScVv .ant-popover-inner-content{padding:0}.fWuQGWScVv .ant-popover-arrow{border-color:#475365 !important}.fWuQGWScVv .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.Hn6HGAzbkr{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}._3Q3brnceJs{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._3Q3brnceJs .tiNqJP01OJ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.laRb275ZDQ{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.DzXw4bp4-R{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.DzXw4bp4-R{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}._9qz1Klc\+P3{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.XWN68ZZLjY html,.XWN68ZZLjY body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.XWN68ZZLjY body,.XWN68ZZLjY div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.XWN68ZZLjY textarea{border:none !important;padding-left:0 !important}.XWN68ZZLjY table,.XWN68ZZLjY tr,.XWN68ZZLjY td{page-break-inside:avoid}.XWN68ZZLjY div{page-break-inside:avoid}.XWN68ZZLjY thead{display:table-header-group}.XWN68ZZLjY tfoot{display:table-footer-group}.XWN68ZZLjY *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.XWN68ZZLjY .\+dSdrdAN\+S,.XWN68ZZLjY .no-print,.XWN68ZZLjY .react-resizable-handle,.XWN68ZZLjY .fc-whiteboard-toolbar,.XWN68ZZLjY .ant-modal-root,.XWN68ZZLjY .ant-alert,.XWN68ZZLjY .yJZvzDzCo0,.XWN68ZZLjY .PXramlBkzh{display:none !important}.XWN68ZZLjY ._4eqTGyFAi3{display:none !important}}.I-jWj\+i0hb{position:relative;background:black;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.dJuxDtVVGa{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.S2jTFht82d{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}._0D66W9k8I0{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}._0D66W9k8I0>i,._0D66W9k8I0>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.p69ZKHG8uV{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.fJVZz52GDs{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.d28E4KlJbw{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}._2RpL5BrL2o{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.Jan0zg7r2A{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.nhw5K7UmAw{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.nGihHTtJRW{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.nGihHTtJRW .lRihc3KKDH{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.nGihHTtJRW .lRihc3KKDH>span{color:rgba(0,0,0,0.65)}.ZehCFrf0or{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.ZehCFrf0or .pp425tC0ok{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.ZehCFrf0or .pp425tC0ok>span{font-size:8px}.bdx6bCDvWc .ant-popover-inner-content{padding:0}.bdx6bCDvWc .ant-popover-arrow{border-color:#475365 !important}.bdx6bCDvWc .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.MS-w5UQTee{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.qd4pC\+Q\+3H{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.qd4pC\+Q\+3H .m8S909N26B{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.o-hRXJMRFq{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.M30v\+1EQh7{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.M30v\+1EQh7{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}._1GwxibwnRt{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.mIda1HFYTZ html,.mIda1HFYTZ body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.mIda1HFYTZ body,.mIda1HFYTZ div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.mIda1HFYTZ textarea{border:none !important;padding-left:0 !important}.mIda1HFYTZ table,.mIda1HFYTZ tr,.mIda1HFYTZ td{page-break-inside:avoid}.mIda1HFYTZ div{page-break-inside:avoid}.mIda1HFYTZ thead{display:table-header-group}.mIda1HFYTZ tfoot{display:table-footer-group}.mIda1HFYTZ *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.mIda1HFYTZ .GtnHWMIG\+e,.mIda1HFYTZ .no-print,.mIda1HFYTZ .react-resizable-handle,.mIda1HFYTZ .fc-whiteboard-toolbar,.mIda1HFYTZ .ant-modal-root,.mIda1HFYTZ .ant-alert,.mIda1HFYTZ .byb-ywjELR,.mIda1HFYTZ .Q5cz5f1dLC{display:none !important}.mIda1HFYTZ .Rjt\+rbggI0{display:none !important}}.pCaGBS7LUJ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;height:100%;overflow:hidden}._5eRQv-gqEP{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;-webkit-box-flex:0;-ms-flex:0 0 60px;flex:0 0 60px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}._5eRQv-gqEP .JidTlHvB\+l{font-size:18px;font-family:PingFang-SC;color:rgba(0,0,0,0.65);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.LUNTjGnNuy{width:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);-webkit-box-flex:1;-ms-flex:1 1 1px;flex:1 1 1px;margin-top:16px;padding:16px}.LUNTjGnNuy .upXktGAkOV{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:50px;margin-bottom:16px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.LUNTjGnNuy .RzKr-D3WPs{display:-webkit-box;display:-ms-flexbox;display:flex}.LUNTjGnNuy .RzKr-D3WPs .JidTlHvB\+l{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;cursor:pointer}.LUNTjGnNuy .RzKr-D3WPs .JidTlHvB\+l .LUKEDQ8HDC{background:#32c5ff;width:20px;height:20px;border-radius:6px;display:inline-block}.LUNTjGnNuy .RzKr-D3WPs .JidTlHvB\+l .h0weKPRpyJ{margin-left:8px;margin-right:16px}.LUNTjGnNuy .-R0MjoBdtU{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;max-height:calc(100vh - 250px);overflow:auto}.LUNTjGnNuy .EVirjGldTG{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;max-height:calc(100vh - 250px);overflow:auto;max-height:calc(100vh - 100px)}
.jfW4o5VZ0p{width:130px;height:130px;margin:0 24px 16px 0;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12);overflow:hidden}.jfW4o5VZ0p .YyriIgKVBE{padding:8px;height:calc(100% - 36px)}.jfW4o5VZ0p .YyriIgKVBE ._8b-7cY2zUe{width:100%}.jfW4o5VZ0p .YyriIgKVBE ._8b-7cY2zUe:first-child{-webkit-box-flex:1;-ms-flex:1 1 1px;flex:1 1 1px}.jfW4o5VZ0p .YyriIgKVBE ._8b-7cY2zUe:last-child{height:14px}.jfW4o5VZ0p .YyriIgKVBE .Dwa7xVK-z3{width:14px;height:14px}.jfW4o5VZ0p .-AOawah7pD{height:36px;color:#fff;position:relative}.jfW4o5VZ0p .JTm-2zL26Z{border-radius:0 0 10px 10px;position:absolute;width:130px;background:rgba(41, 40, 171);z-index:2;top:0;bottom:0;left:0}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.qDdKGS4XCp{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.yFrcVkRVJj{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.MediafuUrT{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.MediafuUrT>i,.MediafuUrT>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.bGCfDdSyJf{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._7gX-ZgqRlA{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.y9iYfcJ9qr{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.uUz5Cj9mGJ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.WNr5xd3PRu{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.LaVIh4g0vZ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.SpAw9TQy7Z{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.SpAw9TQy7Z .HS1CYEMtIv{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.SpAw9TQy7Z .HS1CYEMtIv>span{color:rgba(0,0,0,0.65)}.J8bGWeQYuB{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.J8bGWeQYuB ._30LWXHHp3K{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.J8bGWeQYuB ._30LWXHHp3K>span{font-size:8px}.C3AZDwzOXd .ant-popover-inner-content{padding:0}.C3AZDwzOXd .ant-popover-arrow{border-color:#475365 !important}.C3AZDwzOXd .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.ebfVKjU2N8{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.Ve5AfKR5Oh{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.Ve5AfKR5Oh ._59KEgZVFOL{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.GBpd42cX\+H{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.z46TV-FmJw{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.z46TV-FmJw{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.NAyDUpY6iR{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{._2eUo6WkrQQ html,._2eUo6WkrQQ body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}._2eUo6WkrQQ body,._2eUo6WkrQQ div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}._2eUo6WkrQQ textarea{border:none !important;padding-left:0 !important}._2eUo6WkrQQ table,._2eUo6WkrQQ tr,._2eUo6WkrQQ td{page-break-inside:avoid}._2eUo6WkrQQ div{page-break-inside:avoid}._2eUo6WkrQQ thead{display:table-header-group}._2eUo6WkrQQ tfoot{display:table-footer-group}._2eUo6WkrQQ *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}._2eUo6WkrQQ .Pi3kiRowFo,._2eUo6WkrQQ .no-print,._2eUo6WkrQQ .react-resizable-handle,._2eUo6WkrQQ .fc-whiteboard-toolbar,._2eUo6WkrQQ .ant-modal-root,._2eUo6WkrQQ .ant-alert,._2eUo6WkrQQ .jimSSnV0-7,._2eUo6WkrQQ .cKHrwIbQqK{display:none !important}._2eUo6WkrQQ .Zn2VMfyjDr{display:none !important}}.MQOaKaodBn{position:relative}.zwRHPVos-L{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;min-height:300px}.ojpRH0fQCf{width:100%;height:50px;margin-bottom:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}
.KeUT3jmpPq{position:relative;width:100%;height:100%;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/beijing%20%281%29.png');background-size:100% 100%}.KeUT3jmpPq img{width:100%;height:100%}
._1vNpZmvU2b{padding:12px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}._7UvWLhJW11{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.QZrgybm3pL{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.cYRbCzvnp7{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.cYRbCzvnp7>i,.cYRbCzvnp7>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.H86C8upt4e{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.VXkQWxoOfA{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.O1DN7fVXQk{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.H8NF0xq4XX{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.hWIHdgd7n3{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.VPOdpQAZMp{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.AVG1k2JY8p{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.AVG1k2JY8p .CK-NjRg2Cu{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.AVG1k2JY8p .CK-NjRg2Cu>span{color:rgba(0,0,0,0.65)}.xStnV47wFm{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.xStnV47wFm .sgzn6cgMJT{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.xStnV47wFm .sgzn6cgMJT>span{font-size:8px}._3VGCy6mZ7y .ant-popover-inner-content{padding:0}._3VGCy6mZ7y .ant-popover-arrow{border-color:#475365 !important}._3VGCy6mZ7y .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.pQu1iHX5T3{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}._9IlVyj4yLQ{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._9IlVyj4yLQ .FOIUPou696{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}._5AO2dFZZjW{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.mk1UMM5huu{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.mk1UMM5huu{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.WivehPXaG\+{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.ow\+yX9MUtD html,.ow\+yX9MUtD body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.ow\+yX9MUtD body,.ow\+yX9MUtD div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.ow\+yX9MUtD textarea{border:none !important;padding-left:0 !important}.ow\+yX9MUtD table,.ow\+yX9MUtD tr,.ow\+yX9MUtD td{page-break-inside:avoid}.ow\+yX9MUtD div{page-break-inside:avoid}.ow\+yX9MUtD thead{display:table-header-group}.ow\+yX9MUtD tfoot{display:table-footer-group}.ow\+yX9MUtD *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.ow\+yX9MUtD .buwx8tUoeI,.ow\+yX9MUtD .no-print,.ow\+yX9MUtD .react-resizable-handle,.ow\+yX9MUtD .fc-whiteboard-toolbar,.ow\+yX9MUtD .ant-modal-root,.ow\+yX9MUtD .ant-alert,.ow\+yX9MUtD .yFLOgHsz-D,.ow\+yX9MUtD .bTg6GrK97n{display:none !important}.ow\+yX9MUtD .ku5XZOH6Jf{display:none !important}}.dlPruyBNtl{width:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;height:100%;padding:16px}.dlPruyBNtl .ant-tag{margin-top:8px}._6QNOf77ZUp{border:1px solid #e9e9e9;margin-bottom:24px}._6QNOf77ZUp .xumP-OLGeI{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:#fafafa;height:54px;padding:0 24px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}._6QNOf77ZUp .VlYUi8SLRA{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-ms-flex-wrap:wrap;flex-wrap:wrap;min-height:60px;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;padding:16px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.HS-tQ2i3Lb{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.W4wlbK5eqW{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.jGcGtwhSap{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.jGcGtwhSap>i,.jGcGtwhSap>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.u2xmT7JZNU{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.Qnze8T5\+I1{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.AiKsXQMOPK{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.LZ9r1BOhfS{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}._07go4v7pvk{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.N8YWw1WoHH{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.p8BacHDVRB{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.p8BacHDVRB ._9lP6P64hFM{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.p8BacHDVRB ._9lP6P64hFM>span{color:rgba(0,0,0,0.65)}.I5OGOimzqV{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.I5OGOimzqV .PQGGJxu\+2z{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.I5OGOimzqV .PQGGJxu\+2z>span{font-size:8px}.IDsC6nStUV .ant-popover-inner-content{padding:0}.IDsC6nStUV .ant-popover-arrow{border-color:#475365 !important}.IDsC6nStUV .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}._9lQg0zmNvt{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.T04ikAPIW4{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.T04ikAPIW4 .vOz31vwGCK{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.Z0cHq3xQCW{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}._71VQzjmkir{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{._71VQzjmkir{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.pr-oOw4RFr{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.h8U33jiPSG html,.h8U33jiPSG body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.h8U33jiPSG body,.h8U33jiPSG div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.h8U33jiPSG textarea{border:none !important;padding-left:0 !important}.h8U33jiPSG table,.h8U33jiPSG tr,.h8U33jiPSG td{page-break-inside:avoid}.h8U33jiPSG div{page-break-inside:avoid}.h8U33jiPSG thead{display:table-header-group}.h8U33jiPSG tfoot{display:table-footer-group}.h8U33jiPSG *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.h8U33jiPSG .krA0i9Yxx0,.h8U33jiPSG .no-print,.h8U33jiPSG .react-resizable-handle,.h8U33jiPSG .fc-whiteboard-toolbar,.h8U33jiPSG .ant-modal-root,.h8U33jiPSG .ant-alert,.h8U33jiPSG .jNSMmUJsxK,.h8U33jiPSG .AFQJZ7sV5f{display:none !important}.h8U33jiPSG .YtUerpE5Dr{display:none !important}}._7nec-\+quKd{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;padding:24px}._7nec-\+quKd .O-ya3uN2uf{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:24px;color:rgba(0,0,0,0.65)}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.LvDxLknrP-{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.srEimWr7YH{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.bGpcCG-fbX{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.bGpcCG-fbX>i,.bGpcCG-fbX>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.RXag9LydDn{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.gRzGv6yxHi{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.UWgLIkDFRi{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.BjzeLuDEnU{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.SozikdH\+6o{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.qeYTvnV7fs{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.HfbPFj-g4n{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.HfbPFj-g4n .mWzNSdo\+k1{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.HfbPFj-g4n .mWzNSdo\+k1>span{color:rgba(0,0,0,0.65)}.Kbf5IfKnJ\+{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.Kbf5IfKnJ\+ .xjz5Lbql9f{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.Kbf5IfKnJ\+ .xjz5Lbql9f>span{font-size:8px}.iVp3PAO9o0 .ant-popover-inner-content{padding:0}.iVp3PAO9o0 .ant-popover-arrow{border-color:#475365 !important}.iVp3PAO9o0 .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.Xoj3MiDFGo{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.wukMeILEmw{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.wukMeILEmw .Mhf2JbLyZe{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.js6S7iSgeu{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.q4PZoHt8Gq{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.q4PZoHt8Gq{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}._7vIxMPD5ZO{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.e107akgo4\+ html,.e107akgo4\+ body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.e107akgo4\+ body,.e107akgo4\+ div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.e107akgo4\+ textarea{border:none !important;padding-left:0 !important}.e107akgo4\+ table,.e107akgo4\+ tr,.e107akgo4\+ td{page-break-inside:avoid}.e107akgo4\+ div{page-break-inside:avoid}.e107akgo4\+ thead{display:table-header-group}.e107akgo4\+ tfoot{display:table-footer-group}.e107akgo4\+ *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.e107akgo4\+ .bm-fcM1WrJ,.e107akgo4\+ .no-print,.e107akgo4\+ .react-resizable-handle,.e107akgo4\+ .fc-whiteboard-toolbar,.e107akgo4\+ .ant-modal-root,.e107akgo4\+ .ant-alert,.e107akgo4\+ .V5w0LMUhDQ,.e107akgo4\+ ._98G5aEDO-H{display:none !important}.e107akgo4\+ .Y2W59W2tLg{display:none !important}}.sajW6ncBwl .ant-collapse>.ant-collapse-item>.ant-collapse-header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}
.sy5ivHw\+I3{height:100%}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}._8VAAoNG1ho{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.DwgDowv6rH{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.Uf9wKCHSHx{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.Uf9wKCHSHx>i,.Uf9wKCHSHx>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.ayeNPu9Wmg{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.ajYlx132gN{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}._8qyUqG\+BeL{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.nNkZrk9z\+M{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.PFDakm9Wo8{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.OOS1qopSkY{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.VgROrIs9qc{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.VgROrIs9qc .iOXAmssmx0{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.VgROrIs9qc .iOXAmssmx0>span{color:rgba(0,0,0,0.65)}.-\+GdmsrFG4{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.-\+GdmsrFG4 .pZQnRc4ZWl{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.-\+GdmsrFG4 .pZQnRc4ZWl>span{font-size:8px}.jBNeqywAvS .ant-popover-inner-content{padding:0}.jBNeqywAvS .ant-popover-arrow{border-color:#475365 !important}.jBNeqywAvS .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.frR3xlr-oI{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}._7GVxv3N2tc{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._7GVxv3N2tc .DrhYvUH-KH{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}._6CvkvjFUnV{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.PX-u3n8CwR{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.PX-u3n8CwR{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}._6cm2WH51sK{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.jWIGqcbIgz html,.jWIGqcbIgz body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.jWIGqcbIgz body,.jWIGqcbIgz div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.jWIGqcbIgz textarea{border:none !important;padding-left:0 !important}.jWIGqcbIgz table,.jWIGqcbIgz tr,.jWIGqcbIgz td{page-break-inside:avoid}.jWIGqcbIgz div{page-break-inside:avoid}.jWIGqcbIgz thead{display:table-header-group}.jWIGqcbIgz tfoot{display:table-footer-group}.jWIGqcbIgz *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.jWIGqcbIgz .VeCuvuVQ6w,.jWIGqcbIgz .no-print,.jWIGqcbIgz .react-resizable-handle,.jWIGqcbIgz .fc-whiteboard-toolbar,.jWIGqcbIgz .ant-modal-root,.jWIGqcbIgz .ant-alert,.jWIGqcbIgz .\+BoVQlMoCe,.jWIGqcbIgz .h9vNnqmI2N{display:none !important}.jWIGqcbIgz .j6wlhZvpgw{display:none !important}}.lz0vx6bdEj{height:calc(100vh - 230px);width:100%;position:relative;overflow:auto}.mpyFPrGHPk{width:100%;height:36px;display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:16px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.mpyFPrGHPk .t90EjHKbiJ{width:100%;font-size:18px;color:#000;line-height:50px}.mpyFPrGHPk .t90EjHKbiJ .-EWRu4qFHX{color:#6874e2}.mpyFPrGHPk .i4g1cNiNTT{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.mpyFPrGHPk .i4g1cNiNTT .eFi1nhsEMV{font-size:14px;margin-left:28px;white-space:nowrap}.mpyFPrGHPk .i4g1cNiNTT .voAqXOKm7a{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-left:14px}.mpyFPrGHPk .C2I\+m-2eAD{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-left:14px}.mpyFPrGHPk .O\+hvc08bQ5{height:calc(100% - 100px)}.AZk84YVghP{margin-top:12px}.PZLjLe16hF{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-top:6px}.PZLjLe16hF input{margin-left:6px}._7-XhkCoLQe{color:#6874e2;cursor:pointer}.ntkHC3H61y{width:100%;max-height:450;overflow:auto}.BYEJIPzL8X{width:90px;height:90px;margin:6 12 0 0;position:relative}.BYEJIPzL8X .Cm6hizYk3h{background-color:rgba(255,255,255,0.75);height:22;width:22;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;border-radius:50%;cursor:pointer;color:#6874e2;position:absolute;right:0;top:0}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.xKLZTqlHYY{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.lvvWXETxLs{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.ysECGfRguS{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.ysECGfRguS>i,.ysECGfRguS>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}._14SDtIWuT\+{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.jyNaEnH7Gx{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.K1xDT4IKZ2{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.bD-b2EYT6s{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.d24k0aCHRK{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.jZqvkq0sBC{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.S7GXVb4MfD{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.S7GXVb4MfD .bXJTNXZGtx{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.S7GXVb4MfD .bXJTNXZGtx>span{color:rgba(0,0,0,0.65)}.hZnzzEqm1X{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.hZnzzEqm1X .ReamnXSPNo{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.hZnzzEqm1X .ReamnXSPNo>span{font-size:8px}.-o-IlwBh0n .ant-popover-inner-content{padding:0}.-o-IlwBh0n .ant-popover-arrow{border-color:#475365 !important}.-o-IlwBh0n .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.dYoK3MRK88{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.Qn4Ld1JXs6{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.Qn4Ld1JXs6 ._16Pp0wKBag{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.Dz7o-P1vR9{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.CYHDM-0tLP{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.CYHDM-0tLP{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}._3Pf8O2aHQ6{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.ltguFS6I-\+ html,.ltguFS6I-\+ body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.ltguFS6I-\+ body,.ltguFS6I-\+ div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.ltguFS6I-\+ textarea{border:none !important;padding-left:0 !important}.ltguFS6I-\+ table,.ltguFS6I-\+ tr,.ltguFS6I-\+ td{page-break-inside:avoid}.ltguFS6I-\+ div{page-break-inside:avoid}.ltguFS6I-\+ thead{display:table-header-group}.ltguFS6I-\+ tfoot{display:table-footer-group}.ltguFS6I-\+ *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.ltguFS6I-\+ .\+ArH7zHPQi,.ltguFS6I-\+ .no-print,.ltguFS6I-\+ .react-resizable-handle,.ltguFS6I-\+ .fc-whiteboard-toolbar,.ltguFS6I-\+ .ant-modal-root,.ltguFS6I-\+ .ant-alert,.ltguFS6I-\+ .zi4xmJy3NS,.ltguFS6I-\+ .i\+XKR2JGzd{display:none !important}.ltguFS6I-\+ .-R9Vh7SMkM{display:none !important}}.A9Q20btJZX{height:calc(100vh - 230px);width:100%;position:relative;overflow:auto}.grA1BFsosx{width:100%;height:36px;display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:16px;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.grA1BFsosx .cj69wvW27s{width:100%;font-size:18px;color:#000;line-height:50px}.grA1BFsosx .cj69wvW27s .KQjcZXDpHV{color:#6874e2}.grA1BFsosx ._9LfzmMTSca{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.grA1BFsosx ._9LfzmMTSca .MVZUk9PsP9{font-size:14px;margin-left:28px;white-space:nowrap}.grA1BFsosx ._9LfzmMTSca .\+5lx96V73v{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-left:14px}.grA1BFsosx .UYFJ9XkPWD{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-left:14px}.grA1BFsosx .lZr99y2Pe4{height:calc(100% - 100px)}.cac2QbvWFF{margin-top:12px}._4SmrMmKuAO{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-top:6px}._4SmrMmKuAO input{margin-left:6px}.AzfgHcqOeG{color:#6874e2;cursor:pointer}.aAIQE0nJ1A{display:-webkit-box;display:-ms-flexbox;display:flex}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.PCcC\+JCwog{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.Zv\+\+dhDpf5{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.ff77NZDPBe{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.ff77NZDPBe>i,.ff77NZDPBe>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.a-brWynuls{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.UBD9o5evOV{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.LEq3iLbQKY{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.T-WTvhY-jU{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.rUb\+pmOEWW{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._317OoVBAqw{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.YvPAI-nZiC{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.YvPAI-nZiC .-dD2cnurkB{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.YvPAI-nZiC .-dD2cnurkB>span{color:rgba(0,0,0,0.65)}._0YJCKxoH9Q{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}._0YJCKxoH9Q .S-ftWTLbaP{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}._0YJCKxoH9Q .S-ftWTLbaP>span{font-size:8px}.WVTupdVAVn .ant-popover-inner-content{padding:0}.WVTupdVAVn .ant-popover-arrow{border-color:#475365 !important}.WVTupdVAVn .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.QX0ILNiKD\+{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.SDydd2R720{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.SDydd2R720 .wE\+3HEfDUZ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.ko9L2iVd8i{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.gbrj89xaFd{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.gbrj89xaFd{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.Z74KORG5Qr{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.-fcxav5fsT html,.-fcxav5fsT body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.-fcxav5fsT body,.-fcxav5fsT div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.-fcxav5fsT textarea{border:none !important;padding-left:0 !important}.-fcxav5fsT table,.-fcxav5fsT tr,.-fcxav5fsT td{page-break-inside:avoid}.-fcxav5fsT div{page-break-inside:avoid}.-fcxav5fsT thead{display:table-header-group}.-fcxav5fsT tfoot{display:table-footer-group}.-fcxav5fsT *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.-fcxav5fsT .keTfsxE9h7,.-fcxav5fsT .no-print,.-fcxav5fsT .react-resizable-handle,.-fcxav5fsT .fc-whiteboard-toolbar,.-fcxav5fsT .ant-modal-root,.-fcxav5fsT .ant-alert,.-fcxav5fsT .VSmCLis-ly,.-fcxav5fsT .QucvNLTDxE{display:none !important}.-fcxav5fsT .cfiYfA3X33{display:none !important}}._9T4bjHqN1N{width:100%;position:relative;padding:24px;overflow:auto}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.Thtzb1qozo{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.bV\+ZItq4ao{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.EG\+GvE7Ij1{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.EG\+GvE7Ij1>i,.EG\+GvE7Ij1>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.Vn84BTag4R{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.iAeYXkomY5{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.CseKxlebRE{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}._6NVNE4nA41{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.YBTWHWEFuq{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.o-pRES95MD{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.T0Gma-GfdH{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.T0Gma-GfdH .QSiSrsRONa{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.T0Gma-GfdH .QSiSrsRONa>span{color:rgba(0,0,0,0.65)}.maIa8VBRX4{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.maIa8VBRX4 .\+hr4AQtUfb{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.maIa8VBRX4 .\+hr4AQtUfb>span{font-size:8px}._1\+krXSXV5M .ant-popover-inner-content{padding:0}._1\+krXSXV5M .ant-popover-arrow{border-color:#475365 !important}._1\+krXSXV5M .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.FlkL6YhaD8{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.QhngxW16Rs{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.QhngxW16Rs .pEFRbfThsa{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.O\+z\+Zlhwy0{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}._7BRXyAUEzW{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{._7BRXyAUEzW{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}._7Gws0zuyzY{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.oA1LNjd9AS html,.oA1LNjd9AS body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.oA1LNjd9AS body,.oA1LNjd9AS div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.oA1LNjd9AS textarea{border:none !important;padding-left:0 !important}.oA1LNjd9AS table,.oA1LNjd9AS tr,.oA1LNjd9AS td{page-break-inside:avoid}.oA1LNjd9AS div{page-break-inside:avoid}.oA1LNjd9AS thead{display:table-header-group}.oA1LNjd9AS tfoot{display:table-footer-group}.oA1LNjd9AS *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.oA1LNjd9AS .XAdt24wXbY,.oA1LNjd9AS .no-print,.oA1LNjd9AS .react-resizable-handle,.oA1LNjd9AS .fc-whiteboard-toolbar,.oA1LNjd9AS .ant-modal-root,.oA1LNjd9AS .ant-alert,.oA1LNjd9AS .IX192dV7t5,.oA1LNjd9AS .OJjomA7zuI{display:none !important}.oA1LNjd9AS ._8LC-JVVCVj{display:none !important}}._9WWPJxTER1{width:calc(100% - 24px);position:relative}._9gMp4vi2mi{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:24px}._7auax3UWs2{max-height:calc(100vh - 340px);width:100%;overflow:auto}.EHcdrWlpyC{color:#6874e2;cursor:pointer}.OJwNfPUty6 span{color:#6874e2;cursor:pointer}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.oG\+nYTwnMj{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.PUn8SGvGJO{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.-RYOHCsRoE{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.-RYOHCsRoE>i,.-RYOHCsRoE>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.BosR8D1qDs{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.z88impUCfZ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}._0ZaiNAB6pM{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}._3D1eXISk0U{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.Dygyth3cMM{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.zp-NnUT4F3{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.T8g\+o6EcxN{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.T8g\+o6EcxN .N7ClK1UVLX{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.T8g\+o6EcxN .N7ClK1UVLX>span{color:rgba(0,0,0,0.65)}.UIXO-Recff{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.UIXO-Recff .L8\+5PMeSnD{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.UIXO-Recff .L8\+5PMeSnD>span{font-size:8px}.TQvQFNi\+oR .ant-popover-inner-content{padding:0}.TQvQFNi\+oR .ant-popover-arrow{border-color:#475365 !important}.TQvQFNi\+oR .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.Ux1Sq40Hz6{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.jTJfAwE05w{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.jTJfAwE05w .HVfbrSgEFn{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.mDMfIGhJhJ{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.yth3\+CxCFz{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.yth3\+CxCFz{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.rLwdfm6zul{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.tqH3bzpA\+U html,.tqH3bzpA\+U body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.tqH3bzpA\+U body,.tqH3bzpA\+U div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.tqH3bzpA\+U textarea{border:none !important;padding-left:0 !important}.tqH3bzpA\+U table,.tqH3bzpA\+U tr,.tqH3bzpA\+U td{page-break-inside:avoid}.tqH3bzpA\+U div{page-break-inside:avoid}.tqH3bzpA\+U thead{display:table-header-group}.tqH3bzpA\+U tfoot{display:table-footer-group}.tqH3bzpA\+U *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.tqH3bzpA\+U .-ozYW0wbbT,.tqH3bzpA\+U .no-print,.tqH3bzpA\+U .react-resizable-handle,.tqH3bzpA\+U .fc-whiteboard-toolbar,.tqH3bzpA\+U .ant-modal-root,.tqH3bzpA\+U .ant-alert,.tqH3bzpA\+U .pb7RVuzPSI,.tqH3bzpA\+U .eNt29k-DW4{display:none !important}.tqH3bzpA\+U .orK6KqMJpH{display:none !important}}._2eXWwDKvrf{width:100%;position:relative;padding:0 24px;overflow:auto}._2eXWwDKvrf .ArX\+H9h0x6{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}._2eXWwDKvrf .ArX\+H9h0x6 .IkqcWil5AU{display:-webkit-box;display:-ms-flexbox;display:flex}._2eXWwDKvrf .ArX\+H9h0x6 .IkqcWil5AU span{color:#6874e2;cursor:pointer}._2eXWwDKvrf .ArX\+H9h0x6 .rNya\+563Y5{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}._2eXWwDKvrf .ArX\+H9h0x6 .rNya\+563Y5 .T-6xL6zW08{margin:0 12px 0 0;height:20px;width:20px;border:1px solid rgba(0,0,0,0.1);border-radius:4px}._2eXWwDKvrf .l93Mds04Hy{display:-webkit-box;display:-ms-flexbox;display:flex;width:100%;-ms-flex-wrap:wrap;flex-wrap:wrap}._2eXWwDKvrf .l93Mds04Hy .JHNQTBt\+0m{position:relative;margin:12px 18px 0 0;padding:6px 30px;border:1px solid rgba(0,0,0,0.1);display:-webkit-box;display:-ms-flexbox;display:flex;border-radius:6px;-webkit-transition:all .3s;transition:all .3s;cursor:pointer}._2eXWwDKvrf .l93Mds04Hy .JHNQTBt\+0m .YCsCj-D9Pq{color:#6874e2;width:0;height:100%;overflow:hidden;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around;opacity:0;position:absolute;top:0;right:6px;-webkit-transition:all .3s;transition:all .3s}._2eXWwDKvrf .l93Mds04Hy .JHNQTBt\+0m:hover{position:relative;padding:6px 54px 6px 6px}._2eXWwDKvrf .l93Mds04Hy .JHNQTBt\+0m:hover .YCsCj-D9Pq{width:48px;opacity:1}._0X6kCf4VSq{margin-top:24px;width:100%}._0X6kCf4VSq .vGbLNgwCsO{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-top:24px}._0X6kCf4VSq .vGbLNgwCsO .hHg9dYZbOj{width:100px}._0X6kCf4VSq .vGbLNgwCsO .o6pyULHm1N{width:calc(100% - 100px)}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.bdFA9GaOyH{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.QVoQ65ex3s{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.I2qTLrhaWt{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.I2qTLrhaWt>i,.I2qTLrhaWt>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.Rfz5m0\+H-E{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.KEvzZ57jo1{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.IQEKwQYYXX{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}._3bUqhERf2r{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.SbWYOZ7BTT{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.PJlwqT8rX9{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.N9LS6xULNw{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.N9LS6xULNw .IQKX\+QuQMC{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.N9LS6xULNw .IQKX\+QuQMC>span{color:rgba(0,0,0,0.65)}.y62ntqpgsc{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.y62ntqpgsc .x-b\+I2jSqS{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.y62ntqpgsc .x-b\+I2jSqS>span{font-size:8px}.GdhTvXSmtq .ant-popover-inner-content{padding:0}.GdhTvXSmtq .ant-popover-arrow{border-color:#475365 !important}.GdhTvXSmtq .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.Bz-ydKYcRA{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.NeQG8-lmOJ{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.NeQG8-lmOJ .NCNmuX1sJ-{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.AhaBmTeANO{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.rzhK9g8757{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.rzhK9g8757{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.tDzGacwL28{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.tGgFNerPCL html,.tGgFNerPCL body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.tGgFNerPCL body,.tGgFNerPCL div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.tGgFNerPCL textarea{border:none !important;padding-left:0 !important}.tGgFNerPCL table,.tGgFNerPCL tr,.tGgFNerPCL td{page-break-inside:avoid}.tGgFNerPCL div{page-break-inside:avoid}.tGgFNerPCL thead{display:table-header-group}.tGgFNerPCL tfoot{display:table-footer-group}.tGgFNerPCL *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.tGgFNerPCL .GUG7y54iH2,.tGgFNerPCL .no-print,.tGgFNerPCL .react-resizable-handle,.tGgFNerPCL .fc-whiteboard-toolbar,.tGgFNerPCL .ant-modal-root,.tGgFNerPCL .ant-alert,.tGgFNerPCL .-vUsnKxXTi,.tGgFNerPCL .EWDMpYNVg2{display:none !important}.tGgFNerPCL .v1BpkTGaFi{display:none !important}}.hGDHZm7g02{width:100%;position:relative;padding:24px;padding-top:0;overflow:auto;background-color:#fff}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.CwCuYYFQDG{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.AWrwExPhkJ{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.MxEUR5ogVM{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.MxEUR5ogVM>i,.MxEUR5ogVM>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.Tasr8fmNQk{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.ej17Y0EVWO{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.HzchkgJUjM{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.lzLuO-JLhq{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.RuJlLEMDv-{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.ycFLykm7CA{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._53I7LCEIpz{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}._53I7LCEIpz .Ons7gEbqhA{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}._53I7LCEIpz .Ons7gEbqhA>span{color:rgba(0,0,0,0.65)}.TY5HuGPRsT{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.TY5HuGPRsT ._8E8cOLOKW7{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.TY5HuGPRsT ._8E8cOLOKW7>span{font-size:8px}.jfEQ\+Asu\+M .ant-popover-inner-content{padding:0}.jfEQ\+Asu\+M .ant-popover-arrow{border-color:#475365 !important}.jfEQ\+Asu\+M .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}._0bvSE0CokQ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}._94H\+Uhi1gm{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._94H\+Uhi1gm .\+4uvjNOls4{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.SINTM1H94P{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.VgVF0VSpT2{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.VgVF0VSpT2{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.Rzvk71lMGT{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.gMwuqaW0aG html,.gMwuqaW0aG body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.gMwuqaW0aG body,.gMwuqaW0aG div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.gMwuqaW0aG textarea{border:none !important;padding-left:0 !important}.gMwuqaW0aG table,.gMwuqaW0aG tr,.gMwuqaW0aG td{page-break-inside:avoid}.gMwuqaW0aG div{page-break-inside:avoid}.gMwuqaW0aG thead{display:table-header-group}.gMwuqaW0aG tfoot{display:table-footer-group}.gMwuqaW0aG *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.gMwuqaW0aG ._54yUcQz\+\+u,.gMwuqaW0aG .no-print,.gMwuqaW0aG .react-resizable-handle,.gMwuqaW0aG .fc-whiteboard-toolbar,.gMwuqaW0aG .ant-modal-root,.gMwuqaW0aG .ant-alert,.gMwuqaW0aG ._6XNiCCM2Cx,.gMwuqaW0aG .CeEn1gU8Rb{display:none !important}.gMwuqaW0aG .LMrs6S27cw{display:none !important}}.TgYO\+hcnD3{width:100%;position:relative;padding:24px;padding-top:0;overflow:auto;background-color:#fff}.IVK3D\+yJXy{width:100%;margin-top:12px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.IVK3D\+yJXy ._1FgcGOhpAi{font-size:16px}.IVK3D\+yJXy .vcsJWL3YWI{font-size:14px;color:#6874e2;cursor:pointer}.IVK3D\+yJXy .vcsJWL3YWI:hover{text-decoration:underline}.FFBjxvH5bM{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.FFBjxvH5bM .DH6aNtyCcz{width:240px;height:120px;background:url(https://ufc-assets.oss-cn-shanghai.aliyuncs.com/%E7%A7%BB%E5%8A%A8%E7%AB%AF/%E7%99%BB%E5%BD%95%E8%83%8C%E6%99%AF%E5%9B%BE.png);background-size:cover;margin:24px 24px 0 0;border:1px solid #e9e9e9;-webkit-transition:all .3s;transition:all .3s;position:relative;cursor:pointer}.FFBjxvH5bM .DH6aNtyCcz .XkFScfYng-{font-size:14px;font-weight:bold;width:100%;height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-transition:all .3s;transition:all .3s}.FFBjxvH5bM .DH6aNtyCcz .YD-5d-j2vw{width:100%;height:0;-webkit-transition:all .3s;transition:all .3s}.FFBjxvH5bM .DH6aNtyCcz .YD-5d-j2vw div{display:none}.FFBjxvH5bM .DH6aNtyCcz:hover{-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);-webkit-transform:translateY(-8px);transform:translateY(-8px)}.FFBjxvH5bM .DH6aNtyCcz:hover .XkFScfYng-{font-size:14px;font-weight:bold;width:100%;height:80px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.FFBjxvH5bM .DH6aNtyCcz:hover .YD-5d-j2vw{width:100%;height:40px;border-top:1px solid #e9e9e9;display:-webkit-box;display:-ms-flexbox;display:flex;font-size:12px}.FFBjxvH5bM .DH6aNtyCcz:hover .YD-5d-j2vw>div:first-child{border-right:1px solid #e9e9e9}.FFBjxvH5bM .DH6aNtyCcz:hover .YD-5d-j2vw div{width:50%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;color:rgba(0,0,0,0.6)}.FFBjxvH5bM .DH6aNtyCcz:hover .YD-5d-j2vw div:hover{color:#000}.oWDDp\+9rrw{margin-top:24px;width:100%}.oWDDp\+9rrw .Is0V6vse4C{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-top:24px}.oWDDp\+9rrw .Is0V6vse4C .AjpnSI0wId{width:100px}.oWDDp\+9rrw .Is0V6vse4C .cUheIGu3ay{width:calc(100% - 100px)}
.DraftEditor-editorContainer,.DraftEditor-root,.public-DraftEditor-content{height:inherit;text-align:left;text-align:initial}.public-DraftEditor-content[contenteditable=true]{-webkit-user-modify:read-write-plaintext-only}.DraftEditor-root{position:relative}.DraftEditor-editorContainer{background-color:hsla(0,0%,100%,0);border-left:.1px solid transparent;position:relative;z-index:1}.public-DraftEditor-block{position:relative}.DraftEditor-alignLeft .public-DraftStyleDefault-block{text-align:left}.DraftEditor-alignLeft .public-DraftEditorPlaceholder-root{left:0;text-align:left}.DraftEditor-alignCenter .public-DraftStyleDefault-block{text-align:center}.DraftEditor-alignCenter .public-DraftEditorPlaceholder-root{margin:0 auto;text-align:center;width:100%}.DraftEditor-alignRight .public-DraftStyleDefault-block{text-align:right}.DraftEditor-alignRight .public-DraftEditorPlaceholder-root{right:0;text-align:right}.public-DraftEditorPlaceholder-root{color:#9197a3;position:absolute;z-index:1}.public-DraftEditorPlaceholder-hasFocus{color:#bdc1c9}.DraftEditorPlaceholder-hidden{display:none}.public-DraftStyleDefault-block{position:relative;white-space:pre-wrap}.public-DraftStyleDefault-ltr{direction:ltr;text-align:left}.public-DraftStyleDefault-rtl{direction:rtl;text-align:right}.public-DraftStyleDefault-listLTR{direction:ltr}.public-DraftStyleDefault-listRTL{direction:rtl}.public-DraftStyleDefault-ol,.public-DraftStyleDefault-ul{margin:16px 0;padding:0}.public-DraftStyleDefault-depth0.public-DraftStyleDefault-listLTR{margin-left:1.5em}.public-DraftStyleDefault-depth0.public-DraftStyleDefault-listRTL{margin-right:1.5em}.public-DraftStyleDefault-depth1.public-DraftStyleDefault-listLTR{margin-left:3em}.public-DraftStyleDefault-depth1.public-DraftStyleDefault-listRTL{margin-right:3em}.public-DraftStyleDefault-depth2.public-DraftStyleDefault-listLTR{margin-left:4.5em}.public-DraftStyleDefault-depth2.public-DraftStyleDefault-listRTL{margin-right:4.5em}.public-DraftStyleDefault-depth3.public-DraftStyleDefault-listLTR{margin-left:6em}.public-DraftStyleDefault-depth3.public-DraftStyleDefault-listRTL{margin-right:6em}.public-DraftStyleDefault-depth4.public-DraftStyleDefault-listLTR{margin-left:7.5em}.public-DraftStyleDefault-depth4.public-DraftStyleDefault-listRTL{margin-right:7.5em}.public-DraftStyleDefault-unorderedListItem{list-style-type:square;position:relative}.public-DraftStyleDefault-unorderedListItem.public-DraftStyleDefault-depth0{list-style-type:disc}.public-DraftStyleDefault-unorderedListItem.public-DraftStyleDefault-depth1{list-style-type:circle}.public-DraftStyleDefault-orderedListItem{list-style-type:none;position:relative}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-listLTR:before{left:-36px;position:absolute;text-align:right;width:30px}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-listRTL:before{position:absolute;right:-36px;text-align:left;width:30px}.public-DraftStyleDefault-orderedListItem:before{content:counter(a) ". ";counter-increment:a}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth1:before{content:counter(b) ". ";counter-increment:b}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth2:before{content:counter(c) ". ";counter-increment:c}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth3:before{content:counter(d) ". ";counter-increment:d}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth4:before{content:counter(e) ". ";counter-increment:e}.public-DraftStyleDefault-depth0.public-DraftStyleDefault-reset{counter-reset:a}.public-DraftStyleDefault-depth1.public-DraftStyleDefault-reset{counter-reset:b}.public-DraftStyleDefault-depth2.public-DraftStyleDefault-reset{counter-reset:c}.public-DraftStyleDefault-depth3.public-DraftStyleDefault-reset{counter-reset:d}.public-DraftStyleDefault-depth4.public-DraftStyleDefault-reset{counter-reset:e}.bf-image-link-editor,.bf-image-size-editor{padding-bottom:1px;overflow:hidden;border-radius:2px 2px 0 0;-webkit-box-shadow:inset 0 -1px 0 0 hsla(0,0%,100%,.1);box-shadow:inset 0 -1px 0 0 hsla(0,0%,100%,.1)}.bf-image-link-editor .editor-input-group,.bf-image-size-editor .editor-input-group{width:300px;margin:8px 10px;overflow:hidden}.bf-image-link-editor input,.bf-image-size-editor input{display:block;float:left;-webkit-box-sizing:content-box;box-sizing:content-box;height:32px;margin:0 5px 0 0;padding:0 10px;background-color:hsla(0,0%,100%,.1);border:none;border-radius:2px;outline:none;-webkit-box-shadow:inset 0 0 0 1px hsla(0,0%,100%,.1);box-shadow:inset 0 0 0 1px hsla(0,0%,100%,.1);color:#fff;font-weight:700}.bf-image-link-editor input:hover,.bf-image-size-editor input:hover{-webkit-box-shadow:inset 0 0 0 1px rgba(52,152,219,.5);box-shadow:inset 0 0 0 1px rgba(52,152,219,.5)}.bf-image-link-editor input:focus,.bf-image-size-editor input:focus{-webkit-box-shadow:inset 0 0 0 1px #3498db;box-shadow:inset 0 0 0 1px #3498db}.bf-image-link-editor button,.bf-image-size-editor button{float:left;width:90px;height:32px;margin:0;padding:0 20px;background-color:#3498db;border:none;color:#fff;font-size:12px;border-radius:2px;cursor:pointer}.bf-image-link-editor button:hover,.bf-image-size-editor button:hover{background-color:#2084c7}.bf-image-size-editor input{width:80px}.bf-image-link-editor input{width:185px}.bf-image-link-editor .switch-group{height:16px;margin:10px}.bf-image-link-editor .switch-group .bf-switch{float:left}.bf-image-link-editor .switch-group label{float:left;margin-left:15px;color:#999;font-size:12px;line-height:16px}.bf-content .bf-image{position:relative}.bf-content .bf-image .bf-csize-icon{position:absolute;z-index:2;width:10px;height:10px;background-color:rgba(52,152,219,.3)}.bf-content .bf-image .bf-csize-icon.right-bottom{right:0;bottom:0;cursor:se-resize}.bf-content .bf-image .bf-csize-icon.left-bottom{left:0;bottom:0;cursor:sw-resize}.bf-content .bf-image .bf-pre-csize{position:absolute;z-index:1;background:transparent}.bf-content .bf-image .bf-pre-csize.rightbottom{left:0;top:0;border:1px dashed #00bfff}.bf-content .bf-image .bf-pre-csize.leftbottom{right:0;top:0;border:1px dashed #00bfff}.bf-content .bf-image .bf-media-toolbar:before{visibility:hidden}.bf-content .bf-image .bf-media-toolbar[data-align=center] [data-align=center],.bf-content .bf-image .bf-media-toolbar[data-align=left] [data-align=left],.bf-content .bf-image .bf-media-toolbar[data-align=right] [data-align=right],.bf-content .bf-image .bf-media-toolbar[data-float=left] [data-float=left],.bf-content .bf-image .bf-media-toolbar[data-float=right] [data-float=right]{color:#3498db}@font-face{font-family:braft-icons;src:url(data:font/woff;base64,d09GRgABAAAAACxUAAsAAAAALAgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAABCAAAAGAAAABgDxIH02NtYXAAAAFoAAAA9AAAAPQXCcwWZ2FzcAAAAlwAAAAIAAAACAAAABBnbHlmAAACZAAAJggAACYI9aImY2hlYWQAAChsAAAANgAAADYTSfwFaGhlYQAAKKQAAAAkAAAAJAfCBAxobXR4AAAoyAAAASwAAAEsIgAgXGxvY2EAACn0AAAAmAAAAJhQxVqgbWF4cAAAKowAAAAgAAAAIABVAH1uYW1lAAAqrAAAAYYAAAGGmUoJ+3Bvc3QAACw0AAAAIAAAACAAAwAAAAMD+QGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAA6rADwP/AAEADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAwAAAAMAAAAcAAEAAwAAABwAAwABAAAAHAAEANgAAAAyACAABAASAAEAIOAp4DTgN+BC4LjiKOI547jjwuQp6SbpMelG6WjpgOms6mjqbOpu6nXqsP/9//8AAAAAACDgJuA04DfgQuC44ijiOeO448LkKekA6SzpRuln6YDprOpo6mvqbupz6rD//f//AAH/4x/eH9Qf0h/IH1Md5B3UHFYcTRvnFxEXDBb4FtgWwRaWFdsV2RXYFdQVmgADAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAH//wAPAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAQAVQCAA6sC1QARACMANQBHAAATITIXFhUUBwYjISInJjU0NzYTITIXFhUUBwYjISInJjU0NzY3ITIXFhUUBwYjISInJjU0NzY3ITIXFhUUBwYjISInJjU0NzaAAwASDA0NDBL9ABIMDQ0MEgMAEgwNDQwS/QASDA0NDBIDABIMDQ0MEv0AEgwNDQwSAwASDA0NDBL9ABIMDQ0MAtUMDRESDQwMDRIRDQz+AAwNERINDAwNEhENDKsNDBIRDQwMDRESDA2rDQwSEgwNDQwSEgwNAAAABABVAIADqwLVABEAIwA1AEcAABMhMhcWFRQHBiMhIicmNTQ3NhMhMhcWFRQHBiMhIicmNTQ3NjchMhcWFRQHBiMhIicmNTQ3NjchMhcWFRQHBiMhIicmNTQ3NoADABIMDQ0MEv0AEgwNDQwSAlUSDA0MDRL9qxIMDQ0MEgMAEgwNDQwS/QASDA0NDBICVRIMDQwNEv2rEgwNDQwC1QwNERINDAwNEhENDP4ADA0REg0MDA0SEQ0Mqw0MEhENDAwNERIMDasNDBISDA0NDBISDA0AAAAEAFUAgAOrAtUAEQAkADYASQAAEyEyFxYVFAcGIyEiJyY1NDc2EyEyFxYVFAcGIyEiJyY1NDc2MychMhcWFRQHBiMhIicmNTQ3NjchMhcWFRQHBiMhIicmNTQ3NjOAAwASDA0NDBL9ABIMDQ0MZwJWEQ0MDA0R/aoRDQwMDRFVAwASDA0NDBL9ABIMDQ0MZwJWEQ0MDA0R/aoRDQwMDREC1QwNERINDAwNEhENDP4ADA0REg0MDA0SEQ0Mqw0MEhENDAwNERIMDasNDBISDA0NDBISDA0AAAAEAFUAgAOrAtUAEQAkADYASQAAEyEyFxYVFAcGIyEiJyY1NDc2EyEyFxYVFAcGIyEiJyY1NDc2MychMhcWFRQHBiMhIicmNTQ3NjchMhcWFRQHBiMhIicmNTQ3NjOAAwASDA0NDBL9ABIMDQ0MvQJVEgwNDQwS/asSDA0MDRKrAwASDA0NDBL9ABIMDQ0MvQJVEgwNDQwS/asSDA0MDRIC1QwNERINDAwNEhENDP4ADA0REg0MDA0SEQ0Mqw0MEhENDAwNERIMDasNDBISDA0NDBISDA0AAAACAQAAgQMAAtUAAwAHAAABMxEjIREzEQJWqqr+qqoC1f2sAlT9rAAAAQFWAIEDKgLVAAIAAAkCAVYB1P4sAtX+1v7WAAEAqgArA1YDgQAuAAABMhceARcWFRQHDgEHBiMiJy4BJyY1MxQXHgEXFjMyNz4BNzY1NCcuAScmIxUnNwIARj8+XRsbGxtdPj5HRj8+XRsbVhQURS8vNTUvL0UUFBQURS8vNdbWAtUbG1w+PkZHPj5dGxsbG10+Pkc2Li9FFBQUFEUvLjY1Ly5GFBSs1tYAAAMAMwCqA80CqwAEAAkADQAAEyEVITUDNSEVITc1IRX/As79MswCzv0yaALKAqtnZ/3/Z2fOZWUABQCAACsDgAMrAAMABwALAA8AEwAAAREhEQERIREDESERAREhEQMhESEDKv8AAQD/AFT/AAEA/wBWAwD9AAHVAQD/AP6sAQD/AAFUAQD/AP6sAQD/AAKq/QAAAAACAFYAKwNWAtUACAARAAABIRUjByc3IycnFwEHJwcjNwEBAAJW+ERaHmZ4dAwCaDbyQoBo/tgC1YCgWEh4CAr9ljbynPYBKAACAIAAKwN0Ax8AAwAWAAAlAScBAR4BDwEXBycBIzUBJzcXNzYyFwEoAVhS/qgCngwBDYZSPDz+gsoBfDw8UoYMJAyBAVhS/qgB6AwjDYZSPDz+hMoBfjw8UoYMDAAAAAAEAIAAKwOAAysACAARABoAIwAAATIWHQEjNSM1EzUzFRQGKwE1JRUzFSMiJj0BETQ2OwEVIxUjAyoiNFaqqlYzI6r+VqqqIjQzI6qqVgMrNCKqqlb9VqqqIzNWqqpWMyOqAaoiNFaqAAYAgAArA4ADKwAHAAsAEwAbAB8AIwAAAREzFTMVIxUXITUhJTMRIzUjNTMBIxEzFSEVIQEhFSERIRUhAoBWqqqq/lYBqv2qVlaqqgEAVFQBVv6q/lYBqv5WAQD/AAIrAQBWVFaqVFb/AFZU/lYBAFZUAlRU/lRUAAIAgABNA4ADTQATAB0AACUhESE1ISIGFREUFjMhMjY1ESMRAxUzARcBFTMRIQMr/aoBK/7VIzIyIwJWIzJV1pr+XDwBpFX+1aICVVYyJP2rIzIyIwEr/tUCq1b+XTwBo5kBKwAEAFUAIgOrA3cABAAhAD0AQgAAJTMRIxETIgcOAQcGFRQXHgEXFjMyNz4BNzY1NCcuAScmIxEiJy4BJyY1NDc+ATc2MzIXHgEXFhUUBw4BBwYDMzUjFQHVVlYrWE5OdCEiIiF0Tk5YWE5OdCEiIiF0Tk5YRz4+XRobGxpdPj5HRz4+XRobGxpdPj5yVlb3AQD/AAKAISJzTk5YWU1OdCEiIiF0Tk1ZWE5OcyIh/QAbG10+PkdGPz5cGxsbG1w+P0ZHPj5dGxsB1lVVAAAEAFUAIgOrA3cABAAhAD0AUgAAJTM1IxUTIgcOAQcGFRQXHgEXFjMyNz4BNzY1NCcuAScmIxEiJy4BJyY1NDc+ATc2MzIXHgEXFhUUBw4BBwYDIgYVMzQ2MzIWFRQGFTM0NjU0JiMB1VZWK1hOTnQhIiIhdE5OWFhOTnQhIiIhdE5OWEc+Pl0aGxsaXT4+R0c+Pl0aGxsaXT4+R0dkVjIjIzKAVoBkR81VVQKqISJzTk5YWU1OdCEiIiF0Tk1ZWE5OcyIh/QAbG10+PkdGPz5cGxsbG1w+P0ZHPj5dGxsCVmRHIzIyI0AtaEg9UEdkAAACAFUAzQOrAs0ABQALAAABJzcnCQElNyc3CQEBkcTEPP8AAQABGsTEPAEA/wABCcTEPP8A/wA8xMQ8/wD/AAAAAwErAM0C9QMiAA8AGQAiAAABPgE1NCYjIREhMjY1NCYnJzMyFhUUBisBNRMjNTMyFhUUBgKaHydjSP72ASxDWzIp74AaJiYagJWVlRslJQIAFkEgSWL9q19DME4TtyUbGiaA/oCAJRsaJgAAAQCAACYDgAN3ADQAAAEiBgclPgE1NCYnJR4BMzI2NTQmIyIGFRQWFwUuASMiBhUUFjMyNjcFDgEVFBYzMjY1NCYjAwAYKxH+0AICAgIBLREtGTVLSzU1SwIC/tMRLRk1S0s1GS0RATACAkk0NElJNAEfEg+xBw8IBw8IrxATSzU2Sko2Bw8HsBATSzU1SxIQsQcOBzNJSTM0SQAAAQErAU0C1QIiAAIAAAEXNwEr1dUCItXVAAAAAAMAVQAiA6sDdwAcACsAOgAAASIHDgEHBhUUFx4BFxYzMjc+ATc2NTQnLgEnJiMBNDc+ATc2MzIWFwEuATUBIiYnAR4BFRQHDgEHBiMCAFhOTXQiIiIidE1OWFhOTXQiIiIidE1OWP6rGxtcPj9GOmot/iIjJQFVOmotAd4jJRsbXD4/RgN3ISJ0Tk1YWE5OdCEiIiF0Tk5YWE1OdCIh/lZGPj5dGxslI/4iLWo6/qomIwHeLWs5Rz4+XRsbAAAAAAMAgADNA4ACzQADAAcACwAANyE1ITUhNSE1FSE1gAMA/QADAP0AAwDNVYBV1lZWAAEBKwF3AtUCTQACAAABNxcBK9XVAXfW1gAAAAADAasAdwJVAyIADAAYACQAAAEyNjU0JiMiBhUUFjMVIgYVFBYzMjY1NCYDIgYVFBYzMjY1NCYCACMyMiMjMjIjIzIyIyMyMiMjMjIjIzIyAnczIyMyMiMjM1UyIyMzMyMjMv8AMiMjMzMjIzIAAAAAAwCrAXcDVQIiAAwAGAAkAAABIgYVFBYzMjY1NCYjISIGFRQWMzI2NTQmISIGFRQWMzI2NTQmAQAjMjIjIzIyIwIAIzIyIyMyMv7dIzIyIyMyMgIiMiMjMzMjIzIyIyMzMyMjMjIjIzMzIyMyAAAAAAIAAP/ABAADgAApAC0AAAERIzU0JiMhIgYdARQWMyEyNj0BMxEhFSMiBhURFBY7ATI2NRE0JisBNQEhNSEEAMAmGv1AGiYmGgLAGiaA/cAgDRMTDYANExMNIAFA/UACwAGAAYBAGiYmGsAaJiYaQP8AgBMN/sANExMNAUANE0ABgEAAAAQA1QCiAysC9wAGAA0AEwAaAAATMxUzNSMVEyMVMzUjFQEzNTM1IxM1IxUzNSPVgFbWgIDWVgEAVoDWVlbWgAEigNVVAVVV1YD+K4BVAQCA1VUAAAEAZAAlA1wDXABEAAABERQHBgcGBwYjIicmJyYnJjU0NzY3Njc2MzIXEQURFAcGBwYHBiMiJyYnJicmNTQ3Njc2NzYzMhcRNDc2NyU2MzIXFhUDXBERGhkaGRYXGRoZGhEREREaGRoZFzMr/oURERoZGhkXFhkaGRoRERERGhkaGRY0KwoJDwGbBggUDg4DLP3WGBQTCgsFBQUFCwoTFBgZExQKCwUFEwEKdv6iGRMTCwsFBQUFCwsTExkZExMLCgYFEwHeDw0MBX8CDg4UAAAEAHUAQgOJA1YALwA8AGIAeAAAAS4BBw4BJy4BJy4BBwYiJyYGBw4BJyYGBxQVHAEVFBUeATM2MzoBMzIzMjY3PAE1BSImNTQ2MzIWFRQGJyUqASM8ATU6ATMUFhUUFxwBFQYHFAYHDgEnLgE3PgE3OgEzPAE1BT4BNzoBMxQWBw4BJy4BNz4BNzoBMwKBARkZChUJCxcEFEMvBw8HHikMDCgdFyILCxgWNDM0ZzQzNBsaAf77L0FBMDBAQDEBtx8/IDRoNgEBAQENCxVFICIlBgc3JAcNCf7OAQICEyQTAwUFSiMmOAIBOiYHEAkCzhcaAQEBAwIJCC0fCAEBBhgbGxYGBBMVKCgpUCgoKQ8VARcaSpRK7T8uMEA/LzBAARchPyAKEgkzMjNmMjMzFCwRIBAOD0IjJjQDN2053QwUCi5dLSUsBgVEJig+BAAAAAAEANUAogMrAvcABQALABEAFwAAASMVMzUjAzM1MzUjASMVMzUjAxUzFTM1AStW1oBWVoDWAgCA1laAgFYBd9VVASuAVf4AVdUBgFWA1QAAAAQAAAAABAADQAAbADMATwBTAAABFBceARcWMzI3PgE3NjU0Jy4BJyYjIgcOAQcGASMuASMhIgYHIyIGFREUFjMhMjY1ETQmASInLgEnJjU0Nz4BNzYzMhceARcWFRQHDgEHBgEjNTMBMBAROCYmKysmJjgREBAROCYmKysmJjgREAKQ4AwkMP8AMCQM4BomJhoDgBomJv4mOzQzTRcWFhdNMzQ7OzQzTRcWFhdNMzQBhYCAAWArJiY4ERAQETgmJisrJiY4ERAQETgmJgE1MFBQMCYa/cAaJiYaAkAaJv2EFhdNMzQ7OzQzTRcWFhdNMzQ7OzQzTRcWAbxAAAEAkQCiA4AC3gAGAAABJwcXAScBAYCzPO8CADz+PAEaszzvAgA8/jwAAAAAAQDiAIADHgLJACYAAAE3NjQnJiIPAScmIgcGFB8BBwYUFx4BMzI2PwEXHgEzMjY3NjQvAQI84g0NDCQM4uIMJAwNDeLiDQ0GEAgIEAbi4gYQCAgQBg0N4gGr4gwjDQwM4uIMDA0jDOLiDSMMBwYGB+HhBwYGBwwjDeIAAAUAVQCVA6sC6wAZACoARABeAHgAAAEhIgYHDgEVFBYXHgEzITI2Nz4BNTQmJy4BJTQmIyEiBh0BFBYzITI2PQEDISIGBw4BFRQWFx4BMyEyNjc+ATU0JicuAQMhIgYHDgEVFBYXHgEzITI2Nz4BNTQmJy4BBSEiBgcOARUUFhceATMhMjY3PgE1NCYnLgEB1f6rCQ8GBgcHBgYPCQFVCQ8GBwYGBwYPAc0ZEv8AEhkZEgEAEhkr/QAJDwYGBwcGBg8JAwAJDwYGBwcGBg8J/QAJDwYGBwcGBg8JAwAJDwYGBwcGBg/+TP6rCQ8GBgcHBgYPCQFVCQ8GBwYGBwYPAZUGBgYQCAkPBgcGBgcGDwkIEAYGBoERGRkRrBEZGRGs/tUHBgYPCQkPBgYHBwYGDwkJDwYGBwIABwYGDwkJDwYGBwcGBg8JCQ8GBgerBgcGDwkIEAYGBgYGBhAICQ8GBwYAAAAABABVAE0DqwNNAA4AEgAeACIAAAEhIgYVETMVITUzETQmIwMhNSE3IiY1NDYzMhYVFAYDIRUhAyv9qjVLqwIAq0s1gP6qAVaAEhkZEhEZGTz+AAIAAndKNv8AqqoBADZK/ivVVhkREhkZEhEZAYCrAAIAgABjA2oDTQAiAC8AAAEjJz4BNTQnLgEnJiMiBw4BBwYVFBceARcWMzI2NxcVFzcnISImNTQ2MzIWFRQGIwKVIQwfJBYWSzMyOjkzMksWFhYWSzIzOTRcJQvWP9X/AE9xcU9QcHBQAXcMJF0zOjIzSxYWFhZLMzI6OTIzSxYWJB8MItQ/1XFPUHBwUE9xAAIAZAAiA5wDdwBNAFkAAAE+ATU0Jic3PgEvAS4BDwEuAS8BLgErASIGDwEOAQcnJgYPAQYWHwEOARUUFhcHDgEfAR4BPwEeAR8BHgE7ATI2PwE+ATcXFjY/ATYmJwUiJjU0NjMyFhUUBgM9AQICAVoGAwRVBA8HahEkFBABDAiqCAwBEBQkEWoHDwRVBAMGWgECAgFaBgMEVQQPB2oRJBQQAQwIqggMARAUJBFqBw8EVQQDBv5pPldXPj5XVwGjChULCxQLRgUPB5QHBQMqDBUIcgcKCgdyCBUMKgMFB5QHDwVGCxUKCxUKRgUQB5MHBQIrDRUIcQgKCghxCBUNKwMGB5MHEAUmWD4+V1c+PlgAAQDVAKIDKwL3AAsAAAEhESMRITUhETMRIQMr/wBW/wABAFYBAAGi/wABAFUBAP8AAAAAAAQAVf/vA6sC7wAeADMAOAA9AAATNwEHJyM1JyM1Jw4BFRQWOwEVIyInLgEnJjU0NjcnBTIXHgEXFhUUBgcnPgE1NCYrATUzITMVIycFFSMnM1U3Ask2q0mMSmogJWdIgIA1Li9FFRQyKlwCVjUuL0UVFEc5PC88Z0iAgP6qgDZRAV0zVYgCuTb9NzerSYxKaxhIKklmURQURS8vNTpnIlwfFRRFLy41R3YhPRRWN0hnUVFR1lVVAAADAFUAmgOrApoAGgA1ADkAAAEjFTMyFhUUBisBFTMyNz4BNzY1NCcuAScmIwE0NjsBNSMiBw4BBwYVFBceARcWOwE1IyImNRchNSECq4CASGdnSICANS4vRRUUFBVFLy41/ftnSICANS4vRRUUFBVFLy41gIBIZ68BVv6qAppRZ0hJZlEUFEUvLzU1Li9FFRT/AEhnURUURS8uNTUvL0UUFFFmSStVAAAFAFUAIgOrA3cAHAA4AEQAUABYAAABIgcOAQcGFRQXHgEXFjMyNz4BNzY1NCcuAScmIxEiJy4BJyY1NDc+ATc2MzIXHgEXFhUUBw4BBwYTMjY1NCYjIgYVFBYhMjY1NCYjIgYVFBYTMjY3IR4BMwIAWU1OdCEiIiF0Tk1ZWE5OdCEiIiF0Tk5YRz4+XRsaGhtdPj5HRz4+XRsaGhtdPj5OGyUlGxomJv7wGiYmGhslJbBLdRr+TBp1SwN3ISJzTk5YWU1OdCEiIiF0Tk1ZWE5OcyIh/QAbG10+PkdHPj5dGhsbGl0+PkdHPj5dGxsBgCYaGyUlGxomJhobJSUbGib+61RBQVQAAAAJAAAAQAQAA0AAAwAHAAsADwATABcAGwAfACIAABMRIREBIzUzNSM1MzUjNTMBIREhEyM1MzUjNTM1IzUzBRElAAQA/MCAgICAgIACQP4AAgDAgICAgICA/cABAANA/QADAP1AgICAgID9gAKA/YCAgICAgID+gMAAAAAAAgDVAE0DKwNNABkAHgAAJTI3PgE3NjURIxEUBiMiJjURIxEUFx4BFxYHFSE1IQIANS8uRhQUa1c+PldrFBRGLi/2Alb9qvcVFEUvLzQBVv6qPVhYPQFW/qo0Ly9FFBVVVVUAAAUAVQCVA6sC6wAaACsARQBfAHoAAAEhMhYXHgEVFAYHDgEjISImJy4BNTQ2Nz4BMyU0NjMhMhYdARQGIyEiJj0BEyEyFhceARUUBgcOASMhIiYnLgE1NDY3PgETITIWFx4BFRQGBw4BIyEiJicuATU0Njc+AQUhMhYXHgEVFAYHDgEjISImJy4BNTQ2Nz4BMwIrAVUJDwYGBwcGBg8J/qsJDwYHBgYHBg8J/ioZEgEAEhkZEv8AEhkrAwAJDwYGBwcGBg8J/QAJDwYGBwcGBg8JAwAJDwYGBwcGBg8J/QAJDwYGBwcGBg8BtAFVCQ8GBgcHBgYPCf6rCQ8GBwYGBwYPCQGVBgYGEAgJDwYHBgYHBg8JCBAGBgaBERkZEawRGRkRrP7VBwYGDwkJDwYGBwcGBg8JCQ8GBgcCAAcGBg8JCQ8GBgcHBgYPCQkPBgYHqwYHBg8JCBAGBgYGBgYQCAkPBgcGAAAAAAMAgACiA4ADIgAEAA0AEQAAJTM1IxUDFTMVMzUzNSEDITUhAauqqtbWqtb9qlUDAP0AooCAAoCAgICA/lVWAAACAIAAogOrAyIACAARAAABFTMRMxEzNSEBMxEzETM1IRUBgNWA1v3V/wCAgID+gAMigP4AAgCA/qv+1QErgIAAAgDVAPcDKwKiAAYADQAAJTM3ESERMwUzNxEhETMBAIBV/wCAAQCAVv8AgPerAQD/AKurAQD/AAAGAFUAdwOAAyIACwASAB0AIgAnACwAADczFSMVMxUjFTM1IxMzNSMVMxUHMwcVMzUjNzUjFRMVITUhESE1IRURITUhFVVWKytWgIArK1YrK01NgExMgNYCVf2rAlX9qwJV/av3FSsVK6sBVasrgIBZJytaJisBAFVV/atVVQEAVVUAAAAGAGsAjQOAAw0ACwAXACMAKAAtADIAABMiBhUUFjMyNjU0JgMiBhUUFjMyNjU0JgMiBhUUFjMyNjU0JhchNSEVESE1IRURFSE1IasbJSUbGiYmGhslJRsaJiYaGyUlGxomJmYCVf2rAlX9qwJV/asCDSYaGyUlGxomAQAmGhslJRsaJv4AJhoaJiYaGiZrVVUBAFVVAVVVVQAAAAABAQAAzQMAAyIACwAAARUzAyMVITUjEzM1AatekncBVV6SdwMigP6rgIABVYAAAAABAAABawQAAesAAwAAEyEVIQAEAPwAAeuAAAAABgBA/8ADwAPAABkAIQA5AEcAVQBjAAABLgEnLgEnLgEjISIGFREUFjMhMjY1ETQmJyceARcjNR4BExQGIyEiJjURNDYzMDM6ATMyMRUUFjsBAyEiJjU0NjMhMhYVFAYnISImNTQ2MyEyFhUUBichIiY1NDYzITIWFRQGA5YRLRkaMxcnKQv+ECEvLyEC4CEvDhyFFyUNmhEphgkH/SAHCQkHTU66TU4TDeCg/kANExMNAcANExMN/kANExMNAcANExMN/kANExMNAcANExMC2xczGhktERwOLyH8oCEvLyECcAspJzYXKRGaDSX86AcJCQcDYAcJ4A0T/gATDQ0TEw0NE4ATDQ0TEw0NE4ATDQ0TEw0NEwAAAAUAAP/ABAADwAAIAAsAEwAWABwAAAERIQcRIREhESUVIwMRMzUhFQcRExUjASERMzUhAoD+QMABgAKA/MBlG8ABQMDAZQHl/gDAAUACwAEAwP3A/wADAKVl/gABwMDAwP8AAWVl/gABwMAAAAUAQP/ABAADwAANABgANAA3AD0AAAEjNTQmKwEiBh0BIxUhJyM1OAExMzgBMRUFNTQmKwEVMxUjBxEhETM1IyIGFREUFjMhFSERBRUjASERMzUhAsCAJhqAGiaAAgDAgIABQBMNQCDAwP8AIEANExMNASACgP5AZQHl/gDAAUADQEAaJiYaQICAQEDAoA0TQIDA/wACQEATDf2ADRPAAsBbZf5AAYDAAAYAgABNA4ADTQADAAcACwAPABMAFwAANyE1IRkBNycBITUhARUhNQEhNSERITUhgAMA/QCrqwFVAav+Vf6rAwD+VQGr/lUBq/5VTVUB1f6rq6r+gFYCAFZW/wBV/wBVAAYAgABNA4ADTQADAAcACwAPABMAFwAAJSE1ISUXEQcRITUhERUhNQEhNSERITUhAdUBq/5V/qurqwMA/QADAP5VAav+VQGr/lX3VoCrAVWq/oBVAqtWVv8AVf8AVQAAAAEAAP/NBAAAdwADAAA3IRUhAAQA/AB3qgAAAAACAOsA9wMVA00ACAAMAAABAzM3IRczAyMDGwEjAdXqYC8BCzBg6lY7ZmbMA039qoCAAlb+gAEO/vIAAAACAAD/wAQAA8AADgASAAABBxcDIxcBFTMBFzUlFzcFJzcXAiBgYODgsP7wJwFpsAEAYGD9wEDgQAPAYGD/ALD+lycBELDg4GBgQEDgQAAAAAEAQP/AA4oDwAARAAAFNjc2JicmBxUJARU2Fx4BBwYC+isTEzhVVqj+gAGAyXFyRignQE1bW5ozMgT+AYABgPgFTk7siokAAAEAdv/AA8ADwAASAAABNQkBNSYHDgEXFhcmJyY2NzYXAkABgP6AqFZVOBMTK2knKEZycckCyPj+gP6A/gQyM5pbW01yiYrsTk4FAAAHAAD/wAQAA0YACwAXACMALwA7AEcAUwAAJTQ2MzIWFRQGIyImATQ2MzIWFRQGIyImJTQ2MzIWFRQGIyImATQ2MzIWFRQGIyImATQ2MzIWFRQGIyImJTQ2MzIWFRQGIyImATQ2MzIWFRQGIyImAaA4KCg4OCgoOP5gOCgoODgoKDgDQDgoKDg4KCg4/To4KCg4OCgoOAJMOCgoODgoKDj9tDgoKDg4KCg4Akw4KCg4OCgoOCAoODgoKDg4AcgoODgoKDg4KCg4OCgoODgBTig4OCgoODj93Cg4OCgoODgoKDg4KCg4OAJ0KDg4KCg4OAAFAHwAAAOEA1UAIgAtADgARgBUAAABIzU0JisBIgYdASMiBhUUFjsBERQWMyEyNjURMzI2NTQmIyU0NjsBMhYdASM1ARQGIyEiJjURIREBIgYdARQWMzI2PQE0JjMiBh0BFBYzMjY9ATQmA12bRDCcMESbEBcXECdEMAGEMEQnEBcXEP4vFhCcEBboAV0XEP58EBcB0v7JEBYWEBAXF4wQFxcQEBYWAronMEREMCcXEBAW/gcwREQwAfkWEBAXJxAXFxAnJ/2TEBYWEAH5/gcBhBcQ6BAXFxDoEBcXEOgQFxcQ6BAXAAAABwAA/8AEAAPAAAMABwALAA8AEwAbACMAABMzFSM3MxUjJTMVIzczFSMlMxUjAxMhEzMTIRMBAyEDIwMhAwCAgMDAwAEAgIDAwMABAICAEBD9ABAgEAKAEP1AEAMAECAQ/YAQAcBAQEBAQEBAQEACQP5AAcD+gAGA/AABgP6AAUD+wAAABABQAIAEAAPAAAgADQAQAEAAAD8BIRczAyMDMxMzFyM3ARsBAyMiJjU0NjsBMjY1NCYrASIGFRQWFx4BOwEyFhUUBisBIgYVFBY7ATI2NTQmJy4BwjoBCDpywODAcppIOrw6AWSgoKBADRMTDYANExMNgCg4DQwNJRVADRMTDYANExMNgCg4DQwNJYDAwAKA/YACAMDA/gABAP8AAsATDQ0TEw0NEzgoEiENDxETDQ0TEw0NEzgoEiENDxEAAAAABABQ/8AEAAMAAAgADQAQAEAAAD8BIRczAyMDMxMzFyM3JQsBEyMiJjU0NjsBMjY1NCYrASIGFRQWFx4BOwEyFhUUBisBIgYVFBY7ATI2NTQmJy4BwjoBCDpywODAcppIOrw6AqSgoKBADRMTDYANExMNgCg4DQwNJRVADRMTDYANExMNgCg4DQwNJYDAwAKA/YACAMDAgP8AAQD9gBMNDRMTDQ0TOCgSIQ0PERMNDRMTDQ0TOCgSIQ0PEQAHAAD/wAQAA8AABwAPABMAFwAbAB8AIgAAAREhESMRIREFESERMxEhESUzFSMnMxUjJTMVIzczFSMlFwcBAAMAQP2AAsD9AEACgP5AgIDAgIABgICAwICA/IDAwAJAAYD+gAFA/sDA/kABwP6AAYCAQEBAQEBAQODAwAAAAQCA/8ADgAPAABcAAAEhFSMRIxEjESMRIicuAScmNTQ3PgE3NgGAAgCAgICANS8uRhQUFBRGLi8DwID8gAOA/IACABQURi4vNTUvLkYUFAACAAD/wAQAA8AAFwAaAAABIgcOAQcGFRQXHgEXFjMRMxEzETMRMzUJAgIANS8uRhQUFBRGLi81gICAgPwAAQD/AAPAFBRGLi81NS8uRhQU/gADgPyAA4CA/UABAAEAAAACAAD/wAQAA8AAFwAaAAABIgcOAQcGFRQXHgEXFjMRMxEzETMRMzUFCQEBADUvLkYUFBQURi4vNYCAgIABAP8AAQADwBQURi4vNTUvLkYUFP4AA4D8gAOAgMD/AP8AAAABAAD/zgQAA7MAYwAAASIHDgEHBhUUFx4BFxYXFjY1PAEnBiYxLgExJjYxHgExFjY3PgE3JicuAScmNTQ2Ny4BNzAWFz4BMzIWFz4BMRYGBx4BFRQHDgEHBgceARUUBhUUFjc2Nz4BNzY1NCcuAScmIwIAal1eiygoGhpdQUBMExABakISJyMnJigiXRYEEgsrKipCFBUcGQQMFUNKHkEhIUEeSkMVDAQZHBUUQyopKw4VARATTEFAXRoaKCiLXl1qA7MoKItdXmpUTU2ALy8ZBBIKCTYgF1QsHxgHAzI7BwoYIgoFDA04Ly9JKkUbCUk1AzEICQkIMQM1SQkbRSpKLy44DA0FCzAjNEwNChIEGS8wf01NVGpeXYsoKAAAAAABAAAAAQAAt9HlfV8PPPUACwQAAAAAANgVW8QAAAAA2BVbxAAA/8AEAAPAAAAACAACAAAAAAAAAAEAAAPA/8AAAAQAAAAAAAQAAAEAAAAAAAAAAAAAAAAAAABLBAAAAAAAAAAAAAAAAgAAAAQAAFUEAABVBAAAVQQAAFUEAAEABAABVgQAAKoEAAAzBAAAgAQAAFYEAACABAAAgAQAAIAEAACABAAAVQQAAFUEAABVBAABKwQAAIAEAAErBAAAVQQAAIAEAAErBAABqwQAAKsEAAAABAAA1QQAAGQEAAB1BAAA1QQAAAAEAACRBAAA4gQAAFUEAABVBAAAgAQAAGQEAADVBAAAVQQAAFUEAABVBAAAAAQAANUEAABVBAAAgAQAAIAEAADVBAAAVQQAAGsEAAEABAAAAAQAAEAEAAAABAAAQAQAAIAEAACABAAAAAQAAOsEAAAABAAAQAQAAHYEAAAABAAAfAQAAAAEAABQBAAAUAQAAAAEAACABAAAAAQAAAAEAAAAAAAAAAAKABQAHgCIAPIBXgHKAd4B7AI0AlACfgKiAtIDBgNCA3QD2gRSBHIEqAT2BQQFZAV8BYoFwgX6BjwGZgbOB3YHnggcCDIIcAkiCVoJogoqCkQKoAr0C3gLtgvoDJwMvAzcDPgNOg2IDaANrg46DnAOxA70DyQPMg9QD3gPnA/CEDoQrhDwEVARrhHsEhQSRBJ0EwQAAQAAAEsAewAJAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAA4ArgABAAAAAAABAAcAAAABAAAAAAACAAcAYAABAAAAAAADAAcANgABAAAAAAAEAAcAdQABAAAAAAAFAAsAFQABAAAAAAAGAAcASwABAAAAAAAKABoAigADAAEECQABAA4ABwADAAEECQACAA4AZwADAAEECQADAA4APQADAAEECQAEAA4AfAADAAEECQAFABYAIAADAAEECQAGAA4AUgADAAEECQAKADQApGljb21vb24AaQBjAG8AbQBvAG8AblZlcnNpb24gMS4wAFYAZQByAHMAaQBvAG4AIAAxAC4AMGljb21vb24AaQBjAG8AbQBvAG8Abmljb21vb24AaQBjAG8AbQBvAG8AblJlZ3VsYXIAUgBlAGcAdQBsAGEAcmljb21vb24AaQBjAG8AbQBvAG8AbkZvbnQgZ2VuZXJhdGVkIGJ5IEljb01vb24uAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=);font-weight:400;font-style:normal}.bf-container [class*=" bfi-"],.bf-container [class^=bfi-],.bf-modal-root [class*=" bfi-"],.bf-modal-root [class^=bfi-]{font-family:braft-icons!important}.bf-container [class*=" bfi-"],.bf-container [class^=bfi-],.bf-modal-root [class*=" bfi-"],.bf-modal-root [class^=bfi-]{speak:none;font-style:normal;font-weight:400;-webkit-font-feature-settings:normal;font-feature-settings:normal;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.bf-container .bfi-table:before,.bf-modal-root .bfi-table:before{content:"\E228"}.bf-container .bfi-clear_all:before,.bf-modal-root .bfi-clear_all:before{content:"\E0B8"}.bf-container .bfi-format_clear:before,.bf-modal-root .bfi-format_clear:before{content:"\E239"}.bf-container .bfi-hr:before,.bf-modal-root .bfi-hr:before{content:"\E925"}.bf-container .bfi-colorize:before,.bf-modal-root .bfi-colorize:before{content:"\E3B8"}.bf-container .bfi-crop_free:before,.bf-modal-root .bfi-crop_free:before{content:"\E3C2"}.bf-container .bfi-pause:before,.bf-modal-root .bfi-pause:before{content:"\E034"}.bf-container .bfi-play_arrow:before,.bf-modal-root .bfi-play_arrow:before{content:"\E037"}.bf-container .bfi-bin:before,.bf-modal-root .bfi-bin:before{content:"\E9AC"}.bf-container .bfi-replay:before,.bf-modal-root .bfi-replay:before{content:"\E042"}.bf-container .bfi-tune:before,.bf-modal-root .bfi-tune:before{content:"\E429"}.bf-container .bfi-close:before,.bf-modal-root .bfi-close:before{content:"\E913"}.bf-container .bfi-align-center:before,.bf-modal-root .bfi-align-center:before{content:"\E028"}.bf-container .bfi-align-justify:before,.bf-modal-root .bfi-align-justify:before{content:"\E026"}.bf-container .bfi-align-left:before,.bf-modal-root .bfi-align-left:before{content:"\E027"}.bf-container .bfi-align-right:before,.bf-modal-root .bfi-align-right:before{content:"\E029"}.bf-container .bfi-image-right:before,.bf-modal-root .bfi-image-right:before{content:"\E914"}.bf-container .bfi-image-left:before,.bf-modal-root .bfi-image-left:before{content:"\E91E"}.bf-container .bfi-music:before,.bf-modal-root .bfi-music:before{content:"\E90E"}.bf-container .bfi-camera:before,.bf-modal-root .bfi-camera:before{content:"\E911"}.bf-container .bfi-copy:before,.bf-modal-root .bfi-copy:before{content:"\E92C"}.bf-container .bfi-file-text:before,.bf-modal-root .bfi-file-text:before{content:"\E926"}.bf-container .bfi-film:before,.bf-modal-root .bfi-film:before{content:"\E91C"}.bf-container .bfi-github:before,.bf-modal-root .bfi-github:before{content:"\EAB0"}.bf-container .bfi-ltr:before,.bf-modal-root .bfi-ltr:before{content:"\EA74"}.bf-container .bfi-page-break:before,.bf-modal-root .bfi-page-break:before{content:"\EA68"}.bf-container .bfi-pagebreak:before,.bf-modal-root .bfi-pagebreak:before{content:"\EA6E"}.bf-container .bfi-paint-format:before,.bf-modal-root .bfi-paint-format:before{content:"\E90C"}.bf-container .bfi-paste:before,.bf-modal-root .bfi-paste:before{content:"\E92D"}.bf-container .bfi-pilcrow:before,.bf-modal-root .bfi-pilcrow:before{content:"\EA73"}.bf-container .bfi-pushpin:before,.bf-modal-root .bfi-pushpin:before{content:"\E946"}.bf-container .bfi-redo:before,.bf-modal-root .bfi-redo:before{content:"\E968"}.bf-container .bfi-rtl:before,.bf-modal-root .bfi-rtl:before{content:"\EA75"}.bf-container .bfi-spinner:before,.bf-modal-root .bfi-spinner:before{content:"\E980"}.bf-container .bfi-subscript:before,.bf-modal-root .bfi-subscript:before{content:"\EA6C"}.bf-container .bfi-superscript:before,.bf-modal-root .bfi-superscript:before{content:"\EA6B"}.bf-container .bfi-undo:before,.bf-modal-root .bfi-undo:before{content:"\E967"}.bf-container .bfi-media:before,.bf-modal-root .bfi-media:before{content:"\E90F"}.bf-container .bfi-add:before,.bf-modal-root .bfi-add:before{content:"\E918"}.bf-container .bfi-bold:before,.bf-modal-root .bfi-bold:before{content:"\E904"}.bf-container .bfi-code:before,.bf-modal-root .bfi-code:before{content:"\E903"}.bf-container .bfi-done:before,.bf-modal-root .bfi-done:before{content:"\E912"}.bf-container .bfi-drop-down:before,.bf-modal-root .bfi-drop-down:before{content:"\E906"}.bf-container .bfi-drop-up:before,.bf-modal-root .bfi-drop-up:before{content:"\E909"}.bf-container .bfi-emoji:before,.bf-modal-root .bfi-emoji:before{content:"\E91B"}.bf-container .bfi-font-size:before,.bf-modal-root .bfi-font-size:before{content:"\E920"}.bf-container .bfi-fullscreen:before,.bf-modal-root .bfi-fullscreen:before{content:"\E910"}.bf-container .bfi-fullscreen-exit:before,.bf-modal-root .bfi-fullscreen-exit:before{content:"\E90D"}.bf-container .bfi-help:before,.bf-modal-root .bfi-help:before{content:"\E902"}.bf-container .bfi-indent-decrease:before,.bf-modal-root .bfi-indent-decrease:before{content:"\E92F"}.bf-container .bfi-indent-increase:before,.bf-modal-root .bfi-indent-increase:before{content:"\E92E"}.bf-container .bfi-info:before,.bf-modal-root .bfi-info:before{content:"\E901"}.bf-container .bfi-italic:before,.bf-modal-root .bfi-italic:before{content:"\E924"}.bf-container .bfi-link:before,.bf-modal-root .bfi-link:before{content:"\E91A"}.bf-container .bfi-link-off:before,.bf-modal-root .bfi-link-off:before{content:"\E919"}.bf-container .bfi-list:before,.bf-modal-root .bfi-list:before{content:"\E923"}.bf-container .bfi-list-numbered:before,.bf-modal-root .bfi-list-numbered:before{content:"\E922"}.bf-container .bfi-menu:before,.bf-modal-root .bfi-menu:before{content:"\E908"}.bf-container .bfi-more-horiz:before,.bf-modal-root .bfi-more-horiz:before{content:"\E90B"}.bf-container .bfi-more-vert:before,.bf-modal-root .bfi-more-vert:before{content:"\E90A"}.bf-container .bfi-not-disturb:before,.bf-modal-root .bfi-not-disturb:before{content:"\E907"}.bf-container .bfi-print:before,.bf-modal-root .bfi-print:before{content:"\E915"}.bf-container .bfi-quote:before,.bf-modal-root .bfi-quote:before{content:"\E921"}.bf-container .bfi-search:before,.bf-modal-root .bfi-search:before{content:"\E916"}.bf-container .bfi-settingsx:before,.bf-modal-root .bfi-settingsx:before{content:"\E917"}.bf-container .bfi-share:before,.bf-modal-root .bfi-share:before{content:"\E905"}.bf-container .bfi-share-square:before,.bf-modal-root .bfi-share-square:before{content:"\E900"}.bf-container .bfi-strikethrough:before,.bf-modal-root .bfi-strikethrough:before{content:"\E91F"}.bf-container .bfi-text-color .path1:before,.bf-modal-root .bfi-text-color .path1:before{font-family:braft-icons!important}.bf-container .bfi-text-color .path1:before,.bf-modal-root .bfi-text-color .path1:before{content:"\E930";opacity:.36}.bf-container .bfi-text-color .path2:before,.bf-modal-root .bfi-text-color .path2:before{font-family:braft-icons!important}.bf-container .bfi-text-color .path2:before,.bf-modal-root .bfi-text-color .path2:before{content:"\E931";margin-left:-1em}.bf-container .bfi-underlined:before,.bf-modal-root .bfi-underlined:before{content:"\E91D"}.bf-content{height:500px;padding-bottom:10px;overflow:auto;font-size:16px}.bf-content img{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.bf-content *{line-height:normal}.bf-container{position:relative;height:100%;padding:0}.bf-container.disabled{pointer-events:none;opacity:.7;-webkit-filter:grayscale(70%);filter:grayscale(70%)}.bf-container.read-only .bf-controlbar{pointer-events:none}.bf-container.read-only .bf-image img:hover{outline:none}.bf-container.read-only .bf-hr{pointer-events:none}.bf-container.fullscreen{height:100%!important}.bf-container.fullscreen{position:fixed;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;z-index:99999;top:0;right:0;bottom:0;left:0;background-color:#fff}.bf-container.fullscreen .bf-content{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;height:auto}.bf-container .input-group{display:block}.bf-container .input-group input{-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;height:36px;padding:0 15px;font-size:14px}.bf-container .pull-left{float:left}.bf-container .pull-right{float:right}.bf-container button{line-height:normal}.bf-container button.default,.bf-container button.ghost,.bf-container button.primary{height:32px;padding:0 20px;color:#fff;font-size:12px}.bf-container button.default{background-color:hsla(0,0%,100%,.15);border:none}.bf-container button.default:hover{background-color:hsla(0,0%,100%,.1)}.bf-container button.ghost{background-color:transparent;border:none;-webkit-box-shadow:inset 0 0 0 .5px hsla(0,0%,100%,.5);box-shadow:inset 0 0 0 .5px hsla(0,0%,100%,.5)}.bf-container button.ghost:hover{-webkit-box-shadow:inset 0 0 0 .5px hsla(0,0%,100%,.7);box-shadow:inset 0 0 0 .5px hsla(0,0%,100%,.7)}.bf-container button.primary{background-color:#3498db;border:none;color:#fff}.bf-container button.primary:hover{background-color:#2084c7}.bf-container .public-DraftEditorPlaceholder-root{top:15px;left:15px;font-size:16px;pointer-events:none}.bf-container .DraftEditor-editorContainer{-webkit-box-sizing:border-box;box-sizing:border-box;border:none}.bf-container .DraftEditor-root,.bf-container .public-DraftEditor-content{height:100%}.bf-container .public-DraftEditor-content{-webkit-box-sizing:border-box;box-sizing:border-box;padding:15px;word-wrap:break-word;word-break:break-all}.bf-container .public-DraftEditor-content>div{padding-bottom:20px}.bf-container .public-DraftEditor-content .braft-link{color:#4078c0}.bf-container .public-DraftEditor-content blockquote{margin:0 0 10px;padding:15px 20px;background-color:#f1f2f3;border-left:5px solid #ccc;color:#666;font-style:italic}.bf-container .public-DraftEditor-content pre{max-width:100%;max-height:100%;margin:10px 0;padding:15px;overflow:auto;background-color:#f1f2f3;border-radius:3px;color:#666;font-family:monospace;font-size:14px;font-weight:400;line-height:16px;word-wrap:break-word;white-space:pre-wrap}.bf-container .public-DraftEditor-content pre pre{margin:0;padding:0}.bf-container .bfa-left,.bf-container .bfa-left .public-DraftStyleDefault-ltr{text-align:left}.bf-container .bfa-right,.bf-container .bfa-right .public-DraftStyleDefault-ltr{text-align:right}.bf-container .bfa-center,.bf-container .bfa-center .public-DraftStyleDefault-ltr{text-align:center}.bf-container .bfa-justify,.bf-container .bfa-justify .public-DraftStyleDefault-ltr{text-align:justify}.bf-container .bfa-center>div,.bf-container .bfa-justify>div,.bf-container .bfa-left>div,.bf-container .bfa-right>div{display:inline-block}.bf-container .bff-left:hover,.bf-container .bff-right:hover{z-index:2}.bf-container .bff-left{position:relative;z-index:1;float:left;margin:0 10px 0 0}.bf-container .bff-right{position:relative;z-index:1;float:right;margin:0 0 0 10px}.bf-container .bftd-1{text-indent:2em;display:inline;display:initial}.bf-container .bftd-2{text-indent:4em;display:inline;display:initial}.bf-container .bftd-3{text-indent:6em;display:inline;display:initial}.bf-container .bftd-4{text-indent:8em;display:inline;display:initial}.bf-container .bftd-5{text-indent:10em;display:inline;display:initial}.bf-container .bftd-6{text-indent:12em;display:inline;display:initial}.bf-container .bf-image,.bf-container .bf-media{position:relative}.bf-container .bf-image img{display:block;max-width:100%;font-size:0;resize:both;outline-offset:1px}.bf-container .bf-image img:hover{outline:1px solid #3498db}.bf-container .bf-media-toolbar{position:absolute;z-index:3;bottom:15px;left:50%;width:auto;background-color:#21242a;border-radius:2px;font-weight:400;text-align:center;white-space:nowrap;-webkit-transform:translateX(-50%);transform:translateX(-50%);-webkit-box-shadow:0 5px 15px rgba(0,0,0,.2);box-shadow:0 5px 15px rgba(0,0,0,.2);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.bf-container .bf-media-toolbar .bf-media-toolbar-arrow,.bf-container .bf-media-toolbar:before{position:absolute;bottom:-10px;left:50%;display:block;border:5px solid transparent;border-top-color:#21242a;content:"";-webkit-transform:translateX(-5px);transform:translateX(-5px)}.bf-container .bf-media-toolbar a{font-family:braft-icons!important}.bf-container .bf-media-toolbar a{display:inline-block;min-width:40px;height:40px;color:hsla(0,0%,100%,.5);font-size:18px;font-weight:400;line-height:40px;text-align:center;text-decoration:none;text-transform:uppercase;cursor:pointer}.bf-container .bf-media-toolbar a:hover{color:#fff}.bf-container .bf-media-toolbar a:first-child{border-radius:2px 0 0 2px}.bf-container .bf-media-toolbar a:last-child{border-radius:0 2px 2px 0}.bf-container .bf-media-toolbar a.active{color:#3498db}.bf-switch{position:relative;width:32px;height:16px;background-color:hsla(0,0%,100%,.15);border-radius:8px;-webkit-transition:background .3s;transition:background .3s}.bf-switch.active{background-color:#3498db}.bf-switch.active:before{left:16px}.bf-switch:before{position:absolute;left:0;display:block;width:16px;height:16px;border-radius:8px;background-color:#eee;content:"";-webkit-transform:scale(1.2);transform:scale(1.2);-webkit-transition:.3s;transition:.3s}.bf-video-player video{display:block;width:640px;max-width:80vw;height:auto;margin:0 10px 10px;-o-object-fit:contain;object-fit:contain}.bf-modal{position:fixed;z-index:99999;top:0;left:0;width:100%;height:100%}.bf-modal button{outline:none}.bf-modal-mask{position:absolute;z-index:1;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.1);opacity:0;-webkit-transition:opacity .2s;transition:opacity .2s}.bf-modal-content{position:absolute;z-index:2;top:45%;left:50%;max-width:95%;background-color:#fff;border-radius:2px;-webkit-box-shadow:0 15px 30px rgba(0,0,0,.1);box-shadow:0 15px 30px rgba(0,0,0,.1);opacity:0;-webkit-transform:translate(-50%,-40%);transform:translate(-50%,-40%);-webkit-transition:opacity .2s,-webkit-transform .2s;transition:opacity .2s,-webkit-transform .2s;transition:transform .2s,opacity .2s;transition:transform .2s,opacity .2s,-webkit-transform .2s}.bf-modal-header{height:50px}.bf-modal-caption{float:left;margin:0;padding:0 15px;color:#999;font-size:14px;font-weight:400;line-height:50px}.bf-modal-close-button{float:right;width:50px;height:50px;background-color:transparent;border:none;color:#ccc;font-size:18px;cursor:pointer}.bf-modal-close-button:hover{color:#e74c3c}.bf-modal-body{overflow:auto}.bf-modal-footer{min-height:15px;padding:0 15px;overflow:hidden}.bf-modal-addon-text{float:left;color:#999;font-size:12px;line-height:60px}.bf-modal-buttons{float:right}.bf-modal-cancel,.bf-modal-confirm{height:36px;margin:12px 0 12px 15px;padding:0 30px;border:none;border-radius:2px;font-size:12px;font-weight:700;cursor:pointer}.bf-modal-cancel{background-color:#e8e9ea;color:#999}.bf-modal-cancel:hover{background-color:#d8d9da}.bf-modal-confirm{background-color:#3498db;color:#fff}.bf-modal-confirm:hover{background-color:#2084c7}.bf-modal-confirm.disabled{opacity:.3;pointer-events:none;-webkit-filter:grayscale(.4);filter:grayscale(.4)}.bf-modal-root.active .bf-modal-mask{opacity:1}.bf-modal-root.active .bf-modal-content{opacity:1;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.bf-audio-player audio{width:480px;max-width:80vw;margin:0 10px 10px}.bf-player-holder{position:relative;height:240px;overflow:hidden;background-color:#21242a;border-radius:3px}.bf-player-holder .icon-badge{position:absolute;z-index:2;top:0;left:0;height:30px;padding:0 15px;border-radius:0 0 3px 0;color:#fff;background-color:hsla(0,0%,100%,.1)}.bf-player-holder .icon-badge i,.bf-player-holder .icon-badge span{display:block;float:left;line-height:30px}.bf-player-holder .icon-badge span{margin-left:5px;font-size:12px}.bf-player-holder .button-remove{position:absolute;z-index:2;top:5px;right:5px;width:40px;height:40px;background-color:transparent;border:none;border-radius:50%;outline:none;color:#fff;font-size:24px;text-align:center;cursor:pointer}.bf-player-holder .button-remove:hover{color:#e74c3c}.bf-player-holder .button-play{position:relative;z-index:2;display:block;width:80px;height:80px;margin:40px auto 20px;background-color:rgba(0,0,0,.7);border:none;border-radius:50%;outline:none;color:#fff;font-size:48px;line-height:80px;text-align:center;backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);cursor:pointer}.bf-player-holder .button-play:hover{background-color:#3498db}.bf-player-holder .bf-name{position:relative;z-index:2;margin:0;color:#fff;font-size:14px;font-weight:500;text-align:center}.bf-player-holder .bf-url{position:relative;z-index:2;width:70%;margin:10px auto;color:hsla(0,0%,100%,.5);font-size:12px;font-weight:400;text-align:center}.bf-player-holder .bf-poster{position:absolute;top:0;left:0;width:100%;height:100%;background-repeat:no-repeat;background-position:50% 50%;background-size:cover;opacity:.3}.bf-content .bf-hr{position:relative;-webkit-box-sizing:content-box;box-sizing:content-box;height:15px;padding-top:15px;text-align:center}.bf-content .bf-hr:before{display:block;height:1px;background-color:rgba(0,0,0,.1);content:""}.bf-content .bf-hr:hover:before{background-color:rgba(0,0,0,.3)}.bf-content .bf-hr:hover .bf-media-toolbar{display:block}.bf-content .bf-hr .bf-media-toolbar{display:none}.bf-link-editor{width:360px;padding-top:25px}.bf-link-editor .input-group{margin:0 15px 8px}.bf-link-editor .input-group input{background-color:hsla(0,0%,100%,.07);border:none;border-radius:2px;-webkit-box-shadow:inset 0 0 0 1px hsla(0,0%,100%,.1);box-shadow:inset 0 0 0 1px hsla(0,0%,100%,.1);color:#fff;font-weight:700}.bf-link-editor .input-group input:hover{-webkit-box-shadow:inset 0 0 0 1px rgba(52,152,219,.5);box-shadow:inset 0 0 0 1px rgba(52,152,219,.5)}.bf-link-editor .input-group input:focus{-webkit-box-shadow:inset 0 0 0 1px #3498db;box-shadow:inset 0 0 0 1px #3498db}.bf-link-editor .input-group input:disabled{color:hsla(0,0%,100%,.7);-webkit-box-shadow:none;box-shadow:none}.bf-link-editor .switch-group{height:16px;margin:15px}.bf-link-editor .switch-group .bf-switch{float:left}.bf-link-editor .switch-group label{float:left;margin-left:15px;color:#999;font-size:12px;line-height:16px}.bf-link-editor .buttons{-webkit-box-sizing:content-box;box-sizing:content-box;height:32px;margin-top:20px;padding:15px;overflow:hidden;-webkit-box-shadow:inset 0 1px 0 0 hsla(0,0%,100%,.1);box-shadow:inset 0 1px 0 0 hsla(0,0%,100%,.1)}.bf-link-editor .buttons .button-remove-link{color:#999;font-size:12px;line-height:32px;cursor:pointer}.bf-link-editor .buttons .button-remove-link:hover{color:#e74c3c}.bf-link-editor .buttons .button-remove-link i{margin-right:5px;font-size:16px}.bf-link-editor .buttons .button-remove-link i,.bf-link-editor .buttons .button-remove-link span{display:block;float:left;line-height:32px}.bf-link-editor .buttons button{margin-left:10px;border-radius:2px;font-weight:700;cursor:pointer}.bf-controlbar{margin:0;padding:0 5px;-webkit-box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.2);box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.2)}.bf-controlbar:after{display:block;content:"";clear:both}.bf-controlbar button{padding:0;outline:none}.bf-controlbar button[disabled]{pointer-events:none;opacity:.3}.bf-controlbar [data-title]{position:relative}.bf-controlbar [data-title]:after,.bf-controlbar [data-title]:before{position:absolute;z-index:10;top:100%;left:50%;pointer-events:none;opacity:0;-webkit-transform:translateX(-50%) translateY(-5px);transform:translateX(-50%) translateY(-5px);-webkit-transition:opacity .3s,-webkit-transform .3s;transition:opacity .3s,-webkit-transform .3s;transition:opacity .3s,transform .3s;transition:opacity .3s,transform .3s,-webkit-transform .3s}.bf-controlbar [data-title]:before{margin-top:3px;border:5px solid transparent;border-bottom-color:#21242a;content:""}.bf-controlbar [data-title]:after{margin-top:12px;padding:5px;background-color:#21242a;border-radius:2px;-webkit-box-shadow:0 5px 15px rgba(0,0,0,.2);box-shadow:0 5px 15px rgba(0,0,0,.2);color:#fff;font-size:12px;line-height:16px;white-space:nowrap;content:attr(data-title)}.bf-controlbar [data-title]:hover:after,.bf-controlbar [data-title]:hover:before{opacity:1;-webkit-transform:translateX(-50%) translateY(0);transform:translateX(-50%) translateY(0)}.bf-controlbar input{outline:none}.bf-controlbar .separator-line{display:block;float:left;height:26px;width:1px;margin:10px;-webkit-box-shadow:inset -1px 0 0 0 rgba(0,0,0,.1);box-shadow:inset -1px 0 0 0 rgba(0,0,0,.1)}.bf-controlbar .separator-line+.control-item,.bf-controlbar .separator-line+.control-item-group{margin-left:0}.bf-controlbar .separator-line+.separator-line,.bf-controlbar .separator-line.first-child,.bf-controlbar .separator-line.last-child{display:none}.bf-controlbar .control-item-group{float:left;height:36px;margin:5px 0 5px 3px}.bf-controlbar .control-item-group:first-child{margin-left:0}.bf-controlbar .control-item-group>.control-item{margin-top:0;margin-bottom:0}.bf-controlbar .dropdown-handler{border-radius:2px}.bf-controlbar .control-item{display:block;float:left;height:36px;margin:5px 0 5px 3px;border-radius:2px;cursor:pointer}.bf-controlbar .control-item.component-wrapper{cursor:default}.bf-controlbar .control-item:first-child{margin-left:0}.bf-controlbar .control-item.button{-webkit-box-sizing:border-box;box-sizing:border-box;min-width:36px;padding:0 8px;background-color:transparent;border:none;color:#6a6f7b;font-size:14px}.bf-controlbar .control-item.button:hover{background-color:rgba(0,0,0,.05)}.bf-controlbar .control-item.button.active{color:#3498db}.bf-controlbar .control-item.button i:before{display:block;height:36px;font-size:18px;line-height:36px}.bf-controlbar .control-item.button .bfi-redo:before,.bf-controlbar .control-item.button .bfi-undo:before{font-size:14px}.bf-controlbar .dropdown .control-item{width:100%;float:none;margin:0}.headings-dropdown{min-width:110px}.headings-dropdown .menu{width:200px;overflow:hidden}.headings-dropdown .menu .menu-item{padding:15px 20px;text-align:left;line-height:normal}.headings-dropdown .menu .menu-item h1,.headings-dropdown .menu .menu-item h2,.headings-dropdown .menu .menu-item h3,.headings-dropdown .menu .menu-item h4,.headings-dropdown .menu .menu-item h5,.headings-dropdown .menu .menu-item h6{margin:0;padding:0;color:inherit}.headings-dropdown .menu .menu-item h1{font-size:28px}.headings-dropdown .menu .menu-item h2{font-size:24px}.headings-dropdown .menu .menu-item h3{font-size:20px}.headings-dropdown .menu .menu-item h4{font-size:16px}.headings-dropdown .menu .menu-item h5{font-size:14px}.headings-dropdown .menu .menu-item h6{font-size:12px}.bf-colors{-webkit-box-sizing:content-box;box-sizing:content-box;list-style:none;width:240px;margin:0;padding:15px;overflow:hidden}.bf-colors li{-webkit-box-sizing:content-box;box-sizing:content-box;display:block;float:left;width:24px;height:24px;margin:5px;padding:0;background-color:currentColor;border:3px solid transparent;border-radius:50%;cursor:pointer;-webkit-transition:-webkit-transform .2s;transition:-webkit-transform .2s;transition:transform .2s;transition:transform .2s, -webkit-transform .2s}.bf-colors li:hover{-webkit-transform:scale(1.3);transform:scale(1.3)}.bf-colors li.active{-webkit-box-shadow:0 0 0 2px #3498db;box-shadow:0 0 0 2px #3498db}.text-color-dropdown.light-theme .bf-color-switch-buttons button{border-bottom:1px solid #ccc;color:#616569}.text-color-dropdown.light-theme .bf-color-switch-buttons button.active{border-bottom-color:#3498db;color:#3498db}.text-color-dropdown button.dropdown-handler span{width:36px;padding:0;overflow:hidden;border-radius:2px}.text-color-dropdown .bf-text-color-picker-wrap{overflow:hidden}.text-color-dropdown .bf-color-switch-buttons{height:36px}.text-color-dropdown .bf-color-switch-buttons button{float:left;width:50%;height:36px;background-color:transparent;border:none;border-bottom:1px solid hsla(0,0%,100%,.1);color:hsla(0,0%,100%,.5);font-size:12px;font-weight:400;text-transform:uppercase;cursor:pointer}.text-color-dropdown .bf-color-switch-buttons button.active{border-bottom-color:#3498db;color:#3498db}.bf-dropdown{position:relative;width:auto;height:36px;margin:0}.bf-dropdown.disabled{pointer-events:none;opacity:.3}.bf-dropdown.light-theme .dropdown-content{border:1px solid #ccc}.bf-dropdown.light-theme .dropdown-content .dropdown-arrow{background-color:#fff;border:1px solid #ccc}.bf-dropdown.light-theme .dropdown-content .dropdown-content-inner{background-color:#fff}.bf-dropdown .dropdown-content{-webkit-box-sizing:content-box;box-sizing:content-box;position:absolute;z-index:10;top:100%;left:50%;visibility:hidden;float:left;width:auto;min-width:100%;margin-top:9px;border-radius:2px;-webkit-box-shadow:0 5px 15px rgba(0,0,0,.2);box-shadow:0 5px 15px rgba(0,0,0,.2);opacity:0;cursor:default;-webkit-transform:translate(-50%,20px);transform:translate(-50%,20px);-webkit-transition:.2s;transition:.2s}.bf-dropdown .dropdown-content ::-webkit-scrollbar-track{background-color:transparent}.bf-dropdown .dropdown-content ::-webkit-scrollbar{width:4px;background-color:transparent;border-radius:2px}.bf-dropdown .dropdown-content ::-webkit-scrollbar-thumb{background-color:hsla(0,0%,100%,.3);border-radius:2px}.bf-dropdown .dropdown-content .dropdown-arrow{position:absolute;z-index:1;top:-3px;left:50%;width:10px;height:10px;background-color:#21242a;-webkit-transform:translateX(-50%) rotate(45deg);transform:translateX(-50%) rotate(45deg);-webkit-transition:margin .2s;transition:margin .2s}.bf-dropdown .dropdown-content .dropdown-arrow.active{background-color:#3498db}.bf-dropdown .dropdown-content .menu{list-style:none;margin:0;padding:0;overflow:hidden;border-radius:2px}.bf-dropdown .dropdown-content .menu-item{display:block;list-style:none;margin:0;font-size:16px;cursor:pointer}.bf-dropdown .dropdown-content .menu-item:hover{background-color:rgba(0,0,0,.1)}.bf-dropdown .dropdown-content .menu-item.active{background-color:#3498db;color:#fff}.bf-dropdown .dropdown-content .menu-item:not(.active){color:hsla(0,0%,100%,.6);-webkit-box-shadow:inset 0 -1px 0 0 hsla(0,0%,100%,.1);box-shadow:inset 0 -1px 0 0 hsla(0,0%,100%,.1)}.bf-dropdown .dropdown-content-inner{position:relative;z-index:2;overflow:auto;background-color:#21242a;border-radius:2px}.bf-dropdown .dropdown-handler{position:relative;display:block;width:100%;height:36px;background-color:transparent;border:none;color:#6a6f7b;cursor:pointer}.bf-dropdown .dropdown-handler:hover{background-color:rgba(0,0,0,.05)}.bf-dropdown .dropdown-handler *{display:inline;padding:0;font-size:inherit;font-weight:400}.bf-dropdown .dropdown-handler>span{float:left;padding:0 10px;font-size:14px;line-height:36px;pointer-events:none}.bf-dropdown .dropdown-handler>span i{display:block;height:36px;font-size:16px;line-height:36px;text-align:center}.bf-dropdown .dropdown-handler .bfi-drop-down{float:right;width:30px;height:36px;font-size:16px;line-height:36px;text-align:center;pointer-events:none}.bf-dropdown.active .dropdown-handler{background-color:rgba(0,0,0,.05)}.bf-dropdown.active .dropdown-content{visibility:visible;opacity:1;-webkit-transform:translate(-50%);transform:translate(-50%)}.font-family-dropdown{min-width:120px}.font-family-dropdown .dropdown-content{width:180px}.font-family-dropdown .menu-item{padding:12px 15px}.bf-font-size-dropdown{min-width:95px}.bf-font-sizes{-webkit-box-sizing:content-box;box-sizing:content-box;width:210px;list-style:none;margin:0;padding:5px;overflow:hidden}.bf-font-sizes li{display:block;float:left;width:60px;height:30px;background-color:hsla(0,0%,100%,.1);border-radius:2px;margin:5px;color:#fff;font-size:12px;line-height:30px;text-align:center;text-transform:uppercase;cursor:pointer}.bf-font-sizes li:hover{background-color:hsla(0,0%,100%,.2)}.bf-font-sizes li.active{background-color:#3498db}.bf-line-height-dropdown{min-width:95px}.bf-line-heights{-webkit-box-sizing:content-box;box-sizing:content-box;width:210px;list-style:none;margin:0;padding:5px;overflow:hidden}.bf-line-heights li{display:block;float:left;width:60px;height:30px;background-color:hsla(0,0%,100%,.1);border-radius:2px;margin:5px;color:#fff;font-size:12px;line-height:30px;text-align:center;text-transform:uppercase;cursor:pointer}.bf-line-heights li:hover{background-color:hsla(0,0%,100%,.2)}.bf-line-heights li.active{background-color:#3498db}.bf-emojis-wrap{position:relative;width:210px;height:220px;overflow:hidden}.bf-emojis-wrap:after,.bf-emojis-wrap:before{position:absolute;z-index:1;right:0;left:0;height:30px;border-radius:2px;content:"";pointer-events:none}.bf-emojis-wrap:before{top:0;background-image:-webkit-gradient(linear,left bottom, left top,from(rgba(33,36,42,0)),to(#21242a));background-image:linear-gradient(0deg,rgba(33,36,42,0),#21242a)}.bf-emojis-wrap:after{bottom:0;background-image:-webkit-gradient(linear,left top, left bottom,from(rgba(33,36,42,0)),to(#21242a));background-image:linear-gradient(rgba(33,36,42,0),#21242a)}.bf-emojis{-webkit-box-sizing:content-box;box-sizing:content-box;width:200px;height:195px;list-style:none;margin:0;padding:15px 15px 20px;overflow:auto}.bf-emojis li{display:block;float:left;width:30px;height:30px;margin:0;padding:0;color:#fff;border-radius:2px;font-family:Apple Color Emoji,Segoe UI,Segoe UI Emoji,Segoe UI Symbol;font-size:18px;line-height:32px;text-align:center;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-transition:-webkit-transform .2s;transition:-webkit-transform .2s;transition:transform .2s;transition:transform .2s, -webkit-transform .2s}.bf-emojis li:hover{-webkit-transform:scale(1.5);transform:scale(1.5)}.bf-letter-spacing-dropdown{min-width:95px}.bf-letter-spacings{-webkit-box-sizing:content-box;box-sizing:content-box;width:210px;list-style:none;margin:0;padding:5px;overflow:hidden}.bf-letter-spacings li{display:block;float:left;width:60px;height:30px;background-color:hsla(0,0%,100%,.1);border-radius:2px;margin:5px;color:#fff;font-size:12px;line-height:30px;text-align:center;text-transform:uppercase;cursor:pointer}.bf-letter-spacings li:hover{background-color:hsla(0,0%,100%,.2)}.bf-letter-spacings li.active{background-color:#3498db}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.ZOAjzCoz70{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.Atu8SQbCdw{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}._2QOkGhRoyo{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}._2QOkGhRoyo>i,._2QOkGhRoyo>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.FMTl87AtF2{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.RK5Sccby-T{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.fNETlk\+-xe{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.\+I-RmmZn1a{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}._6w8BVNO0qZ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.SAwENROAtY{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.h\+h2IXM5ja{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.h\+h2IXM5ja .h9YiX0bw7k{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.h\+h2IXM5ja .h9YiX0bw7k>span{color:rgba(0,0,0,0.65)}.qa3Vn\+zfht{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.qa3Vn\+zfht .Qy78BZk\+Zp{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.qa3Vn\+zfht .Qy78BZk\+Zp>span{font-size:8px}.jreLh\+RPEm .ant-popover-inner-content{padding:0}.jreLh\+RPEm .ant-popover-arrow{border-color:#475365 !important}.jreLh\+RPEm .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.zUZyhXcKwB{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.gBGkX8C1NF{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.gBGkX8C1NF .hUFE9uCIif{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}._2W8JjTTVhK{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.mHLT633oTz{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.mHLT633oTz{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.doucXDky6d{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.xA4XVozVtX html,.xA4XVozVtX body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.xA4XVozVtX body,.xA4XVozVtX div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.xA4XVozVtX textarea{border:none !important;padding-left:0 !important}.xA4XVozVtX table,.xA4XVozVtX tr,.xA4XVozVtX td{page-break-inside:avoid}.xA4XVozVtX div{page-break-inside:avoid}.xA4XVozVtX thead{display:table-header-group}.xA4XVozVtX tfoot{display:table-footer-group}.xA4XVozVtX *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.xA4XVozVtX .AIvhQtgdwo,.xA4XVozVtX .no-print,.xA4XVozVtX .react-resizable-handle,.xA4XVozVtX .fc-whiteboard-toolbar,.xA4XVozVtX .ant-modal-root,.xA4XVozVtX .ant-alert,.xA4XVozVtX ._4vP0I0EZNx,.xA4XVozVtX .ZiDduITvbX{display:none !important}.xA4XVozVtX .N-hDv0Nch5{display:none !important}}.WIC5i\+43zK{width:100%;overflow:hidden}.WIC5i\+43zK ._9W-RB39iBs{color:#6874e2;cursor:pointer}.WIC5i\+43zK .xqpsTs5lHu{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:12px;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.WIC5i\+43zK .xqpsTs5lHu span{color:#6874e2;cursor:pointer;margin-right:12px}.WIC5i\+43zK .xqpsTs5lHu .lIPiqPYuIM{width:150px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}._1dVKbDTV7o{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.sEiD6ZLSBZ{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.fCwRDlJyjn{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.fCwRDlJyjn>i,.fCwRDlJyjn>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.bjBvT-AXBI{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.r-TaqxiecM{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.-Mpsi4AgXG{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.i8nxyvWvHl{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}._44jwA1Yhin{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.AD4ftjv061{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.FrZC83oV0a{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.FrZC83oV0a .jwk258ElH8{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.FrZC83oV0a .jwk258ElH8>span{color:rgba(0,0,0,0.65)}.-EVyd43bn9{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.-EVyd43bn9 .mjv-KhxWr4{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.-EVyd43bn9 .mjv-KhxWr4>span{font-size:8px}.jpq3WTZkqY .ant-popover-inner-content{padding:0}.jpq3WTZkqY .ant-popover-arrow{border-color:#475365 !important}.jpq3WTZkqY .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.oACGe8kdFG{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.NYYhO\+6uOC{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.NYYhO\+6uOC .F\+AODzRBmO{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.V4hEJpz7iH{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.TgwbFWt3Zj{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.TgwbFWt3Zj{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}._9AdkS7TUXp{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.iHmZF7NDPu html,.iHmZF7NDPu body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.iHmZF7NDPu body,.iHmZF7NDPu div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.iHmZF7NDPu textarea{border:none !important;padding-left:0 !important}.iHmZF7NDPu table,.iHmZF7NDPu tr,.iHmZF7NDPu td{page-break-inside:avoid}.iHmZF7NDPu div{page-break-inside:avoid}.iHmZF7NDPu thead{display:table-header-group}.iHmZF7NDPu tfoot{display:table-footer-group}.iHmZF7NDPu *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.iHmZF7NDPu ._72-aGCHyyg,.iHmZF7NDPu .no-print,.iHmZF7NDPu .react-resizable-handle,.iHmZF7NDPu .fc-whiteboard-toolbar,.iHmZF7NDPu .ant-modal-root,.iHmZF7NDPu .ant-alert,.iHmZF7NDPu .egPOFtdtbj,.iHmZF7NDPu .e\+oHTuFG8i{display:none !important}.iHmZF7NDPu .PHX8zjS4Nf{display:none !important}}._6QVoknQoOt{width:100%;position:relative;padding:24px;overflow:hidden;background-color:#fff}.hE1gmo1yCp{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding-bottom:12px;border-bottom:1px solid rgba(0,0,0,0.1)}.hE1gmo1yCp .sRsTJb8Zdb{font-size:16px}.al6rqej0hR{width:100%;height:calc(100vh - 64px - 48px - 80px - 24px);overflow:auto;margin-top:12px}.al6rqej0hR .rtstGvV7fb{width:100%;margin-top:12px;margin-bottom:24px}.q2zDN8MkiA{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.i90d79Hb7Q{color:#6874e2;cursor:pointer}.\-5fdllarQe{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.\+P11IgMsmP{width:200px;margin-right:24px;margin-top:12px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:red}.\+P11IgMsmP input{margin-right:12px}.\+P11IgMsmP span{cursor:pointer}._3bDyzanXH\+{width:200px;margin-right:24px;margin-top:12px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:red;display:-webkit-box;display:-ms-flexbox;display:flex;width:100%;margin:12px 0 12px 0}._3bDyzanXH\+ input{margin-right:12px}._3bDyzanXH\+ span{cursor:pointer}.RZ4628YZLp{width:110px;height:110px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:12px 0 12px 0}.RZ4628YZLp img{width:100%;height:100%}.gWB2mZn8Y0{display:-webkit-box;display:-ms-flexbox;display:flex}.gWB2mZn8Y0 input{margin-left:24px}.yvwEMSry1a{display:-webkit-box;display:-ms-flexbox;display:flex}.yvwEMSry1a button{margin-left:12px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.eUD9dz8IJS{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.YObaNsHHPs{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.CfC-uyAPVI{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.CfC-uyAPVI>i,.CfC-uyAPVI>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.O4UNiVhbYG{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.PScgW6TyoG{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.O8jsflBjpx{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.fqdUmpIiAT{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.IVxmIQ86gt{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.zFzwu\+I8GS{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.NnzE8Ul68B{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.NnzE8Ul68B ._2VPE6a0mh2{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.NnzE8Ul68B ._2VPE6a0mh2>span{color:rgba(0,0,0,0.65)}.sbE8qw-VuO{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.sbE8qw-VuO .mI1nRPXi1w{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.sbE8qw-VuO .mI1nRPXi1w>span{font-size:8px}.PthtRKd8Vl .ant-popover-inner-content{padding:0}.PthtRKd8Vl .ant-popover-arrow{border-color:#475365 !important}.PthtRKd8Vl .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.uDjcV9pHcd{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.mSitzTC0F1{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.mSitzTC0F1 ._18s1eMJCHc{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}._0suArpSRk4{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}._1JfAFkg0iz{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{._1JfAFkg0iz{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.ws5LyzuxYC{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.OSXWpN4btR html,.OSXWpN4btR body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.OSXWpN4btR body,.OSXWpN4btR div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.OSXWpN4btR textarea{border:none !important;padding-left:0 !important}.OSXWpN4btR table,.OSXWpN4btR tr,.OSXWpN4btR td{page-break-inside:avoid}.OSXWpN4btR div{page-break-inside:avoid}.OSXWpN4btR thead{display:table-header-group}.OSXWpN4btR tfoot{display:table-footer-group}.OSXWpN4btR *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.OSXWpN4btR .p3XRa9Ft08,.OSXWpN4btR .no-print,.OSXWpN4btR .react-resizable-handle,.OSXWpN4btR .fc-whiteboard-toolbar,.OSXWpN4btR .ant-modal-root,.OSXWpN4btR .ant-alert,.OSXWpN4btR .ZgNn2dPAV9,.OSXWpN4btR ._7v1JKuR2ra{display:none !important}.OSXWpN4btR .ifXH3bUQry{display:none !important}}.SLLhGSQmvj{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);padding:12px;padding-top:0;position:relative}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.BN9PhyNJul{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.mcaodQnpw0{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.RtvVAZimrU{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.RtvVAZimrU>i,.RtvVAZimrU>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.JTNJOUuZAe{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.EWp1VAkTqo{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.lpxNAv8zfx{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.aD4-BvVo9R{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.rc61EOFLlI{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.\+5qgIKFJMV{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.HS75SeWIEP{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.HS75SeWIEP .Iv8bCtW0DN{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.HS75SeWIEP .Iv8bCtW0DN>span{color:rgba(0,0,0,0.65)}._3Fo-lgLvAL{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}._3Fo-lgLvAL .OEEC0jOdEH{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}._3Fo-lgLvAL .OEEC0jOdEH>span{font-size:8px}.ZQNVAiPf7A .ant-popover-inner-content{padding:0}.ZQNVAiPf7A .ant-popover-arrow{border-color:#475365 !important}.ZQNVAiPf7A .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.hs74Wd-nkE{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}._6V4giDyiun{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._6V4giDyiun .jrGl0D4NJj{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.qw2stkEzjX{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.jS\+9no84Kq{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.jS\+9no84Kq{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.uZYDRejzP\+{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.CW9Riq9\+8H html,.CW9Riq9\+8H body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.CW9Riq9\+8H body,.CW9Riq9\+8H div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.CW9Riq9\+8H textarea{border:none !important;padding-left:0 !important}.CW9Riq9\+8H table,.CW9Riq9\+8H tr,.CW9Riq9\+8H td{page-break-inside:avoid}.CW9Riq9\+8H div{page-break-inside:avoid}.CW9Riq9\+8H thead{display:table-header-group}.CW9Riq9\+8H tfoot{display:table-footer-group}.CW9Riq9\+8H *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.CW9Riq9\+8H .MPjf8l\+19P,.CW9Riq9\+8H .no-print,.CW9Riq9\+8H .react-resizable-handle,.CW9Riq9\+8H .fc-whiteboard-toolbar,.CW9Riq9\+8H .ant-modal-root,.CW9Riq9\+8H .ant-alert,.CW9Riq9\+8H .IQO0uBYvWT,.CW9Riq9\+8H .xv2VeDxLd1{display:none !important}.CW9Riq9\+8H ._2rmel3vLl2{display:none !important}}._7kHJSnHkZ1{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;padding:24px}.zdorL1mH7g{width:300px;-ms-flex-wrap:wrap;flex-wrap:wrap;word-wrap:wrap;word-break:break-word}
._57ahcdzroA{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.LsTN1x4JRI{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.ant-transfer-list-content-item{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:baseline;-ms-flex-align:baseline;align-items:baseline}.ant-transfer-list-content-item-text{width:100%}.ant-transfer-list-footer{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}
.U5KUDkp\+eQ .ant-steps-item-title{font-size:12px}.U5KUDkp\+eQ .ant-steps-item-description{font-size:10px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}._7sR0fsKtjO{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.E5m1mjiUyB{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.MN-tQB1GDy{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.MN-tQB1GDy>i,.MN-tQB1GDy>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.fhgN0MHlDH{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._2sL0uYhpWy{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.atKINU9Vvm{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.GAh1yrf3M\+{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}._1PkbL-VeHP{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.qKX7DlgbmX{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.y5FZyEvhaR{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.y5FZyEvhaR .WS8\+kErmt9{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.y5FZyEvhaR .WS8\+kErmt9>span{color:rgba(0,0,0,0.65)}.-q3v4RmzDc{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.-q3v4RmzDc .MaeSt042Ge{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.-q3v4RmzDc .MaeSt042Ge>span{font-size:8px}.C3qq9usm5U .ant-popover-inner-content{padding:0}.C3qq9usm5U .ant-popover-arrow{border-color:#475365 !important}.C3qq9usm5U .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.w661u-qUeu{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.c3ln6e5F46{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.c3ln6e5F46 .NMhe1iCmPx{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.ByO1qJQcuU{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}._2fIrFaPeSR{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{._2fIrFaPeSR{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.CX7UuflgmZ{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.RTkDxqOHTz html,.RTkDxqOHTz body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.RTkDxqOHTz body,.RTkDxqOHTz div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.RTkDxqOHTz textarea{border:none !important;padding-left:0 !important}.RTkDxqOHTz table,.RTkDxqOHTz tr,.RTkDxqOHTz td{page-break-inside:avoid}.RTkDxqOHTz div{page-break-inside:avoid}.RTkDxqOHTz thead{display:table-header-group}.RTkDxqOHTz tfoot{display:table-footer-group}.RTkDxqOHTz *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.RTkDxqOHTz .r4vnJVWmTm,.RTkDxqOHTz .no-print,.RTkDxqOHTz .react-resizable-handle,.RTkDxqOHTz .fc-whiteboard-toolbar,.RTkDxqOHTz .ant-modal-root,.RTkDxqOHTz .ant-alert,.RTkDxqOHTz .\+0n\+TM0MiR,.RTkDxqOHTz .ODBgQaSe2f{display:none !important}.RTkDxqOHTz .TE3BgBfwxk{display:none !important}}.uWwgjRxmCg{background:#fff;border:1px solid #e9e9e9;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12);border-radius:2px}.CQpj6rAmJ3{height:44px;background:#fafafa;border:1px solid #e9e9e9;border-radius:3px 3px 0 0;padding:0 16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.CQpj6rAmJ3 .xqovco7ZWC{-webkit-box-flex:1;-ms-flex:1 1 1px;flex:1 1 1px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.CQpj6rAmJ3 .xqovco7ZWC .ant-radio-button-wrapper-checked{-webkit-box-shadow:none;box-shadow:none}.CQpj6rAmJ3 .xqovco7ZWC .ant-btn-danger{background:none;color:#ff4d4f}.-MvHNR6g1t{height:110px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:16px}.-MvHNR6g1t .aqvU6mN7DJ{width:100px;height:100px}.-MvHNR6g1t .kd6HuJq1H2{-webkit-box-flex:1;-ms-flex:1 1 1px;flex:1 1 1px;height:90%;margin-left:16px}.-MvHNR6g1t .kd6HuJq1H2 .MFVgc1l78h{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.OysNliOsFO{padding:0 16px}.OysNliOsFO .L1V1L\+zf6L{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;height:40px;margin-left:115px}.OysNliOsFO .L1V1L\+zf6L i.anticon{color:#6874e2}.OysNliOsFO .ant-table-small{border:none}.OysNliOsFO thead{background:#fafafa}
.\-4HK\+FVsw4{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;margin-top:12px}.\-4HK\+FVsw4 .OiyHbe9Ia-{padding:24px}.\-4HK\+FVsw4 .kZ38z3TfYn{-webkit-box-flex:1;-ms-flex:1 1 1px;flex:1 1 1px}.\-4HK\+FVsw4 .kZ38z3TfYn .QAZgpedaE8{color:rgba(0,0,0,0.65);margin-bottom:12px}.\-4HK\+FVsw4 .kZ38z3TfYn .i-UKG\+xDcJ{margin-top:24px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}._1JMzKChrLt{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.DpqiEhFMzL{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.bUqtL9c2m\+{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.bUqtL9c2m\+>i,.bUqtL9c2m\+>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.CEdqVZ0FwV{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.s65pN15DWE{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.gOlCmhC3F9{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}._6YyOCYUjXi{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.F0IBHnfKyY{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.a5NtSz2f5Z{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.esRCkUFlAf{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.esRCkUFlAf .n3Mvs64U2t{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.esRCkUFlAf .n3Mvs64U2t>span{color:rgba(0,0,0,0.65)}.Hn4a1gcDNx{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.Hn4a1gcDNx .S6g9e7-65H{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.Hn4a1gcDNx .S6g9e7-65H>span{font-size:8px}.RKwwDpZ6Kn .ant-popover-inner-content{padding:0}.RKwwDpZ6Kn .ant-popover-arrow{border-color:#475365 !important}.RKwwDpZ6Kn .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.vVyQ\+B11cY{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}._1NQM-pnhC6{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._1NQM-pnhC6 .\+YW52otnnO{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.y-fJxrUs2f{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.bssUG4z6c1{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.bssUG4z6c1{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}._7Jhvyp4EsG{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.J53FM7tNPq html,.J53FM7tNPq body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.J53FM7tNPq body,.J53FM7tNPq div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.J53FM7tNPq textarea{border:none !important;padding-left:0 !important}.J53FM7tNPq table,.J53FM7tNPq tr,.J53FM7tNPq td{page-break-inside:avoid}.J53FM7tNPq div{page-break-inside:avoid}.J53FM7tNPq thead{display:table-header-group}.J53FM7tNPq tfoot{display:table-footer-group}.J53FM7tNPq *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.J53FM7tNPq .FP7BwujOs9,.J53FM7tNPq .no-print,.J53FM7tNPq .react-resizable-handle,.J53FM7tNPq .fc-whiteboard-toolbar,.J53FM7tNPq .ant-modal-root,.J53FM7tNPq .ant-alert,.J53FM7tNPq ._0d7wvT\+9rh,.J53FM7tNPq .UQjGjUIc8m{display:none !important}.J53FM7tNPq .XZbIcec2za{display:none !important}}.AAzVp6RqQO{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;overflow-y:auto}.AAzVp6RqQO .PnJJkrNsqw{min-width:275px;height:40px;line-height:40px;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.AAzVp6RqQO .UmoWJ-NTY6{position:fixed;cursor:pointer;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);right:20px;z-index:999}.AjmkKMhsp5{height:calc(100% - 50px);-webkit-box-shadow:none;box-shadow:none}.sFJ3m93OLb{padding:24px;padding-top:8px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-flex:1;-ms-flex:1 1 1px;flex:1 1 1px}.sFJ3m93OLb .rzrkjLeE6v{margin-bottom:12px}.sFJ3m93OLb .rzrkjLeE6v .FLlzfBJnFX{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:16px}.sFJ3m93OLb .rzrkjLeE6v .FLlzfBJnFX>div{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.sFJ3m93OLb .rzrkjLeE6v .R1qJ1lgHiE{font-size:16px}.sFJ3m93OLb .rzrkjLeE6v .R1qJ1lgHiE .ant-progress-bg{height:15px !important}.sFJ3m93OLb .rzrkjLeE6v .R1qJ1lgHiE .ant-progress-outer{width:80%}.sFJ3m93OLb .rzrkjLeE6v .R1qJ1lgHiE .ant-progress-text{font-size:36px;margin-left:16px;color:#6874e2}.sFJ3m93OLb .rzrkjLeE6v .ubdgWmeyeV .ant-progress-text{color:red}.sFJ3m93OLb .gEqCBaFG-U{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;margin-top:12px}.sFJ3m93OLb .gEqCBaFG-U .iKnTFNCiNT{-webkit-box-flex:1;-ms-flex:1 1 1px;flex:1 1 1px}.sFJ3m93OLb .gEqCBaFG-U .iKnTFNCiNT .HQM\+Z8ZxNs{color:rgba(0,0,0,0.65);margin-bottom:12px}
._4jnwS22oto{margin-top:24px;width:100%}._4jnwS22oto .qXnlGC2jJr{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center}._4jnwS22oto .ant-form-item{margin-bottom:24px}._4jnwS22oto .ant-legacy-form-item{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}._4jnwS22oto .ant-form-horizontal .ant-row:nth-child(6) .ant-form-explain{margin-left:135px}._4jnwS22oto .ant-select-dropdown{z-index:999}._4jnwS22oto .ant-select-selection-item{width:98%;margin-right:0}._4jnwS22oto .ant-select-selection-item-content{width:95%}.pBlI9fd8E4{width:406px}.pBlI9fd8E4 span{margin-bottom:8px}.hFcI9kCucE{position:absolute;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);bottom:10px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.-uTHpuNukM{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.tDBHUUpwNL{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.rcQncVea6I{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.rcQncVea6I>i,.rcQncVea6I>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.BEuO06rk6I{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._69SOrgIKrN{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.seNZzSajsP{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}._5yVxz6UXal{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.NAHKSxg27-{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.fGwZIDEluv{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._59Fv6liMtG{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}._59Fv6liMtG .yu\+GIbjN1l{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}._59Fv6liMtG .yu\+GIbjN1l>span{color:rgba(0,0,0,0.65)}.GTgLJrpBjR{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.GTgLJrpBjR .XTa2oXfcLz{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.GTgLJrpBjR .XTa2oXfcLz>span{font-size:8px}.d0ty80SNxt .ant-popover-inner-content{padding:0}.d0ty80SNxt .ant-popover-arrow{border-color:#475365 !important}.d0ty80SNxt .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.jv0U2hbmRT{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.Tlq9eyN3DX{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.Tlq9eyN3DX .VR88MLtSIu{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.LYAzaLw4TP{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.kJ8On6tQED{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.kJ8On6tQED{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.VmqMH9ZMEy{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{._1-ygf2QoF0 html,._1-ygf2QoF0 body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}._1-ygf2QoF0 body,._1-ygf2QoF0 div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}._1-ygf2QoF0 textarea{border:none !important;padding-left:0 !important}._1-ygf2QoF0 table,._1-ygf2QoF0 tr,._1-ygf2QoF0 td{page-break-inside:avoid}._1-ygf2QoF0 div{page-break-inside:avoid}._1-ygf2QoF0 thead{display:table-header-group}._1-ygf2QoF0 tfoot{display:table-footer-group}._1-ygf2QoF0 *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}._1-ygf2QoF0 .n58iFX\+wvk,._1-ygf2QoF0 .no-print,._1-ygf2QoF0 .react-resizable-handle,._1-ygf2QoF0 .fc-whiteboard-toolbar,._1-ygf2QoF0 .ant-modal-root,._1-ygf2QoF0 .ant-alert,._1-ygf2QoF0 .IdOP-JQzND,._1-ygf2QoF0 .czFswGkBpP{display:none !important}._1-ygf2QoF0 .RpRcYbChwg{display:none !important}}.KRLi7TnEHW{overflow:auto;height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.KRLi7TnEHW .ant-alert-close-icon{top:12px}.eKQrY1s8rQ{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}._5URGxDergc{width:100%;position:relative;padding-bottom:40px}._5URGxDergc ._13SvJ2K8BP{background:white;padding:16px;border-radius:4px;margin-bottom:16px;padding-bottom:0}._5URGxDergc .fvynFHDKR1{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}._5URGxDergc .fvynFHDKR1>form{width:600px}._5URGxDergc .nGEA7gAs6S{font-family:PingFangSC-Medium;font-size:16px;color:rgba(0,0,0,0.85);line-height:24px;margin-right:24px}._5URGxDergc .nGEA7gAs6S span.piTTLZkYih{color:#6874e2}._5URGxDergc .y3UE3fCyrz{font-family:PingFangSC-Regular;font-size:14px;color:rgba(0,0,0,0.45);margin-left:16px}.AXvwsU2yjJ{padding:16px;padding-bottom:0}.AXvwsU2yjJ .XIl2g\+REV-{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.AXvwsU2yjJ .XIl2g\+REV- .fc-gallery-carousel-thumbnail{margin-right:8px}.AXvwsU2yjJ .XIl2g\+REV- .fc-gallery-carousel-thumbnail .fc-gallery-carousel-thumbnail-icons svg>g>path:first-child{fill:rgba(0,0,0,0.45) !important}.QpSKHt24A4{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:16px;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.uDhjKfxUDz{color:#f5222d;cursor:pointer}._4GzMf16Xx1{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:60px;position:absolute;bottom:0;width:100%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.lJacVcnLYo{color:rgba(0,0,0,0.45)}.lJacVcnLYo>div{margin-bottom:4px}
.qoDg-zW\+EO{width:100%;height:80px;padding:8px 24px;padding-left:11px;background:white;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.qoDg-zW\+EO span{font-size:14px}
.fc-schedule-GanttTimeLine{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;width:100%;height:100%;border:solid 1px #cfcfcd;font-size:12px;user-select:none;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none}.fc-schedule-GanttTimeLine-controller{position:absolute;width:100%;height:30px;top:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;z-index:9;padding:0 16px}.fc-schedule-GanttTimeLine-controller-prev{cursor:pointer;width:0;height:0;border-style:solid;border-width:8px 16px 8px 0;border-color:transparent white transparent transparent}.fc-schedule-GanttTimeLine-controller-next{cursor:pointer;width:0;height:0;border-style:solid;border-width:8px 0 8px 16px;border-color:transparent transparent transparent white}.timeLine-main{-webkit-box-flex:1;-ms-flex:1 1 100%;flex:1 1 100%;position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;overflow-y:hidden}.timeLine-side-main{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:108px;min-width:108px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.timeLine-main-header-viewPort{-webkit-box-flex:0;-ms-flex:0 0 60px;flex:0 0 60px;position:relative;height:60px;width:100%;background-color:#707070;overflow:hidden}.timeLine-main-header-container{-webkit-box-flex:0;-ms-flex:0 0 60px;flex:0 0 60px;position:relative;top:0;left:0;height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;background-color:#333333;overflow:hidden;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.timeLine-main-header-day-item{position:absolute;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background-color:#707070;font-size:10px;border-right:solid 1px;border-top:solid 1px;border-bottom:solid 1px;top:20px;height:40px;color:white;text-align:center}.timeLine-main-header-top-item{position:absolute;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;border-right:solid 1px white;height:20px;z-index:91}.timeLine-main-header-day-week{-webkit-box-flex:0;-ms-flex:0 0 12px;flex:0 0 12px;padding:4px;z-index:90}.timeLine-main-header-day-month{top:0px;position:sticky;-webkit-box-flex:0;-ms-flex:0 0 15px;flex:0 0 15px;padding:5px;z-index:90}.timeLine-main-header-time{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;height:22px;-webkit-box-pack:stretch;-ms-flex-pack:stretch;justify-content:stretch}.timeLine-main-header-time-item{border-left:solid 1px silver;border-bottom:solid 1px silver;border-top:solid 1px silver;text-align:center;padding-top:5px}.timeLine-main-data-viewPort{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;position:relative;overflow:hidden;background-color:#fbf9f9}.timeLine-main-data-container{position:relative;top:0;left:0;height:100%;background-color:#fff}.timeLine-main-data-row{position:absolute;width:100%;height:50px}.timeLine-main-data-task{position:absolute;background-color:darkorchid;border-radius:14px;color:white;text-align:center}.timeLine-main-data-task-side{position:absolute;width:10px;cursor:col-resize;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.timeLine-main-data-task-side-linker{width:8px;height:8px;border-radius:4px;cursor:default;z-index:100}.timeLine-main-data-task-side-linker:hover{background-color:black;border:solid .5px grey}.timeLine-main-data-verticalLine{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;height:100%;width:24px;background-color:white;border-left-width:.5px;border-left-color:#cfcfcd;border-left-style:dashed}
.timeLine-side{-webkit-box-flex:1;-ms-flex:1 0 100px;flex:1 0 100px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-shadow:2px 0 5px 5px rgba(207,207,205,0.5);box-shadow:2px 0 5px 5px rgba(207,207,205,0.5);z-index:9}.timeLine-side-title{-webkit-box-flex:0;-ms-flex:0 0 60px;flex:0 0 60px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.timeLine-side-task-viewPort{position:relative;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;height:100%;background-color:white;overflow-x:hidden;overflow-y:auto}.timeLine-side-task-container{position:relative;overflow-x:hidden;overflow-y:hidden}.timeLine-side-task-row{position:absolute;width:100%;background-color:#707070;border-bottom-width:.5px;border-bottom-color:#cfcfcd;border-bottom-style:solid;height:30px;color:grey;text-align:center;overflow:hidden;text-overflow:ellipsis;outline:none;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;cursor:pointer}
.fc-schedule-vertical-spliter{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;cursor:col-resize;height:100%;width:1px;background-color:#cfcfcd}.fc-schedule-square-grip{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;border-radius:50%;height:5px;width:5px;margin:3px 0}
.header-top{height:20px;border-bottom:solid .5px silver}.header-middle{height:20px;background-color:chocolate;color:white;font-size:10px;border-bottom:solid .5px silver}.header-bottom{height:20px;font-size:10px;border-bottom:solid .5px silver}
.fc-schedule-taskClip-popover{position:absolute;min-height:50px;min-width:50px;top:20;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);z-index:9}.fc-schedule-taskClip-popover-arrow{width:0;height:0;border-style:solid;border-width:0 5px 5px 5px;border-color:transparent transparent #475365 transparent;margin-left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}
._56UtJWMrVB{height:100%;display:-webkit-box;display:-ms-flexbox;display:flex}._56UtJWMrVB>div{-webkit-box-flex:1;-ms-flex:1 1 1px;flex:1 1 1px}._56UtJWMrVB>div.o5Ozy0dwE9{-webkit-box-flex:0;-ms-flex:0 0 50px;flex:0 0 50px;width:50px;font-size:12px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-transform:translateX(-10px) translateY(-30px);transform:translateX(-10px) translateY(-30px)}._56UtJWMrVB>div.o5Ozy0dwE9 .-MVmdinI0Z{width:12px;height:200px;background-image:-webkit-gradient(linear, left top, left bottom, from(#71ddcc), color-stop(38%, #f1e40b), color-stop(70%, #e77118), to(#e02020));background-image:linear-gradient(180deg, #71ddcc 0%, #f1e40b 38%, #e77118 70%, #e02020 100%);border-radius:6px}.fc-schedule-GanttTimeLine{width:calc(100% - 50px)}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.MjsxOuIeyt{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}._11S176lQb-{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.Vvjt8bU-Ff{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.Vvjt8bU-Ff>i,.Vvjt8bU-Ff>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}._8cWybDi5xp{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.uEModZ34qU{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.skSyWVzl65{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.InTitAbnM4{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.oWb55qu-AZ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.k3ITy-mRcR{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.q0TRO4TnmW{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.q0TRO4TnmW ._7\+jBmDG6oN{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.q0TRO4TnmW ._7\+jBmDG6oN>span{color:rgba(0,0,0,0.65)}._3NgWAYMOel{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}._3NgWAYMOel ._4PHE3fmFS\+{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}._3NgWAYMOel ._4PHE3fmFS\+>span{font-size:8px}.VENp3XGic2 .ant-popover-inner-content{padding:0}.VENp3XGic2 .ant-popover-arrow{border-color:#475365 !important}.VENp3XGic2 .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.JjmHPy8ph6{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.ZHbLFECFkI{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.ZHbLFECFkI ._4BINpTc0\+D{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.X\+Ms2OElEQ{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.rWARFvI8tK{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.rWARFvI8tK{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.qLCZR\+PgFK{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.aFNMHGNfQo html,.aFNMHGNfQo body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.aFNMHGNfQo body,.aFNMHGNfQo div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.aFNMHGNfQo textarea{border:none !important;padding-left:0 !important}.aFNMHGNfQo table,.aFNMHGNfQo tr,.aFNMHGNfQo td{page-break-inside:avoid}.aFNMHGNfQo div{page-break-inside:avoid}.aFNMHGNfQo thead{display:table-header-group}.aFNMHGNfQo tfoot{display:table-footer-group}.aFNMHGNfQo *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.aFNMHGNfQo .OD3IwtiJb4,.aFNMHGNfQo .no-print,.aFNMHGNfQo .react-resizable-handle,.aFNMHGNfQo .fc-whiteboard-toolbar,.aFNMHGNfQo .ant-modal-root,.aFNMHGNfQo .ant-alert,.aFNMHGNfQo ._8pRXTM4Jz\+,.aFNMHGNfQo ._9xjovpS8sG{display:none !important}.aFNMHGNfQo .oCA1oocxVe{display:none !important}}.p0phMKFr0g{width:100%}.jmsUwbTemp{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:0 8px;width:100%;max-width:400px;overflow-x:auto;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.jmsUwbTemp .VtEVVUk8jg{height:20px;width:30px;background-color:#44d7b6;margin-right:8px;border-radius:4px}.\+-V0go\+LVm{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;max-width:400px;overflow-x:auto}
.oVHWrjhqZ7{width:450px;height:220px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:16px;background:#475365}.Q7urZPuLyo{width:150px}.Q7urZPuLyo .qSvnlpRZ8M{display:-webkit-inline-box !important;display:-ms-inline-flexbox !important;display:inline-flex !important;-webkit-box-align:center !important;-ms-flex-align:center !important;align-items:center !important}.Q7urZPuLyo .qSvnlpRZ8M{height:150px}._9Kk2\+shXoT{-webkit-box-flex:1;-ms-flex:1 1 150px;flex:1 1 150px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:100%;margin-left:24px;font-size:14px;color:white}._9Kk2\+shXoT ._6TeiQbJ1LE>div,._9Kk2\+shXoT ._6TeiQbJ1LE>a{margin:4px 0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}._9Kk2\+shXoT .tuOqDRmX3b button{margin-right:8px}._9Kk2\+shXoT .qhHyzYMRUr{height:60px;width:100%;position:absolute;bottom:-60px;left:0;background:#475365;padding:0 16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}._9Kk2\+shXoT .qhHyzYMRUr .anticon{color:white;cursor:pointer}.tuOqDRmX3b{margin-top:8px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.z5-bBmeHvQ{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.ccS0Fl0ZgB{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.U0GZf7WZ4Q{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.U0GZf7WZ4Q>i,.U0GZf7WZ4Q>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.tGKT2rPeVR{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.F0j5iJR2YD{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.\-6gbbgq1bA{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.iz9c\+7QUI\+{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.rIfxLs-pl0{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.ORh6QAUoOi{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.X4e0guIA6i{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.X4e0guIA6i .eCcNrvwURY{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.X4e0guIA6i .eCcNrvwURY>span{color:rgba(0,0,0,0.65)}._1CmfQhpmlg{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}._1CmfQhpmlg .k0vv4oiaBN{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}._1CmfQhpmlg .k0vv4oiaBN>span{font-size:8px}.aM5\+gJGWhQ .ant-popover-inner-content{padding:0}.aM5\+gJGWhQ .ant-popover-arrow{border-color:#475365 !important}.aM5\+gJGWhQ .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.S2uWLBNK-8{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.nPQeIw0IoC{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.nPQeIw0IoC .WLigy3yzoJ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.HQ8hJWIaZP{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}._3RshLICzTy{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{._3RshLICzTy{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.KhUmin66xK{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.nE0o6DmJiL html,.nE0o6DmJiL body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.nE0o6DmJiL body,.nE0o6DmJiL div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.nE0o6DmJiL textarea{border:none !important;padding-left:0 !important}.nE0o6DmJiL table,.nE0o6DmJiL tr,.nE0o6DmJiL td{page-break-inside:avoid}.nE0o6DmJiL div{page-break-inside:avoid}.nE0o6DmJiL thead{display:table-header-group}.nE0o6DmJiL tfoot{display:table-footer-group}.nE0o6DmJiL *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.nE0o6DmJiL .kMVofzAMVJ,.nE0o6DmJiL .no-print,.nE0o6DmJiL .react-resizable-handle,.nE0o6DmJiL .fc-whiteboard-toolbar,.nE0o6DmJiL .ant-modal-root,.nE0o6DmJiL .ant-alert,.nE0o6DmJiL .Mhgyff2VMs,.nE0o6DmJiL .J1eRYb1M1j{display:none !important}.nE0o6DmJiL ._4BN7eFv7Rn{display:none !important}}.bulgkLFuwo{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;padding:0 8px;width:100%;max-width:400px;overflow-x:auto}.bulgkLFuwo .KJ12kFAZP3{height:20px;width:30px;background-color:#44d7b6;margin-right:8px;border-radius:4px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.zUW3poWanc{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.tgfFpiHkgn{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.nghNWoufUV{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.nghNWoufUV>i,.nghNWoufUV>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.G-xjelnozj{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.pkatpXRaQv{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.c4bC\+TNO13{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.Xn1gDbgqaJ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.JEAoG9Ia-w{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._3xoaP4tnF2{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.XlQeolIv2q{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.XlQeolIv2q .X-pmXsjLr\+{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.XlQeolIv2q .X-pmXsjLr\+>span{color:rgba(0,0,0,0.65)}.lqsYZKy061{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.lqsYZKy061 .Z\+vJStL733{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.lqsYZKy061 .Z\+vJStL733>span{font-size:8px}.oM40UpSAmP .ant-popover-inner-content{padding:0}.oM40UpSAmP .ant-popover-arrow{border-color:#475365 !important}.oM40UpSAmP .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.wWMiHq408O{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.xPYWo9RF1i{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.xPYWo9RF1i .c\+FHmSeaMB{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.gudc0n9yO9{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}._6KLyBOKCzH{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{._6KLyBOKCzH{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.uNsBUA88jd{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.asjizygqL5 html,.asjizygqL5 body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.asjizygqL5 body,.asjizygqL5 div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.asjizygqL5 textarea{border:none !important;padding-left:0 !important}.asjizygqL5 table,.asjizygqL5 tr,.asjizygqL5 td{page-break-inside:avoid}.asjizygqL5 div{page-break-inside:avoid}.asjizygqL5 thead{display:table-header-group}.asjizygqL5 tfoot{display:table-footer-group}.asjizygqL5 *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.asjizygqL5 ._3mTndN3Gpb,.asjizygqL5 .no-print,.asjizygqL5 .react-resizable-handle,.asjizygqL5 .fc-whiteboard-toolbar,.asjizygqL5 .ant-modal-root,.asjizygqL5 .ant-alert,.asjizygqL5 .vQPaXKBsFa,.asjizygqL5 .bayTCpEbm0{display:none !important}.asjizygqL5 .u0PzSp4YMp{display:none !important}}.GMNUoy\+FjZ{width:450px;height:180px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:16px;background:#475365}.H7dLT3cA-U{width:150px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.e6BNkaTLPd{-webkit-box-flex:1;-ms-flex:1 1 150px;flex:1 1 150px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:100%;margin-left:24px;font-size:14px;color:white}.e6BNkaTLPd ._1lC\+JBpVIx>div{margin:4px 0}.e6BNkaTLPd .\+1JWJ\+HWUM button{margin-right:8px}.e6BNkaTLPd .CPd\+XAhOTC{height:60px;width:100%;position:absolute;bottom:-60px;left:0;background:#475365;padding:0 16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.e6BNkaTLPd .CPd\+XAhOTC .anticon{color:white;cursor:pointer}.\+1JWJ\+HWUM{margin-top:8px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.x22EKDXJg5{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.fzabtUYNrS{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.QtHaCWeEAY{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.QtHaCWeEAY>i,.QtHaCWeEAY>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.qURtBCmPdN{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._2TPQ0L1ZtN{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.gmNNuQE-tL{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.zJ6-O0\+JHo{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.gYzKU-z-Eo{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._2JRIUUwp0s{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.BagUxPtXx0{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.BagUxPtXx0 .Yzx\+a-x4DT{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.BagUxPtXx0 .Yzx\+a-x4DT>span{color:rgba(0,0,0,0.65)}.k9axSVDbtr{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.k9axSVDbtr .eHsz4PT4iH{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.k9axSVDbtr .eHsz4PT4iH>span{font-size:8px}._9FCze8sj92 .ant-popover-inner-content{padding:0}._9FCze8sj92 .ant-popover-arrow{border-color:#475365 !important}._9FCze8sj92 .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}._7Zs4ar6SiG{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.nu9wBROh5I{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.nu9wBROh5I .ZXsm1vwLHo{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.BJcRICgmY2{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.mAoldIqIPy{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.mAoldIqIPy{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.bKy5R50-i1{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.KPrVFWbI2N html,.KPrVFWbI2N body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.KPrVFWbI2N body,.KPrVFWbI2N div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.KPrVFWbI2N textarea{border:none !important;padding-left:0 !important}.KPrVFWbI2N table,.KPrVFWbI2N tr,.KPrVFWbI2N td{page-break-inside:avoid}.KPrVFWbI2N div{page-break-inside:avoid}.KPrVFWbI2N thead{display:table-header-group}.KPrVFWbI2N tfoot{display:table-footer-group}.KPrVFWbI2N *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.KPrVFWbI2N ._1B1k4k27v7,.KPrVFWbI2N .no-print,.KPrVFWbI2N .react-resizable-handle,.KPrVFWbI2N .fc-whiteboard-toolbar,.KPrVFWbI2N .ant-modal-root,.KPrVFWbI2N .ant-alert,.KPrVFWbI2N ._1gWCJz7xxk,.KPrVFWbI2N .uvXu\+80AQX{display:none !important}.KPrVFWbI2N .UKwtRJEYyh{display:none !important}}._1wIe0K1muv{position:relative;height:80px}.u23nWAqDTf{width:80px;height:80px;border-radius:8px;-ms-flex-negative:0;flex-shrink:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.WF\+TVzzroV{-webkit-box-shadow:2px 2px 1px rgba(0,0,0,0.45);box-shadow:2px 2px 1px rgba(0,0,0,0.45)}._6k7y4B6ZeW{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:100%;height:100%;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;background-size:cover}._6k7y4B6ZeW .I65WT8\+wHl{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:100%;position:absolute;bottom:0;font-size:10px;background:rgba(0,0,0,0.45);color:white}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.gl6eRUQA3A{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.BCYm5MBU34{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.TD\+fLeTfgU{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.TD\+fLeTfgU>i,.TD\+fLeTfgU>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.figWHKHx7r{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.U1YdXSIrna{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}._6CG8dqbSVu{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.ZgixEiIMeJ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.euPAxr-8zj{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.xbccuRT4i2{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.dwJmJ-wAal{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.dwJmJ-wAal .ZfXn-mug6e{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.dwJmJ-wAal .ZfXn-mug6e>span{color:rgba(0,0,0,0.65)}.LmoVwtyf0R{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.LmoVwtyf0R .NNMkyGeRoB{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.LmoVwtyf0R .NNMkyGeRoB>span{font-size:8px}.a8vMOWwQdS .ant-popover-inner-content{padding:0}.a8vMOWwQdS .ant-popover-arrow{border-color:#475365 !important}.a8vMOWwQdS .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.CmZufSKEiT{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.fDKgcp9l5I{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.fDKgcp9l5I .jc7IvRxh3\+{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}._4a-xJgIKr-{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.OONMxWZoc3{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.OONMxWZoc3{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.chCrvWzMSb{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.fK5S7dSPff html,.fK5S7dSPff body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.fK5S7dSPff body,.fK5S7dSPff div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.fK5S7dSPff textarea{border:none !important;padding-left:0 !important}.fK5S7dSPff table,.fK5S7dSPff tr,.fK5S7dSPff td{page-break-inside:avoid}.fK5S7dSPff div{page-break-inside:avoid}.fK5S7dSPff thead{display:table-header-group}.fK5S7dSPff tfoot{display:table-footer-group}.fK5S7dSPff *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.fK5S7dSPff .OB-C84G6cq,.fK5S7dSPff .no-print,.fK5S7dSPff .react-resizable-handle,.fK5S7dSPff .fc-whiteboard-toolbar,.fK5S7dSPff .ant-modal-root,.fK5S7dSPff .ant-alert,.fK5S7dSPff .fSb5ASjUSm,.fK5S7dSPff .TiWxHPC7Zh{display:none !important}.fK5S7dSPff .iczBx571am{display:none !important}}.KI2aLk93Ev{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:16px;width:100%;height:100px;padding:0 16px}.ucVnZ-66p9{-webkit-box-flex:0;-ms-flex:0 0 150px;flex:0 0 150px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.ucVnZ-66p9 p{margin:0}._21\+cIaSsQ-{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:100px;min-width:500px;padding:8px 16px;background:#e8e8e8}._21\+cIaSsQ- .vhoczSNTyf{margin-right:16px}.NifG0efaUQ{-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15)}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.FJZpilk4So{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}._46NCmyx5Hp{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.DBrXW5-12V{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.DBrXW5-12V>i,.DBrXW5-12V>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.QOQbIFqj47{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._1x5Bq0KYuc{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.fYmvu6-9zQ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.dQkcGOBN3I{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.MU9OpfSJkD{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.HVtrDD0TPB{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.rj6BCSt0Eb{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.rj6BCSt0Eb .ViaCc2H7VG{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.rj6BCSt0Eb .ViaCc2H7VG>span{color:rgba(0,0,0,0.65)}.\-8zoU5CKdS{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.\-8zoU5CKdS .BE9NBqZoUL{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.\-8zoU5CKdS .BE9NBqZoUL>span{font-size:8px}.CNXZiJHOz\+ .ant-popover-inner-content{padding:0}.CNXZiJHOz\+ .ant-popover-arrow{border-color:#475365 !important}.CNXZiJHOz\+ .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}._4bGULFY-rJ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.PuDq96exGq{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.PuDq96exGq ._5fwTtpaFdf{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.mdjtNqMVIv{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.l-3p4rdVbK{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.l-3p4rdVbK{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.BIFkTqHLQL{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.yNSIk7-cNd html,.yNSIk7-cNd body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.yNSIk7-cNd body,.yNSIk7-cNd div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.yNSIk7-cNd textarea{border:none !important;padding-left:0 !important}.yNSIk7-cNd table,.yNSIk7-cNd tr,.yNSIk7-cNd td{page-break-inside:avoid}.yNSIk7-cNd div{page-break-inside:avoid}.yNSIk7-cNd thead{display:table-header-group}.yNSIk7-cNd tfoot{display:table-footer-group}.yNSIk7-cNd *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.yNSIk7-cNd .j7RvRudSAP,.yNSIk7-cNd .no-print,.yNSIk7-cNd .react-resizable-handle,.yNSIk7-cNd .fc-whiteboard-toolbar,.yNSIk7-cNd .ant-modal-root,.yNSIk7-cNd .ant-alert,.yNSIk7-cNd .A5gRL0Dwff,.yNSIk7-cNd .O7CARY7egz{display:none !important}.yNSIk7-cNd .j20\+9vFxT-{display:none !important}}.TzvbQH-UE5{position:relative;padding:16px;height:calc(100% - 90px)}.kAdsEsxYB8{font-family:PingFangSC-Regular;font-size:14px;color:rgba(0,0,0,0.45);margin-bottom:16px}.Cr-8lpwMkW{position:relative;height:100%}.Cr-8lpwMkW ._3PP8VsCr42{height:45px;line-height:45px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:#fafafa;padding:0 24px}.Cr-8lpwMkW ._3PP8VsCr42 h3{line-height:45px;margin:0}.Cr-8lpwMkW ._5RC\+hR4sFK{-webkit-box-flex:0;-ms-flex:0 0 295px;flex:0 0 295px;-webkit-transition:cubic-bezier(.075, .82, .165, 1);transition:cubic-bezier(.075, .82, .165, 1);border:1px solid rgba(0,0,0,0.15);border-radius:4px;height:100%}.Cr-8lpwMkW ._5RC\+hR4sFK>div:last-child{height:calc(100% - 50px);overflow-y:auto}.Cr-8lpwMkW ._5RC\+hR4sFK>div:last-child .lm5U6UhhNw{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.Cr-8lpwMkW ._5RC\+hR4sFK>div:last-child .lm5U6UhhNw>div{margin:8px}.Cr-8lpwMkW .D7KNMLqMPd{-webkit-box-flex:1;-ms-flex:1 1 1px;flex:1 1 1px;margin-left:36px;border:1px solid rgba(0,0,0,0.15);border-radius:4px;height:100%}.Cr-8lpwMkW .D7KNMLqMPd .gjH\+WU05g4{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:vertical;flex-direction:vertical;-ms-flex-wrap:wrap;flex-wrap:wrap;max-height:calc(100% - 50px);overflow-y:auto;padding-top:16px}.\+VaF-AEsZW{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:60px;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.TtAjF-r1Eb{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.QPbB3eAKvL{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.cDyq3DRuKM{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.cDyq3DRuKM>i,.cDyq3DRuKM>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.Ippatn970G{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.ekeqmed96y{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.cnkd\+M\+Y02{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.H-2rwKFBak{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.SDe-IaWCx2{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.EBqXht-nlX{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._8NZmf5D4J-{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}._8NZmf5D4J- ._15wnB07lCv{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}._8NZmf5D4J- ._15wnB07lCv>span{color:rgba(0,0,0,0.65)}.GGs\+1eT5ki{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.GGs\+1eT5ki .I5vwiB5dL6{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.GGs\+1eT5ki .I5vwiB5dL6>span{font-size:8px}.K0T-7WShqs .ant-popover-inner-content{padding:0}.K0T-7WShqs .ant-popover-arrow{border-color:#475365 !important}.K0T-7WShqs .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.ZL5dQd9k8t{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}._7LP6DSGC9H{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._7LP6DSGC9H .CGYv-eeoto{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.BF0NaBgQq2{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.mPvVs1-u8-{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.mPvVs1-u8-{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.KqSKZBAC-2{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.W-rT5XBRc3 html,.W-rT5XBRc3 body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.W-rT5XBRc3 body,.W-rT5XBRc3 div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.W-rT5XBRc3 textarea{border:none !important;padding-left:0 !important}.W-rT5XBRc3 table,.W-rT5XBRc3 tr,.W-rT5XBRc3 td{page-break-inside:avoid}.W-rT5XBRc3 div{page-break-inside:avoid}.W-rT5XBRc3 thead{display:table-header-group}.W-rT5XBRc3 tfoot{display:table-footer-group}.W-rT5XBRc3 *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.W-rT5XBRc3 ._9UKWRmZ1L9,.W-rT5XBRc3 .no-print,.W-rT5XBRc3 .react-resizable-handle,.W-rT5XBRc3 .fc-whiteboard-toolbar,.W-rT5XBRc3 .ant-modal-root,.W-rT5XBRc3 .ant-alert,.W-rT5XBRc3 .buyRrP\+Wmv,.W-rT5XBRc3 .kj0q44P0CZ{display:none !important}.W-rT5XBRc3 .ptRt98tXXZ{display:none !important}}._0wcnxPrRwG{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;padding:16px;padding-top:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;height:calc(100vh - 180px)}.vIWGn2M1QD .HMZqAG7I9Y{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-family:PingFangSC-Medium;font-size:18px;color:rgba(0,0,0,0.65);height:36px;line-height:36px}.vIWGn2M1QD .RZFVC2XSeV{height:45px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-bottom:16px;margin-top:16px}.vIWGn2M1QD .dYjZXNOm1p{margin:8px 0}.DQyyKGrmUi{height:calc(100% - 45px)}.OVII0AJQf3{-webkit-box-flex:1;-ms-flex:1 1 1px;flex:1 1 1px;overflow:auto}.hN6hfFfmuc{width:100%;height:45px;margin-top:8px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.WvWsrKKgk1 .ant-popover-inner-content{padding:0}.WvWsrKKgk1 .ant-popover-arrow{border-top-color:#475365 !important;border-left-color:#475365 !important}.LNCsg0-p3x{font-weight:bold;margin:0 4px}
.Vh05glM-JN{width:100%}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}._0NESy4NOzc{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.EOUmSCPh-z{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.KY9bpSagXT{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.KY9bpSagXT>i,.KY9bpSagXT>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.QkIL9REQO7{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.\+GGTtFSiGk{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.euSyfTD6mL{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.qVWCn3a8Vf{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.HcTshk3qEt{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.bvEmkcEYTW{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.O50WNYWYIS{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.O50WNYWYIS .nTNkt0dzss{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.O50WNYWYIS .nTNkt0dzss>span{color:rgba(0,0,0,0.65)}.P288Q1pijL{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.P288Q1pijL .v9xxVjRsk-{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.P288Q1pijL .v9xxVjRsk->span{font-size:8px}.mxfTx4CpIp .ant-popover-inner-content{padding:0}.mxfTx4CpIp .ant-popover-arrow{border-color:#475365 !important}.mxfTx4CpIp .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.aOkkx3idsw{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.PCBf5Fe9Mo{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.PCBf5Fe9Mo .BJZGcKfcdZ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.oG2rR4KHsY{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.ptJG6e2N4o{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.ptJG6e2N4o{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.mvNrUpbJdg{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.AmmrEYWKhe html,.AmmrEYWKhe body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.AmmrEYWKhe body,.AmmrEYWKhe div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.AmmrEYWKhe textarea{border:none !important;padding-left:0 !important}.AmmrEYWKhe table,.AmmrEYWKhe tr,.AmmrEYWKhe td{page-break-inside:avoid}.AmmrEYWKhe div{page-break-inside:avoid}.AmmrEYWKhe thead{display:table-header-group}.AmmrEYWKhe tfoot{display:table-footer-group}.AmmrEYWKhe *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.AmmrEYWKhe ._3YFEcgVr0w,.AmmrEYWKhe .no-print,.AmmrEYWKhe .react-resizable-handle,.AmmrEYWKhe .fc-whiteboard-toolbar,.AmmrEYWKhe .ant-modal-root,.AmmrEYWKhe .ant-alert,.AmmrEYWKhe .mPlsWdqHkz,.AmmrEYWKhe ._1ce4pNyC3b{display:none !important}.AmmrEYWKhe .UKwCADucgf{display:none !important}}.uQb0COYpUu{padding:16px 24px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.CQ0EW5U\+Xe{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:16px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}._3sXMWHT18i{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.DHb\+BGK8Xp{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}._1nSKX3ifdv{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}._1nSKX3ifdv>i,._1nSKX3ifdv>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.FXS12hCR\+0{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.melDDP96QA{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.\+QzRgeIEjo{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.qQYqpNHUu2{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.\+hD03rEzu\+{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.lYJoQoZhDK{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.sfQRdoN6Fn{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.sfQRdoN6Fn .J\+yWh0A5B4{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.sfQRdoN6Fn .J\+yWh0A5B4>span{color:rgba(0,0,0,0.65)}.tVO7kKmy0o{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.tVO7kKmy0o .xFNMY13JOw{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.tVO7kKmy0o .xFNMY13JOw>span{font-size:8px}.yW7SaOgTB9 .ant-popover-inner-content{padding:0}.yW7SaOgTB9 .ant-popover-arrow{border-color:#475365 !important}.yW7SaOgTB9 .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.QokIu7XU49{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}._9su2\+\+82At{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._9su2\+\+82At .-l65\+73sG9{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.d9Z8cQRxyp{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.g9xe9OV79z{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.g9xe9OV79z{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.gvUIUAmsMz{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.uWQGdKXtbU html,.uWQGdKXtbU body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.uWQGdKXtbU body,.uWQGdKXtbU div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.uWQGdKXtbU textarea{border:none !important;padding-left:0 !important}.uWQGdKXtbU table,.uWQGdKXtbU tr,.uWQGdKXtbU td{page-break-inside:avoid}.uWQGdKXtbU div{page-break-inside:avoid}.uWQGdKXtbU thead{display:table-header-group}.uWQGdKXtbU tfoot{display:table-footer-group}.uWQGdKXtbU *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.uWQGdKXtbU .ZQi-QNjJa\+,.uWQGdKXtbU .no-print,.uWQGdKXtbU .react-resizable-handle,.uWQGdKXtbU .fc-whiteboard-toolbar,.uWQGdKXtbU .ant-modal-root,.uWQGdKXtbU .ant-alert,.uWQGdKXtbU .oJtHKL2R-m,.uWQGdKXtbU .Y7oW70ZxXR{display:none !important}.uWQGdKXtbU .SZ\+X5gYs1i{display:none !important}}.pM2W-LAwt6{overflow:hidden !important}.pM2W-LAwt6{height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;max-height:calc(100vh - 110px)}._3ZZWCnUS6E{-webkit-box-flex:1;-ms-flex:1 1 1px;flex:1 1 1px;height:calc(100% - 96px)}._3ZZWCnUS6E .ant-tabs{width:100%;height:100%}._3ZZWCnUS6E .ant-tabs .ant-tabs-nav{height:50px;background:white;-webkit-box-shadow:0 1px 4px rgba(0,21,41,0.08);box-shadow:0 1px 4px rgba(0,21,41,0.08);padding-left:24px}._3ZZWCnUS6E .ant-tabs .ant-tabs-content{height:100%}._3ZZWCnUS6E .ant-tabs .ant-tabs-tabpane{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.tUWX88peiK{width:100%;height:calc(100vh - 240px);padding:24px;overflow-y:auto}.tUWX88peiK .DWkxZm-0fw{margin-bottom:16px}.tUWX88peiK .cTsUHeEQKW{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:12px}
.dY6lKTn2vz{width:450px;height:220px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:16px;background:#475365}.VeNj8E-RUM{width:150px}.VeNj8E-RUM .FcEVZ0etjv{display:-webkit-inline-box !important;display:-ms-inline-flexbox !important;display:inline-flex !important;-webkit-box-align:center !important;-ms-flex-align:center !important;align-items:center !important}.VeNj8E-RUM .FcEVZ0etjv{height:150px}.hEiEGPcsgc{-webkit-box-flex:1;-ms-flex:1 1 150px;flex:1 1 150px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:100%;margin-left:24px;font-size:14px;color:white}.hEiEGPcsgc .IC85zvRsti>div,.hEiEGPcsgc .IC85zvRsti>a{margin:4px 0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.hEiEGPcsgc .YQeu3\+-PDH button{margin-right:8px}.hEiEGPcsgc .EeIDbL1I1b{height:60px;width:100%;position:absolute;bottom:-60px;left:0;background:#475365;padding:0 16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.hEiEGPcsgc .EeIDbL1I1b .anticon{color:white;cursor:pointer}.YQeu3\+-PDH{margin-top:8px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}._4yE0lwZ1ls{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.a\+6ZoNasbf{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.XXDdLrDuDd{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.XXDdLrDuDd>i,.XXDdLrDuDd>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}._8IEwxpnrp5{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.z1WJzghoW-{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.RnB3OP\+D1j{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.R\+w-Ulazk4{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}._2kIoMr1Xxo{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.yFNOtqQ5e4{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.Lu-57mcuKX{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.Lu-57mcuKX .rX1jY\+Q5Dk{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.Lu-57mcuKX .rX1jY\+Q5Dk>span{color:rgba(0,0,0,0.65)}.fwyyOmUdnO{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.fwyyOmUdnO .WpzmUP3G-N{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.fwyyOmUdnO .WpzmUP3G-N>span{font-size:8px}.SQJqmz6L3w .ant-popover-inner-content{padding:0}.SQJqmz6L3w .ant-popover-arrow{border-color:#475365 !important}.SQJqmz6L3w .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.uV-gYHs9dK{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.zr1rbXG0lX{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.zr1rbXG0lX .u4QfYG2hg9{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.vEWqwnquP-{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.iS2zlLUsTe{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.iS2zlLUsTe{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.aUIO\+IZjeH{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.tj8gV-quI4 html,.tj8gV-quI4 body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.tj8gV-quI4 body,.tj8gV-quI4 div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.tj8gV-quI4 textarea{border:none !important;padding-left:0 !important}.tj8gV-quI4 table,.tj8gV-quI4 tr,.tj8gV-quI4 td{page-break-inside:avoid}.tj8gV-quI4 div{page-break-inside:avoid}.tj8gV-quI4 thead{display:table-header-group}.tj8gV-quI4 tfoot{display:table-footer-group}.tj8gV-quI4 *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.tj8gV-quI4 .RQXRR6jiFy,.tj8gV-quI4 .no-print,.tj8gV-quI4 .react-resizable-handle,.tj8gV-quI4 .fc-whiteboard-toolbar,.tj8gV-quI4 .ant-modal-root,.tj8gV-quI4 .ant-alert,.tj8gV-quI4 .Lxqpu66qiE,.tj8gV-quI4 .LMNlv1v5KJ{display:none !important}.tj8gV-quI4 ._5-PvNn7fUt{display:none !important}}.a74IXnrOMF{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:0 8px;width:100%;max-width:400px;overflow-x:auto;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.a74IXnrOMF .qhpvCe4DHi{height:20px;width:30px;background-color:#44d7b6;margin-right:8px;border-radius:4px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.Uu99auBU-p{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.oYgVQ3lHhD{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}._9eyjhdZqAX{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}._9eyjhdZqAX>i,._9eyjhdZqAX>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.ZHwtYAejCv{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.PgTGLP\+yCv{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.Af2lWJBvCE{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}._5BSmDUy5zr{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.U1xwJFQEY3{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.nI\+iExSf\+L{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.NAhyh6dQVN{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.NAhyh6dQVN .pw\+rUDwvm6{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.NAhyh6dQVN .pw\+rUDwvm6>span{color:rgba(0,0,0,0.65)}.OlxTm71lkD{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.OlxTm71lkD .wk2q3\+jeA8{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.OlxTm71lkD .wk2q3\+jeA8>span{font-size:8px}.ScTGZf6Q9O .ant-popover-inner-content{padding:0}.ScTGZf6Q9O .ant-popover-arrow{border-color:#475365 !important}.ScTGZf6Q9O .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.vtn9TdU0fN{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.QbhstC7V7N{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.QbhstC7V7N .QY-YIXjIqh{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.UcKi-1PpZN{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.B3f8SpCqWK{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.B3f8SpCqWK{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.\+AUX-3445J{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{._4A2tC1A09F html,._4A2tC1A09F body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}._4A2tC1A09F body,._4A2tC1A09F div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}._4A2tC1A09F textarea{border:none !important;padding-left:0 !important}._4A2tC1A09F table,._4A2tC1A09F tr,._4A2tC1A09F td{page-break-inside:avoid}._4A2tC1A09F div{page-break-inside:avoid}._4A2tC1A09F thead{display:table-header-group}._4A2tC1A09F tfoot{display:table-footer-group}._4A2tC1A09F *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}._4A2tC1A09F .dsCcix4WBZ,._4A2tC1A09F .no-print,._4A2tC1A09F .react-resizable-handle,._4A2tC1A09F .fc-whiteboard-toolbar,._4A2tC1A09F .ant-modal-root,._4A2tC1A09F .ant-alert,._4A2tC1A09F .WKj23VdJLC,._4A2tC1A09F .Mm\+a7sG0\+G{display:none !important}._4A2tC1A09F .LcyOc4M7Qa{display:none !important}}._2Bk\+WgqWVk .LKIPlkkZK3{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-top:16px}._2Bk\+WgqWVk .LKIPlkkZK3 .boqQhsnz97{-webkit-box-flex:0;-ms-flex:0 0 130px;flex:0 0 130px;margin:16px}._2Bk\+WgqWVk .LKIPlkkZK3 .AT03mmSYxo{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-flex:1;-ms-flex:1 1 1px;flex:1 1 1px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;height:100px}._2Bk\+WgqWVk .LKIPlkkZK3 .AT03mmSYxo .DxHcCVindi{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:100%;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}._2Bk\+WgqWVk .LKIPlkkZK3 .AT03mmSYxo .DxHcCVindi .ant-radio-button-wrapper-checked{-webkit-box-shadow:none;box-shadow:none}._2Bk\+WgqWVk .LKIPlkkZK3 .AT03mmSYxo .\+DTCNg8G5G{width:100%;padding-right:12px}._2Bk\+WgqWVk .LKIPlkkZK3 .AT03mmSYxo .\+DTCNg8G5G .ant-progress-bg{height:15px !important}._2Bk\+WgqWVk .LKIPlkkZK3 .AT03mmSYxo .\+DTCNg8G5G .ant-progress-outer{width:80%}._2Bk\+WgqWVk .LKIPlkkZK3 .AT03mmSYxo .\+DTCNg8G5G .ant-progress-text{font-size:36px;margin-left:16px;color:#6874e2;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}._2Bk\+WgqWVk .LKIPlkkZK3 .AT03mmSYxo .\+DTCNg8G5G ._63ajInWAp1{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-top:10px;width:80%;padding-right:40px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.pq7Yp\+5N54{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}._1\+PjYR81KI{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.H4KvmbykS-{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.H4KvmbykS->i,.H4KvmbykS->span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.DodFo6LutZ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._8MlinP0Mdy{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.r721qKn2UN{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}._4h01Jbbq4\+{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.VmvfS\+HZI4{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.J-v-bIC4i-{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.eFvjyUxhxt{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.eFvjyUxhxt .ivAbANtYv0{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.eFvjyUxhxt .ivAbANtYv0>span{color:rgba(0,0,0,0.65)}.Koh9UZDfe-{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.Koh9UZDfe- .b\+yBKQe642{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.Koh9UZDfe- .b\+yBKQe642>span{font-size:8px}.WOy-fg\+xds .ant-popover-inner-content{padding:0}.WOy-fg\+xds .ant-popover-arrow{border-color:#475365 !important}.WOy-fg\+xds .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}._8vrgiL-4ck{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}._22h14Ax\+Fb{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._22h14Ax\+Fb ._4EKr1YswxC{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.-hKXyIRWWt{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.TDM4KS7dFz{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.TDM4KS7dFz{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.\+GRl6bVmoD{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.xSZSwQegxR html,.xSZSwQegxR body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.xSZSwQegxR body,.xSZSwQegxR div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.xSZSwQegxR textarea{border:none !important;padding-left:0 !important}.xSZSwQegxR table,.xSZSwQegxR tr,.xSZSwQegxR td{page-break-inside:avoid}.xSZSwQegxR div{page-break-inside:avoid}.xSZSwQegxR thead{display:table-header-group}.xSZSwQegxR tfoot{display:table-footer-group}.xSZSwQegxR *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.xSZSwQegxR .tM96phd57x,.xSZSwQegxR .no-print,.xSZSwQegxR .react-resizable-handle,.xSZSwQegxR .fc-whiteboard-toolbar,.xSZSwQegxR .ant-modal-root,.xSZSwQegxR .ant-alert,.xSZSwQegxR .G2Ql7euBEL,.xSZSwQegxR .FvOyRgEl6S{display:none !important}.xSZSwQegxR ._3DjsKM0-qa{display:none !important}}._3eTexwZRN0{width:100%}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}._0coxcRpMW3{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.BiOfk4Fq9t{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.WDDYU5TGDV{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.WDDYU5TGDV>i,.WDDYU5TGDV>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.GQvzvB4MR9{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.pP2ntT91rI{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}._9RlR2jhaZS{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.\+OvHkf3nO3{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.daSY8TVkJe{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.KApoa-Fi0q{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.xFDNqULVv4{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.xFDNqULVv4 .QvKCNwB0kE{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.xFDNqULVv4 .QvKCNwB0kE>span{color:rgba(0,0,0,0.65)}.Ybib2GwVvA{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.Ybib2GwVvA .eKf3Gujxma{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.Ybib2GwVvA .eKf3Gujxma>span{font-size:8px}.FCENuvRc1t .ant-popover-inner-content{padding:0}.FCENuvRc1t .ant-popover-arrow{border-color:#475365 !important}.FCENuvRc1t .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.ldBJiWsXHQ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}._1RS2vlzjls{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._1RS2vlzjls .\+4XzwhImh4{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.X4KglDUbNR{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.Z9dHdG9MGz{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.Z9dHdG9MGz{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.g2Flhgz-Ag{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.fJUGLMdomC html,.fJUGLMdomC body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.fJUGLMdomC body,.fJUGLMdomC div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.fJUGLMdomC textarea{border:none !important;padding-left:0 !important}.fJUGLMdomC table,.fJUGLMdomC tr,.fJUGLMdomC td{page-break-inside:avoid}.fJUGLMdomC div{page-break-inside:avoid}.fJUGLMdomC thead{display:table-header-group}.fJUGLMdomC tfoot{display:table-footer-group}.fJUGLMdomC *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.fJUGLMdomC .xwiG23hLWc,.fJUGLMdomC .no-print,.fJUGLMdomC .react-resizable-handle,.fJUGLMdomC .fc-whiteboard-toolbar,.fJUGLMdomC .ant-modal-root,.fJUGLMdomC .ant-alert,.fJUGLMdomC .h3qcPmpRku,.fJUGLMdomC .QBlVf3Vaaw{display:none !important}.fJUGLMdomC ._2zASDTrjh9{display:none !important}}._0-IIAeHYuT{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;margin-top:24px}._0-IIAeHYuT .Wk0Dc8MoO3,._0-IIAeHYuT ._2N6XjKaxUw{-webkit-box-flex:1;-ms-flex:1 1 1px;flex:1 1 1px}._0-IIAeHYuT .Wk0Dc8MoO3{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.v0t64W8Gyu{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.ZqtgwlM\+D0{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.c00RHNZjsA{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.c00RHNZjsA>i,.c00RHNZjsA>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.TjaQSHoJAv{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.UjNzndZ05E{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.pmPRy-YCsU{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.BZIt\+1KliR{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.mkGEF\+lHfN{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.ipf2bk-f-3{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.cZdbJM1Wvv{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.cZdbJM1Wvv ._8cpKklQ9jN{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.cZdbJM1Wvv ._8cpKklQ9jN>span{color:rgba(0,0,0,0.65)}.eBxUjJTvlf{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.eBxUjJTvlf .TRcpb5fayN{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.eBxUjJTvlf .TRcpb5fayN>span{font-size:8px}.SJATukd7\+z .ant-popover-inner-content{padding:0}.SJATukd7\+z .ant-popover-arrow{border-color:#475365 !important}.SJATukd7\+z .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.h4Z2sW2sy6{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.vxgaDad\+r4{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.vxgaDad\+r4 .GjnpzcvHmx{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.q3D6bhtcXb{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.J8V2\+IL9Bq{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.J8V2\+IL9Bq{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.IhSjqcbytp{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.ioARXWligC html,.ioARXWligC body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.ioARXWligC body,.ioARXWligC div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.ioARXWligC textarea{border:none !important;padding-left:0 !important}.ioARXWligC table,.ioARXWligC tr,.ioARXWligC td{page-break-inside:avoid}.ioARXWligC div{page-break-inside:avoid}.ioARXWligC thead{display:table-header-group}.ioARXWligC tfoot{display:table-footer-group}.ioARXWligC *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.ioARXWligC .Ddg0XpW3nM,.ioARXWligC .no-print,.ioARXWligC .react-resizable-handle,.ioARXWligC .fc-whiteboard-toolbar,.ioARXWligC .ant-modal-root,.ioARXWligC .ant-alert,.ioARXWligC .tV3RuZw7qc,.ioARXWligC .dq0ksLUDQN{display:none !important}.ioARXWligC .jDzdA6K527{display:none !important}}.BVRu9EuHz-{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.zBcQ6ABmJT{padding:16px;padding-top:0}.Gmc7-hxoe0{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.Gmc7-hxoe0 .SdcqzscLcG{width:450px;height:450px;margin-right:40px}.Gmc7-hxoe0 .Sgaxn1D5Gq{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.Gmc7-hxoe0 .Sgaxn1D5Gq .nUXj2MX5ZY{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-left:24px;width:100%}.Gmc7-hxoe0 .Sgaxn1D5Gq .nUXj2MX5ZY>div{margin:8px 0}._2YjGk9eCf0 .ant-carousel .slick-dots li button{background-color:white !important}._2YjGk9eCf0 .ant-carousel .slick-dots li button{width:12px;height:12px}.o\+IHgzzN3T{margin-top:12px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.\+ET1sjSmn7{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.uOIBSsayYI{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}._4o\+cmCQtym{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}._4o\+cmCQtym>i,._4o\+cmCQtym>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}._6\+sO8ExhCa{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._4jpRKfuVH\+{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.ZKQjUJJqfL{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}._5MzyBeu10Z{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.WYKnHi3Ia7{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.vMrFx5J5yw{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.NGGtYpzyXz{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.NGGtYpzyXz .ni19RJq8xo{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.NGGtYpzyXz .ni19RJq8xo>span{color:rgba(0,0,0,0.65)}.HL0ZsjM4D\+{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.HL0ZsjM4D\+ .bSXPHaiATi{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.HL0ZsjM4D\+ .bSXPHaiATi>span{font-size:8px}.jaDcoiMmkb .ant-popover-inner-content{padding:0}.jaDcoiMmkb .ant-popover-arrow{border-color:#475365 !important}.jaDcoiMmkb .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.DbZVCeRAA5{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}._4zPHUhOcFM{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._4zPHUhOcFM .Pink89ADR8{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.MKj8UFqmYM{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.sz7rsndGdc{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.sz7rsndGdc{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.q7FMb4iyZ4{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.gekuwCyrgq html,.gekuwCyrgq body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.gekuwCyrgq body,.gekuwCyrgq div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.gekuwCyrgq textarea{border:none !important;padding-left:0 !important}.gekuwCyrgq table,.gekuwCyrgq tr,.gekuwCyrgq td{page-break-inside:avoid}.gekuwCyrgq div{page-break-inside:avoid}.gekuwCyrgq thead{display:table-header-group}.gekuwCyrgq tfoot{display:table-footer-group}.gekuwCyrgq *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.gekuwCyrgq .IFGeQ9YowI,.gekuwCyrgq .no-print,.gekuwCyrgq .react-resizable-handle,.gekuwCyrgq .fc-whiteboard-toolbar,.gekuwCyrgq .ant-modal-root,.gekuwCyrgq .ant-alert,.gekuwCyrgq .sHdyTh7Wb7,.gekuwCyrgq .LTuyienknz{display:none !important}.gekuwCyrgq .IWQW5LRNHa{display:none !important}}.SSG5Rg21vm{position:relative;padding:8px;padding-right:0;padding-top:0;height:100vh;width:100vw;overflow:auto}.SSG5Rg21vm .ant-row{font-size:3vw;color:white}.SSG5Rg21vm .yQnQGqZzTx .ant-row,.SSG5Rg21vm h2{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:9vh;font-size:2.4vw;color:white}.SSG5Rg21vm .ant-badge{line-height:inherit}.SSG5Rg21vm .ant-badge .ant-badge-count{top:16px}._6A75w3uLoh{display:-webkit-box;display:-ms-flexbox;display:flex;width:100vw;height:calc(100vh - 150px);-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}._6A75w3uLoh .ant-divider-vertical{height:80vh;top:10vh}._6A75w3uLoh .ant-col{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._6A75w3uLoh .y4WlylumOp{-webkit-box-flex:1;-ms-flex:1 1 1px;flex:1 1 1px}.JyD0dUYVOf{background-color:rgba(18, 12, 57)}.SFU\+JM16r0{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.TUjnx6Ok9s{margin-right:8px;margin-bottom:8px}.C2-m5oPLuQ{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.C2-m5oPLuQ .Pink89ADR8{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.ZGOvnMsQDo{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.DEUJ4bvgg-{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.bLK5Tv-6A9{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.KgJfq99wgt{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.KgJfq99wgt>i,.KgJfq99wgt>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.T-ehYt\+F4P{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.QRmtUL\+bc3{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.ybAwH4\+3tc{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.yNL30eggRp{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}._2ijEBqsT0\+{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.G1Tu84xOil{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.mhrP1Gw0lx{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.mhrP1Gw0lx .CYxYA7ODtq{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.mhrP1Gw0lx .CYxYA7ODtq>span{color:rgba(0,0,0,0.65)}._32rV5EBowC{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}._32rV5EBowC .FS6Hr-zH5R{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}._32rV5EBowC .FS6Hr-zH5R>span{font-size:8px}.Qtib0jT0Bo .ant-popover-inner-content{padding:0}.Qtib0jT0Bo .ant-popover-arrow{border-color:#475365 !important}.Qtib0jT0Bo .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.pbgOk1cX\+3{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.QwwYrmyv6b{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.QwwYrmyv6b .Xr3buvqtHg{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.ixWt7N9-Pq{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.DlBawAuiOx{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.DlBawAuiOx{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.F8Lz5LFRCV{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.yeGb1gy1SY html,.yeGb1gy1SY body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.yeGb1gy1SY body,.yeGb1gy1SY div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.yeGb1gy1SY textarea{border:none !important;padding-left:0 !important}.yeGb1gy1SY table,.yeGb1gy1SY tr,.yeGb1gy1SY td{page-break-inside:avoid}.yeGb1gy1SY div{page-break-inside:avoid}.yeGb1gy1SY thead{display:table-header-group}.yeGb1gy1SY tfoot{display:table-footer-group}.yeGb1gy1SY *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.yeGb1gy1SY .rbFbKNRQ-6,.yeGb1gy1SY .no-print,.yeGb1gy1SY .react-resizable-handle,.yeGb1gy1SY .fc-whiteboard-toolbar,.yeGb1gy1SY .ant-modal-root,.yeGb1gy1SY .ant-alert,.yeGb1gy1SY .jFEMNNFibj,.yeGb1gy1SY .\+kaxC76r8I{display:none !important}.yeGb1gy1SY .ioYnhR\+RdB{display:none !important}}.JCFvjK0GMC{overflow:hidden !important}.JCFvjK0GMC{width:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;max-height:calc(100vh - 110px)}._6C58t2cqCq{width:100%;min-height:60px;padding:0 24px;padding-left:11px;background:white;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}._6C58t2cqCq span{font-size:14px}.SIoHkyf6v0{padding:0 16px;height:calc(100vh - 250px);overflow:auto}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.gLHO01d9HW{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.uBX460fc1p{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.XdgZcxfYA-{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.XdgZcxfYA->i,.XdgZcxfYA->span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}._5oXd4jXjNf{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.sSdMUT147I{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.r0N1nlrbGH{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.LqWpNfC3E1{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.pOTO8OaNdC{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.Icbwown7yr{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.c25o2tfJO9{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.c25o2tfJO9 .LtkAsInkya{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.c25o2tfJO9 .LtkAsInkya>span{color:rgba(0,0,0,0.65)}._3G1qgGG8SS{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}._3G1qgGG8SS .HnLtJRD1W\+{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}._3G1qgGG8SS .HnLtJRD1W\+>span{font-size:8px}.RgY9L3fiU0 .ant-popover-inner-content{padding:0}.RgY9L3fiU0 .ant-popover-arrow{border-color:#475365 !important}.RgY9L3fiU0 .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.RXMMVvpW9M{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.j-DBnZfrfg{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.j-DBnZfrfg .N040tvrouW{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.t5i\+AaKCve{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.xMKSTawh4F{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.xMKSTawh4F{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.HUiCi00e47{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{._58g9K7s-yG html,._58g9K7s-yG body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}._58g9K7s-yG body,._58g9K7s-yG div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}._58g9K7s-yG textarea{border:none !important;padding-left:0 !important}._58g9K7s-yG table,._58g9K7s-yG tr,._58g9K7s-yG td{page-break-inside:avoid}._58g9K7s-yG div{page-break-inside:avoid}._58g9K7s-yG thead{display:table-header-group}._58g9K7s-yG tfoot{display:table-footer-group}._58g9K7s-yG *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}._58g9K7s-yG .\+w3emBDOvj,._58g9K7s-yG .no-print,._58g9K7s-yG .react-resizable-handle,._58g9K7s-yG .fc-whiteboard-toolbar,._58g9K7s-yG .ant-modal-root,._58g9K7s-yG .ant-alert,._58g9K7s-yG .Lb6lPjbwA0,._58g9K7s-yG .s9rnq86ZO\+{display:none !important}._58g9K7s-yG .kU6DxNs98C{display:none !important}}.olnGRKEBy\+{overflow:hidden !important}.olnGRKEBy\+{width:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;max-height:calc(100vh - 110px)}.Rn4\+mdykjj{width:100%;min-height:60px;padding:0 24px;padding-left:11px;background:white;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.Rn4\+mdykjj span{font-size:14px}.BA0RVjSWBQ{padding:0 16px;height:calc(100vh - 250px);overflow:auto}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.URUPocbeQv{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.QjZgaVvabo{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.Vr5oSbvEdV{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.Vr5oSbvEdV>i,.Vr5oSbvEdV>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}._0hicUgi7jB{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.AlCv-lsyXH{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.y\+07l9pUPq{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.jD111jm5os{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.rAWBowaMFb{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.CKWADFC608{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.mz1Zg4Q6n5{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.mz1Zg4Q6n5 .udhmgO6axZ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.mz1Zg4Q6n5 .udhmgO6axZ>span{color:rgba(0,0,0,0.65)}.QJ8CC\+7u3x{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.QJ8CC\+7u3x .EF-FoHnEnp{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.QJ8CC\+7u3x .EF-FoHnEnp>span{font-size:8px}._6ePEyb2sb- .ant-popover-inner-content{padding:0}._6ePEyb2sb- .ant-popover-arrow{border-color:#475365 !important}._6ePEyb2sb- .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.RA9aakdwYC{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.oDFHIJwWd0{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.oDFHIJwWd0 .a1kvLdtul5{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.QZycgwnjMH{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.qGdw2Ap5nk{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.qGdw2Ap5nk{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.Sh45o7YVpt{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.Xf51EperTI html,.Xf51EperTI body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.Xf51EperTI body,.Xf51EperTI div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.Xf51EperTI textarea{border:none !important;padding-left:0 !important}.Xf51EperTI table,.Xf51EperTI tr,.Xf51EperTI td{page-break-inside:avoid}.Xf51EperTI div{page-break-inside:avoid}.Xf51EperTI thead{display:table-header-group}.Xf51EperTI tfoot{display:table-footer-group}.Xf51EperTI *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.Xf51EperTI .se0voYUqA8,.Xf51EperTI .no-print,.Xf51EperTI .react-resizable-handle,.Xf51EperTI .fc-whiteboard-toolbar,.Xf51EperTI .ant-modal-root,.Xf51EperTI .ant-alert,.Xf51EperTI .X1Xfc5cBA6,.Xf51EperTI .rLuIPNuK-2{display:none !important}.Xf51EperTI .vm\+qje2qbR{display:none !important}}.DIaXhkbAl6{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.NC9P2hkl9J{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}._2CiXQ\+jjEh{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.qMQsWs7Xa7{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.qMQsWs7Xa7>i,.qMQsWs7Xa7>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.vLYrmpxzQZ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.ltj5ITQ9zn{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.srd6Q2JrhW{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.d6CwljRYLN{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}._5vsKhYMzY1{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.a6b4KgcDrQ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.Ykcm6jj5VO{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.Ykcm6jj5VO .w4g\+pD0ybj{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.Ykcm6jj5VO .w4g\+pD0ybj>span{color:rgba(0,0,0,0.65)}.bjW5LGPm1o{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.bjW5LGPm1o .QLcHcYc-c-{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.bjW5LGPm1o .QLcHcYc-c->span{font-size:8px}._9P4F2knpsl .ant-popover-inner-content{padding:0}._9P4F2knpsl .ant-popover-arrow{border-color:#475365 !important}._9P4F2knpsl .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.VyniNGDaby{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.GPS031NNG4{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.GPS031NNG4 .xN67PtWDv7{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}._9HqokwY9Ja{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.q-HQWwhYAT{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.q-HQWwhYAT{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.CM5WHANBXf{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.TBR-plSC1V html,.TBR-plSC1V body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.TBR-plSC1V body,.TBR-plSC1V div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.TBR-plSC1V textarea{border:none !important;padding-left:0 !important}.TBR-plSC1V table,.TBR-plSC1V tr,.TBR-plSC1V td{page-break-inside:avoid}.TBR-plSC1V div{page-break-inside:avoid}.TBR-plSC1V thead{display:table-header-group}.TBR-plSC1V tfoot{display:table-footer-group}.TBR-plSC1V *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.TBR-plSC1V .holRRWVwDq,.TBR-plSC1V .no-print,.TBR-plSC1V .react-resizable-handle,.TBR-plSC1V .fc-whiteboard-toolbar,.TBR-plSC1V .ant-modal-root,.TBR-plSC1V .ant-alert,.TBR-plSC1V .XLDycjojiF,.TBR-plSC1V .lkJcWZ2UTn{display:none !important}.TBR-plSC1V .JflCkdIoOX{display:none !important}}.ahDJeBsAe8{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.K4Ipp95L\+w{height:44px;line-height:44px;padding-left:16px;padding-bottom:16px;background-color:#fafafa}.rez6mU2ike{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;padding-left:24px;margin-top:12px}.qf3HRlIzZN{padding:12px 24px;height:calc(100% - 48px)}.qf3HRlIzZN .GL9SYu5dIX .qIHNfFvNOY .LoRrFCQyJR{margin-right:12px}.qf3HRlIzZN .GL9SYu5dIX .qIHNfFvNOY ._5RXMJEo0LU{margin-top:12px}.qf3HRlIzZN .GL9SYu5dIX .qIHNfFvNOY ._5RXMJEo0LU .NamTyMCdYQ{width:150px}.qf3HRlIzZN .GL9SYu5dIX .qIHNfFvNOY ._5RXMJEo0LU .O\+QOjkMagR{margin-top:12px;color:rgba(0,0,0,0.65)}.qf3HRlIzZN .GL9SYu5dIX .qIHNfFvNOY ._5RXMJEo0LU .O\+QOjkMagR span{color:rgba(0,0,0,0.5)}.qf3HRlIzZN .GL9SYu5dIX .qIHNfFvNOY .hAh\+8OSHhh{margin-top:24px;border:1px solid #e9e9e9}.qf3HRlIzZN .GL9SYu5dIX .qIHNfFvNOY .hAh\+8OSHhh ._6VVswaxzFb{padding:8px 24px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;color:rgba(0,0,0,0.85);background-color:#f4f5fa}.qf3HRlIzZN .GL9SYu5dIX .qIHNfFvNOY .hAh\+8OSHhh .h3ogpBKS67{padding:12px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:rgba(0,0,0,0.65)}.qf3HRlIzZN .GL9SYu5dIX .qIHNfFvNOY .hAh\+8OSHhh .h3ogpBKS67>div{margin-right:64px}.qf3HRlIzZN .GL9SYu5dIX .UkvHdgN57p{padding-left:16px;margin:8px 0}.qf3HRlIzZN .GL9SYu5dIX .hPGCFLwljD{margin:16px}.qf3HRlIzZN .\+NDu25ZSrh{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-top:16px;padding-bottom:16px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.e9H1kHPCZ4{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.a-endUBnwQ{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.RWaz1QUTFF{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.RWaz1QUTFF>i,.RWaz1QUTFF>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.m2Y6AYAfjV{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.tcvBYQBUky{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.wZ-8Z6JX1l{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}._56\+XEyS\+tH{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.-bXfVy9vX3{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._1hz-B6c9C5{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.JBUeQG6rfH{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.JBUeQG6rfH .Gkn4Fy9OWZ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.JBUeQG6rfH .Gkn4Fy9OWZ>span{color:rgba(0,0,0,0.65)}._6YYwxazLLr{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}._6YYwxazLLr .uwLVV8BZUt{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}._6YYwxazLLr .uwLVV8BZUt>span{font-size:8px}.\+HtxZNTVtk .ant-popover-inner-content{padding:0}.\+HtxZNTVtk .ant-popover-arrow{border-color:#475365 !important}.\+HtxZNTVtk .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.JhibOrFTQM{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}._0FjR4VXGCI{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._0FjR4VXGCI .zSRJew68mR{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.miTa-QXtBl{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.Bsmzj29NxH{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.Bsmzj29NxH{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.BHP7FUvSdO{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.YWco8bBqdz html,.YWco8bBqdz body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.YWco8bBqdz body,.YWco8bBqdz div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.YWco8bBqdz textarea{border:none !important;padding-left:0 !important}.YWco8bBqdz table,.YWco8bBqdz tr,.YWco8bBqdz td{page-break-inside:avoid}.YWco8bBqdz div{page-break-inside:avoid}.YWco8bBqdz thead{display:table-header-group}.YWco8bBqdz tfoot{display:table-footer-group}.YWco8bBqdz *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.YWco8bBqdz .sxouAD5H0z,.YWco8bBqdz .no-print,.YWco8bBqdz .react-resizable-handle,.YWco8bBqdz .fc-whiteboard-toolbar,.YWco8bBqdz .ant-modal-root,.YWco8bBqdz .ant-alert,.YWco8bBqdz .xX97Bd9VpN,.YWco8bBqdz .ZVsnZxnb64{display:none !important}.YWco8bBqdz .WKfTg5w0pi{display:none !important}}.Tg1dg8E3fT{position:relative;padding:0 24px}.Tg1dg8E3fT .bfT508DlSK{color:rgba(0,0,0,0.45)}._7ZYLX-mHUe{margin-top:16px;height:140px;overflow:hidden}._7ZYLX-mHUe .fc-gallery-carousel-thumbnail{margin-right:8px}._7ZYLX-mHUe .fc-gallery-carousel-thumbnail .fc-gallery-carousel-thumbnail-icons svg>g>path:first-child{fill:rgba(0,0,0,0.45) !important}.Aw-pJhk\+ib{margin-top:18px}.Aw-pJhk\+ib .MbNrdX6BTG{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}
.jhhES8gt1v{margin-top:24px}.jhhES8gt1v .miUngY1NOE{padding:8px 24px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;color:rgba(0,0,0,0.85);background-color:#f4f5fa}.jhhES8gt1v ._3U0ZXAtz5e{padding:12px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.jhhES8gt1v .cBmoxivHv8{padding:0 12px;padding-bottom:18px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.jhhES8gt1v .ant-form-item{margin-bottom:0}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.zfBTR5T\+Qv{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.vPavgEXoCu{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.L6goTzZUGp{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.L6goTzZUGp>i,.L6goTzZUGp>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.-Rp6qrmbyO{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.EB9Egf-dAM{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.poGCExrwf1{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.USKl3hNBo4{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.JCjKS0Wfvo{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.\+1YoSUuxXV{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._8myMsjteVk{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}._8myMsjteVk .MKdc2J6U4q{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}._8myMsjteVk .MKdc2J6U4q>span{color:rgba(0,0,0,0.65)}.bqTtzKELbR{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.bqTtzKELbR .YTqWkRbMke{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.bqTtzKELbR .YTqWkRbMke>span{font-size:8px}._4gc0eaplcl .ant-popover-inner-content{padding:0}._4gc0eaplcl .ant-popover-arrow{border-color:#475365 !important}._4gc0eaplcl .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.Q6BgKiwByv{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.QZ2W3mzmvL{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.QZ2W3mzmvL .dhzV-PZspU{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.on-aihrn1I{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}._8Ax3I9gpq3{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{._8Ax3I9gpq3{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.SJ6G\+DcmKy{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{._24im0dvHLF html,._24im0dvHLF body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}._24im0dvHLF body,._24im0dvHLF div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}._24im0dvHLF textarea{border:none !important;padding-left:0 !important}._24im0dvHLF table,._24im0dvHLF tr,._24im0dvHLF td{page-break-inside:avoid}._24im0dvHLF div{page-break-inside:avoid}._24im0dvHLF thead{display:table-header-group}._24im0dvHLF tfoot{display:table-footer-group}._24im0dvHLF *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}._24im0dvHLF .ngaqP8JVOb,._24im0dvHLF .no-print,._24im0dvHLF .react-resizable-handle,._24im0dvHLF .fc-whiteboard-toolbar,._24im0dvHLF .ant-modal-root,._24im0dvHLF .ant-alert,._24im0dvHLF .sYSCNNTBrm,._24im0dvHLF .F8DFWS0DW5{display:none !important}._24im0dvHLF .V5U2KKrprS{display:none !important}}.Qoco0-ZyBb{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;padding:0 16px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.rUHc37-rt1{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.QnUjTY6q1l{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.nU7v-c8BQK{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.nU7v-c8BQK>i,.nU7v-c8BQK>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.XFtGv4WZf1{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.e8le-HgFzt{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.fKHnNm22wa{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.J9DGhTZPhl{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.uD6xCNf9MM{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._4cMSH3Nqko{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._1RI\+MeFU1o{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}._1RI\+MeFU1o .LQYzQ\+vKyB{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}._1RI\+MeFU1o .LQYzQ\+vKyB>span{color:rgba(0,0,0,0.65)}._7Tj6v4rRrZ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}._7Tj6v4rRrZ .KpEkB1OLua{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}._7Tj6v4rRrZ .KpEkB1OLua>span{font-size:8px}.kJoqNej77o .ant-popover-inner-content{padding:0}.kJoqNej77o .ant-popover-arrow{border-color:#475365 !important}.kJoqNej77o .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.Jwvd1v9Blm{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.EXM\+hMZa8O{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.EXM\+hMZa8O .aHZ7-mCA8L{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.LjApGqGYR1{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}._7NCPypJzSD{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{._7NCPypJzSD{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.XhiE0QagwR{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.Tu14jEwXtk html,.Tu14jEwXtk body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.Tu14jEwXtk body,.Tu14jEwXtk div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.Tu14jEwXtk textarea{border:none !important;padding-left:0 !important}.Tu14jEwXtk table,.Tu14jEwXtk tr,.Tu14jEwXtk td{page-break-inside:avoid}.Tu14jEwXtk div{page-break-inside:avoid}.Tu14jEwXtk thead{display:table-header-group}.Tu14jEwXtk tfoot{display:table-footer-group}.Tu14jEwXtk *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.Tu14jEwXtk .hTBAWky3vr,.Tu14jEwXtk .no-print,.Tu14jEwXtk .react-resizable-handle,.Tu14jEwXtk .fc-whiteboard-toolbar,.Tu14jEwXtk .ant-modal-root,.Tu14jEwXtk .ant-alert,.Tu14jEwXtk .rq1IIsCx9H,.Tu14jEwXtk .VC\+s71XD-Z{display:none !important}.Tu14jEwXtk .QPqgEoWoR3{display:none !important}}.VE9qXa-F01{width:100%}.YWCD8zfObx{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:0 8px;width:100%;max-width:400px;overflow-x:auto;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.YWCD8zfObx .vInr7fc8VW{height:20px;width:30px;background-color:#44d7b6;margin-right:8px;border-radius:4px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.PI8h7s7fOr{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.xHEaOCch\+f{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.adXmlz07mI{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.adXmlz07mI>i,.adXmlz07mI>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.UTKICJQQXt{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.YQ1\+CFeFB3{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}._4Yb0sohXJq{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.PKHNskU7yh{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.TOmSEQNwlF{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.aViEgUcy\+i{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.JsRs0U9Mhm{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.JsRs0U9Mhm .\+UQLVhTokU{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.JsRs0U9Mhm .\+UQLVhTokU>span{color:rgba(0,0,0,0.65)}.XoF\+R68lmF{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.XoF\+R68lmF .qD9i6zIQ2X{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.XoF\+R68lmF .qD9i6zIQ2X>span{font-size:8px}.NnPJ6IPVy9 .ant-popover-inner-content{padding:0}.NnPJ6IPVy9 .ant-popover-arrow{border-color:#475365 !important}.NnPJ6IPVy9 .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.WO-\+SFuP8D{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.lNBzQnrXj7{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.lNBzQnrXj7 .Q4nwd4GHDi{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.\-9xVxnYYiK{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.lWnDd1y-Il{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.lWnDd1y-Il{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.BtRRhZPeGN{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{._7OpjprwGw5 html,._7OpjprwGw5 body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}._7OpjprwGw5 body,._7OpjprwGw5 div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}._7OpjprwGw5 textarea{border:none !important;padding-left:0 !important}._7OpjprwGw5 table,._7OpjprwGw5 tr,._7OpjprwGw5 td{page-break-inside:avoid}._7OpjprwGw5 div{page-break-inside:avoid}._7OpjprwGw5 thead{display:table-header-group}._7OpjprwGw5 tfoot{display:table-footer-group}._7OpjprwGw5 *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}._7OpjprwGw5 .Ez5q6FUDO7,._7OpjprwGw5 .no-print,._7OpjprwGw5 .react-resizable-handle,._7OpjprwGw5 .fc-whiteboard-toolbar,._7OpjprwGw5 .ant-modal-root,._7OpjprwGw5 .ant-alert,._7OpjprwGw5 ._8vsttraluf,._7OpjprwGw5 .ZDr5Be7olq{display:none !important}._7OpjprwGw5 ._02QuYE7lom{display:none !important}}.qm11L9Bn9G{position:relative;width:100px;height:130px}.p9XaEzEJhC{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:20px;margin-bottom:16px}.fAs8g6qMEG{position:absolute;right:5px;top:5px;color:red;cursor:pointer}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.Gy9-1Bw029{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.c4k2F4xp1c{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.ZWoC8K-sUT{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.ZWoC8K-sUT>i,.ZWoC8K-sUT>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.gd4Aot-RVm{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.\+G3JvPDPrX{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.u\+GgRF1TvI{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.ikJPVUQfYf{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.\+D8I4kygct{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.ozWB4gEaQ0{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.FLDZ4GWRMg{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.FLDZ4GWRMg .bSMfavvSBM{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.FLDZ4GWRMg .bSMfavvSBM>span{color:rgba(0,0,0,0.65)}.c4EQgN9Wmb{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.c4EQgN9Wmb .l4gTunDqzG{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.c4EQgN9Wmb .l4gTunDqzG>span{font-size:8px}.B6\+Q9NAJM6 .ant-popover-inner-content{padding:0}.B6\+Q9NAJM6 .ant-popover-arrow{border-color:#475365 !important}.B6\+Q9NAJM6 .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.oJzJ0JcqSp{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.oIl3blkPOb{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.oIl3blkPOb ._2rD6mk2uPn{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.lNgnqbdILx{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}._5j8O0Lrj5y{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{._5j8O0Lrj5y{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.TtXqiuDUcq{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.a\+cy2re6qc html,.a\+cy2re6qc body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.a\+cy2re6qc body,.a\+cy2re6qc div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.a\+cy2re6qc textarea{border:none !important;padding-left:0 !important}.a\+cy2re6qc table,.a\+cy2re6qc tr,.a\+cy2re6qc td{page-break-inside:avoid}.a\+cy2re6qc div{page-break-inside:avoid}.a\+cy2re6qc thead{display:table-header-group}.a\+cy2re6qc tfoot{display:table-footer-group}.a\+cy2re6qc *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.a\+cy2re6qc ._4IC8AQ\+HUU,.a\+cy2re6qc .no-print,.a\+cy2re6qc .react-resizable-handle,.a\+cy2re6qc .fc-whiteboard-toolbar,.a\+cy2re6qc .ant-modal-root,.a\+cy2re6qc .ant-alert,.a\+cy2re6qc .owExh\+H-\+R,.a\+cy2re6qc .aUOdZWq-ft{display:none !important}.a\+cy2re6qc .IkRz1GXB8G{display:none !important}}.XDTZTEqqL1{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.K-OTlS0N8Q{height:calc(100% - 45px);padding:16px 24px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;overflow:auto}.K-OTlS0N8Q .g6aVMhdTBB{font-size:20px;line-height:50px;height:50px;margin:8px 0}.K-OTlS0N8Q .jUtOVEIUfS{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-bottom:16px}.K-OTlS0N8Q .jUtOVEIUfS>div{margin-right:16px}.K-OTlS0N8Q .Mi22oh16XE{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:100%;height:50px;line-height:50px}
.fc-gallery-carousel{-webkit-tap-highlight-color:rgba(0,0,0,0)}.fc-gallery-carousel.fullscreen-modal{background:#000;bottom:0;height:100%;left:0;position:fixed;right:0;top:0;width:100%;z-index:5}.fc-gallery-carousel.fullscreen-modal .fc-gallery-carousel-content{top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.fc-gallery-carousel-content{height:100%;position:relative;line-height:0;top:0}.fc-gallery-carousel-content.fullscreen{background:#000}.fc-gallery-carousel-content.fullscreen .fc-gallery-carousel-slide{background:#000}.fc-gallery-carousel-slide-wrapper{position:relative}.fc-gallery-carousel-slide-wrapper.left,.fc-gallery-carousel-slide-wrapper.right{display:inline-block;width:calc(100% - 113px)}@media (max-width:768px){.fc-gallery-carousel-slide-wrapper.left,.fc-gallery-carousel-slide-wrapper.right{width:calc(100% - 84px)}}.fc-gallery-carousel-slide-wrapper.fc-gallery-carousel-rtl{direction:rtl}.fc-gallery-carousel-fullscreen-button,.fc-gallery-carousel-play-button,.fc-gallery-carousel-left-nav,.fc-gallery-carousel-right-nav{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;border:0;cursor:pointer;outline:none;position:absolute;z-index:4}.fc-gallery-carousel-fullscreen-button,.fc-gallery-carousel-play-button{bottom:0}.fc-gallery-carousel-fullscreen-button{right:0}.fc-gallery-carousel-play-button{left:0}.fc-gallery-carousel-left-nav,.fc-gallery-carousel-right-nav{color:#fff;font-size:5em;padding:50px 15px;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.fc-gallery-carousel-left-nav[disabled],.fc-gallery-carousel-right-nav[disabled]{cursor:disabled;opacity:.6;pointer-events:none}@media (max-width:768px){.fc-gallery-carousel-left-nav,.fc-gallery-carousel-right-nav{font-size:3.4em;padding:20px 15px}}@media (max-width:480px){.fc-gallery-carousel-left-nav,.fc-gallery-carousel-right-nav{font-size:2.4em;padding:0 15px}}.fc-gallery-carousel-left-nav{left:0}.fc-gallery-carousel-right-nav{right:0}.fc-gallery-carousel-slides{line-height:0;overflow:hidden;position:relative;white-space:nowrap}.fc-gallery-carousel-slide{background:#fff;left:0;position:absolute;top:0;width:100%}.fc-gallery-carousel-slide.center{position:relative}.fc-gallery-carousel-slide img{width:100%}.fc-gallery-carousel-slide .fc-gallery-carousel-description{background:rgba(0,0,0,0.4);bottom:70px;color:#fff;left:0;line-height:1;padding:10px 20px;position:absolute;white-space:normal}@media (max-width:768px){.fc-gallery-carousel-slide .fc-gallery-carousel-description{bottom:45px;font-size:.8em;padding:8px 15px}}.fc-gallery-carousel-bullets{bottom:20px;left:0;margin:0 auto;position:absolute;right:0;width:80%;z-index:4}.fc-gallery-carousel-bullets .fc-gallery-carousel-bullets-container{margin:0;padding:0;text-align:center}.fc-gallery-carousel-bullets .fc-gallery-carousel-bullet{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;border:1px solid #fff;border-radius:50%;-webkit-box-shadow:0 1px 0 #1a1a1a;box-shadow:0 1px 0 #1a1a1a;cursor:pointer;display:inline-block;margin:0 5px;outline:none;padding:5px}@media (max-width:768px){.fc-gallery-carousel-bullets .fc-gallery-carousel-bullet{margin:0 3px;padding:3px}}@media (max-width:480px){.fc-gallery-carousel-bullets .fc-gallery-carousel-bullet{padding:2.7px}}.fc-gallery-carousel-bullets .fc-gallery-carousel-bullet.active{background:#fff}.fc-gallery-carousel-thumbnails-wrapper{position:relative;height:100%}.fc-gallery-carousel-thumbnails-wrapper.thumbnails-wrapper-rtl{direction:rtl}.fc-gallery-carousel-thumbnails-wrapper.left,.fc-gallery-carousel-thumbnails-wrapper.right{display:inline-block;vertical-align:top;width:108px}@media (max-width:768px){.fc-gallery-carousel-thumbnails-wrapper.left,.fc-gallery-carousel-thumbnails-wrapper.right{width:81px}}.fc-gallery-carousel-thumbnails-wrapper.left .fc-gallery-carousel-thumbnails,.fc-gallery-carousel-thumbnails-wrapper.right .fc-gallery-carousel-thumbnails{height:100%;width:100%;left:0;padding:0;position:absolute;top:0;-webkit-box-sizing:border-box;box-sizing:border-box}.fc-gallery-carousel-thumbnails-wrapper.left .fc-gallery-carousel-thumbnails .fc-gallery-carousel-thumbnail,.fc-gallery-carousel-thumbnails-wrapper.right .fc-gallery-carousel-thumbnails .fc-gallery-carousel-thumbnail{display:block;margin-right:0;padding:0}.fc-gallery-carousel-thumbnails-wrapper.left .fc-gallery-carousel-thumbnails .fc-gallery-carousel-thumbnail+.fc-gallery-carousel-thumbnail,.fc-gallery-carousel-thumbnails-wrapper.right .fc-gallery-carousel-thumbnails .fc-gallery-carousel-thumbnail+.fc-gallery-carousel-thumbnail{margin-left:0}.fc-gallery-carousel-thumbnails-wrapper.left{margin-right:5px}@media (max-width:768px){.fc-gallery-carousel-thumbnails-wrapper.left{margin-right:3px}}.fc-gallery-carousel-thumbnails-wrapper.right{margin-left:5px}@media (max-width:768px){.fc-gallery-carousel-thumbnails-wrapper.right{margin-left:3px}}.fc-gallery-carousel-thumbnails{overflow:hidden}@media (max-width:768px){.fc-gallery-carousel-thumbnails{padding:3px 0}}.fc-gallery-carousel-thumbnails-container{cursor:pointer;text-align:center;-webkit-transition:-webkit-transform .45s ease-out;transition:-webkit-transform .45s ease-out;transition:transform .45s ease-out;transition:transform .45s ease-out, -webkit-transform .45s ease-out;white-space:nowrap;height:100%;display:-webkit-box;display:-ms-flexbox;display:flex}.fc-gallery-carousel-thumbnail{display:inline-block;border:4px solid transparent;-webkit-transition:border .3s ease-out;transition:border .3s ease-out;width:200px;-webkit-box-sizing:border-box;box-sizing:border-box}.fc-gallery-carousel-thumbnail-icons{position:absolute;right:5px;top:5px}.fc-gallery-carousel-thumbnail-inner:hover .fc-gallery-carousel-thumbnail-icons{display:block}@media (max-width:768px){.fc-gallery-carousel-thumbnail{border:3px solid transparent;width:75px}}.fc-gallery-carousel-thumbnail+.fc-gallery-carousel-thumbnail{margin-left:2px}.fc-gallery-carousel-thumbnail .fc-gallery-carousel-thumbnail-inner{position:relative;height:100%;width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.fc-gallery-carousel-thumbnail img{vertical-align:middle;max-width:100%;max-height:100%}.fc-gallery-carousel-thumbnail.active{border:4px solid #337ab7}@media (max-width:768px){.fc-gallery-carousel-thumbnail.active{border:3px solid #337ab7}}.fc-gallery-carousel-thumbnail-label{-webkit-box-sizing:border-box;box-sizing:border-box;color:white;font-size:1em;left:0;line-height:1em;padding:5%;position:absolute;top:50%;text-shadow:1px 1px 0 black;-webkit-transform:translateY(-50%);transform:translateY(-50%);white-space:normal;width:100%}@media (max-width:768px){.fc-gallery-carousel-thumbnail-label{font-size:.8em;line-height:.8em}}.fc-gallery-carousel-index{background:rgba(0,0,0,0.4);color:#fff;line-height:1;padding:10px 20px;position:absolute;right:0;top:0;z-index:4}@media (max-width:768px){.fc-gallery-carousel-index{font-size:.8em;padding:5px 10px}}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.hoCTc\+TJ2a{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}._0YasEhucI9{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.pMU1LHxPrD{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.pMU1LHxPrD>i,.pMU1LHxPrD>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.iXVC4xIk2N{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._0cMLXjKHSr{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.EMfEJQmj1M{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}._2eSjLPhz7M{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.\+VhylrBXQa{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.JYMrYW7L65{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.a79wDzYOCn{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.a79wDzYOCn .a2rLqB2VFW{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.a79wDzYOCn .a2rLqB2VFW>span{color:rgba(0,0,0,0.65)}.WzhYDMZCSU{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.WzhYDMZCSU .-V1\+Xex8fP{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.WzhYDMZCSU .-V1\+Xex8fP>span{font-size:8px}.VWB5\+gXc-M .ant-popover-inner-content{padding:0}.VWB5\+gXc-M .ant-popover-arrow{border-color:#475365 !important}.VWB5\+gXc-M .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.e4iGc1afS4{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}._0WUK1mn5A\+{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._0WUK1mn5A\+ .sKU1LB\+SZ8{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.WiAhbbsG\+z{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.\+votDa\+Ox\+{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.\+votDa\+Ox\+{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}._5cSydJMF3W{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.qHb2b0HB4T html,.qHb2b0HB4T body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.qHb2b0HB4T body,.qHb2b0HB4T div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.qHb2b0HB4T textarea{border:none !important;padding-left:0 !important}.qHb2b0HB4T table,.qHb2b0HB4T tr,.qHb2b0HB4T td{page-break-inside:avoid}.qHb2b0HB4T div{page-break-inside:avoid}.qHb2b0HB4T thead{display:table-header-group}.qHb2b0HB4T tfoot{display:table-footer-group}.qHb2b0HB4T *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.qHb2b0HB4T .PTHf3ffA4j,.qHb2b0HB4T .no-print,.qHb2b0HB4T .react-resizable-handle,.qHb2b0HB4T .fc-whiteboard-toolbar,.qHb2b0HB4T .ant-modal-root,.qHb2b0HB4T .ant-alert,.qHb2b0HB4T .VGshKc6-QZ,.qHb2b0HB4T ._475Dq1wLNO{display:none !important}.qHb2b0HB4T .gEDsk7HDfJ{display:none !important}}.Vjnymoea-U{position:relative;-webkit-box-flex:1;-ms-flex:1 1 1px;flex:1 1 1px;font-size:14px}.Vjnymoea-U>div{margin:8px 0}.Vjnymoea-U .EVsHAVGmI9{width:250px;height:40px;line-height:40px;display:inline-block}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.LWUSvHyJrm{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.tCOuynwlQT{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.dFBiBWnqrP{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.dFBiBWnqrP>i,.dFBiBWnqrP>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.wrcnj23Wrx{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.Q\+3T01sqPr{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.KE3bqheUFy{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.IOcFZj52ou{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.G2wQN1rVRf{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._38j\+cOBs4N{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.FWvdmj6vb4{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.FWvdmj6vb4 .G42bGnZva6{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.FWvdmj6vb4 .G42bGnZva6>span{color:rgba(0,0,0,0.65)}.eoWxkhxAb4{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.eoWxkhxAb4 ._7qbygU1GvW{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.eoWxkhxAb4 ._7qbygU1GvW>span{font-size:8px}.DJ0\+uIMJX1 .ant-popover-inner-content{padding:0}.DJ0\+uIMJX1 .ant-popover-arrow{border-color:#475365 !important}.DJ0\+uIMJX1 .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.tYfvqBTDEo{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.XLvT0tl5Hp{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.XLvT0tl5Hp .Eo4XQA-Z80{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.xv1RR02cSj{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.vp9awUrKIU{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.vp9awUrKIU{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.eEx47Pm3nO{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.Jh2xiebrOI html,.Jh2xiebrOI body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.Jh2xiebrOI body,.Jh2xiebrOI div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.Jh2xiebrOI textarea{border:none !important;padding-left:0 !important}.Jh2xiebrOI table,.Jh2xiebrOI tr,.Jh2xiebrOI td{page-break-inside:avoid}.Jh2xiebrOI div{page-break-inside:avoid}.Jh2xiebrOI thead{display:table-header-group}.Jh2xiebrOI tfoot{display:table-footer-group}.Jh2xiebrOI *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.Jh2xiebrOI .VepbfRelNS,.Jh2xiebrOI .no-print,.Jh2xiebrOI .react-resizable-handle,.Jh2xiebrOI .fc-whiteboard-toolbar,.Jh2xiebrOI .ant-modal-root,.Jh2xiebrOI .ant-alert,.Jh2xiebrOI .nlQhkLLash,.Jh2xiebrOI .AIiHK0NSUQ{display:none !important}.Jh2xiebrOI .MfGd0bsXv4{display:none !important}}._4x\+T4T8ycx{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}._9iOHmwUMaE{padding:16px}._9iOHmwUMaE .J6ZYd6z9vK{margin:16px 0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.JD7ZEV1Fuj{color:rgba(0,0,0,0.45)}.JD7ZEV1Fuj>div{margin-bottom:4px}.zOEcc1tMCM{height:60px;width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.Cdux-PwWP\+{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:0 8px;width:100%;max-width:400px;overflow-x:auto;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.Cdux-PwWP\+ .T67waMMoSh{height:20px;width:30px;background-color:#44d7b6;margin-right:8px;border-radius:4px}.D8nRAJ3m15{height:20px;width:30px;border-radius:4px;background-color:#6190e8}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.pHIjNlgnp\+{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.HJN5aqqPY\+{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.RXV3f2AM\+1{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.RXV3f2AM\+1>i,.RXV3f2AM\+1>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.KUvd\+ugHh9{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.sBOqawFwXR{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.NOLgzMlrPp{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.mt2-twTfN-{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.bbn37kcaOi{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.G9bn1hWZi7{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._1HFUA4LMxL{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}._1HFUA4LMxL .k13C3h15Xx{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}._1HFUA4LMxL .k13C3h15Xx>span{color:rgba(0,0,0,0.65)}.vcccnHM3mV{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.vcccnHM3mV .Uc6VQAxSLz{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.vcccnHM3mV .Uc6VQAxSLz>span{font-size:8px}.V1gFEBpHYw .ant-popover-inner-content{padding:0}.V1gFEBpHYw .ant-popover-arrow{border-color:#475365 !important}.V1gFEBpHYw .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.dddWT4s\+sI{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.WsLp1dtdgA{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.WsLp1dtdgA .vd1Ele5UJp{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.pbziCKDDlh{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.yGrzLIvW-f{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.yGrzLIvW-f{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.wQ2tSzjzOU{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.bk97DUhUEi html,.bk97DUhUEi body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.bk97DUhUEi body,.bk97DUhUEi div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.bk97DUhUEi textarea{border:none !important;padding-left:0 !important}.bk97DUhUEi table,.bk97DUhUEi tr,.bk97DUhUEi td{page-break-inside:avoid}.bk97DUhUEi div{page-break-inside:avoid}.bk97DUhUEi thead{display:table-header-group}.bk97DUhUEi tfoot{display:table-footer-group}.bk97DUhUEi *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.bk97DUhUEi .JTfm8MZWMm,.bk97DUhUEi .no-print,.bk97DUhUEi .react-resizable-handle,.bk97DUhUEi .fc-whiteboard-toolbar,.bk97DUhUEi .ant-modal-root,.bk97DUhUEi .ant-alert,.bk97DUhUEi .ocp80oBGRa,.bk97DUhUEi .i99Es4BKHo{display:none !important}.bk97DUhUEi .cQOhv7FzBy{display:none !important}}.ZntsyFIoSp{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;padding:24px}.ZntsyFIoSp .PFAVVB5XQV{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-top:16px}.ZntsyFIoSp .Q2RBflsNxb{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;margin-top:16px}.ZntsyFIoSp .NOLgzMlrPp{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.FGWcPF6xjt{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.MLDG\+wFv3C{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.PS\+aF9BTAh{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.PS\+aF9BTAh>i,.PS\+aF9BTAh>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.k41pjbCibg{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.toyLa\+7nwa{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.EukctGbhsS{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.KaZHgKitp5{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.qsEZK2Gwrc{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.IpPQ7cOLOc{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._1k909D0WTM{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}._1k909D0WTM .dd8F8\+AOEk{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}._1k909D0WTM .dd8F8\+AOEk>span{color:rgba(0,0,0,0.65)}.e5JUdpeCWW{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.e5JUdpeCWW ._77MJ\+3ZRrx{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.e5JUdpeCWW ._77MJ\+3ZRrx>span{font-size:8px}.Z3QXbIK-zc .ant-popover-inner-content{padding:0}.Z3QXbIK-zc .ant-popover-arrow{border-color:#475365 !important}.Z3QXbIK-zc .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.xKLFPmbyce{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}._2wNJEASGR1{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._2wNJEASGR1 .qAZ-zfBA-Q{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.grbNNcSlHZ{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}._7tA9279Jvy{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{._7tA9279Jvy{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.tiplxwj6Yc{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.bXCKN01UAs html,.bXCKN01UAs body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.bXCKN01UAs body,.bXCKN01UAs div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.bXCKN01UAs textarea{border:none !important;padding-left:0 !important}.bXCKN01UAs table,.bXCKN01UAs tr,.bXCKN01UAs td{page-break-inside:avoid}.bXCKN01UAs div{page-break-inside:avoid}.bXCKN01UAs thead{display:table-header-group}.bXCKN01UAs tfoot{display:table-footer-group}.bXCKN01UAs *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.bXCKN01UAs .U9VXwVyPYT,.bXCKN01UAs .no-print,.bXCKN01UAs .react-resizable-handle,.bXCKN01UAs .fc-whiteboard-toolbar,.bXCKN01UAs .ant-modal-root,.bXCKN01UAs .ant-alert,.bXCKN01UAs .LwkOcAMBYl,.bXCKN01UAs .XT5hA8fIcV{display:none !important}.bXCKN01UAs .fxwh\+Uf28H{display:none !important}}.QaPnFiflfK{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.QaPnFiflfK .tG0n0h1k3x{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.QaPnFiflfK .qnbMF-sSfu{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;margin-top:16px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.Eoj-W5MzJA{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.hvyk44wSzQ{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.VcFF2GbOuV{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.VcFF2GbOuV>i,.VcFF2GbOuV>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.RPqojHrEEd{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.Hv16yi8pSf{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.n63axG59H5{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.YcaJXUqfqD{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}._6XHYpGOjIh{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.WtM\+dD1Zcc{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._7xHgLdqBcS{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}._7xHgLdqBcS .mYLtCzEMbt{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}._7xHgLdqBcS .mYLtCzEMbt>span{color:rgba(0,0,0,0.65)}.z4l-rUopoe{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.z4l-rUopoe .pxUz-\+YFJV{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.z4l-rUopoe .pxUz-\+YFJV>span{font-size:8px}.VIXheOudYd .ant-popover-inner-content{padding:0}.VIXheOudYd .ant-popover-arrow{border-color:#475365 !important}.VIXheOudYd .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.kPKdKSvK6W{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.HT-ZFZ\+qBI{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.HT-ZFZ\+qBI .SI2PKmOHvd{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.LLKkZNz4DB{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.L7XYM8HCIl{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.L7XYM8HCIl{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}._0I6s0mtjuK{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{._7JuFSGjCEs html,._7JuFSGjCEs body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}._7JuFSGjCEs body,._7JuFSGjCEs div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}._7JuFSGjCEs textarea{border:none !important;padding-left:0 !important}._7JuFSGjCEs table,._7JuFSGjCEs tr,._7JuFSGjCEs td{page-break-inside:avoid}._7JuFSGjCEs div{page-break-inside:avoid}._7JuFSGjCEs thead{display:table-header-group}._7JuFSGjCEs tfoot{display:table-footer-group}._7JuFSGjCEs *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}._7JuFSGjCEs .\-5nKit0Kiu,._7JuFSGjCEs .no-print,._7JuFSGjCEs .react-resizable-handle,._7JuFSGjCEs .fc-whiteboard-toolbar,._7JuFSGjCEs .ant-modal-root,._7JuFSGjCEs .ant-alert,._7JuFSGjCEs .DCm4IEpfjG,._7JuFSGjCEs ._8buqtZYFGy{display:none !important}._7JuFSGjCEs ._0R7QQ6-Ke9{display:none !important}}._6FqO\+t3PAh{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;padding:24px}._6FqO\+t3PAh .MDmZKW8ijj{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-top:16px}._6FqO\+t3PAh .V7QN77jksH{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;margin-top:16px}._6FqO\+t3PAh .n63axG59H5{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.tZWeoYChg8{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.u4gmPsG7Ef{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}._4vkU2r4zjs{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}._4vkU2r4zjs>i,._4vkU2r4zjs>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.d4qnTxMkSZ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.nx8yKpxqF-{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.TRKemzY8Rl{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.VycbtASgLm{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.lzFFxFYUgs{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.UmNveaYWvI{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.SSGS-HX81e{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.SSGS-HX81e .VZE-J7T1sq{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.SSGS-HX81e .VZE-J7T1sq>span{color:rgba(0,0,0,0.65)}.N-opQz76jE{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.N-opQz76jE ._33UbZ4W60z{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.N-opQz76jE ._33UbZ4W60z>span{font-size:8px}.jtNHwBqh7Y .ant-popover-inner-content{padding:0}.jtNHwBqh7Y .ant-popover-arrow{border-color:#475365 !important}.jtNHwBqh7Y .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.JlrWjVcRBP{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.OJP0sC\+0wn{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.OJP0sC\+0wn .x3gtRk3hkR{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.jBcl2FH\+Bk{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.VU-tn2zl7\+{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.VU-tn2zl7\+{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.UzsivR0Xjf{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.Fk44gnILOJ html,.Fk44gnILOJ body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.Fk44gnILOJ body,.Fk44gnILOJ div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.Fk44gnILOJ textarea{border:none !important;padding-left:0 !important}.Fk44gnILOJ table,.Fk44gnILOJ tr,.Fk44gnILOJ td{page-break-inside:avoid}.Fk44gnILOJ div{page-break-inside:avoid}.Fk44gnILOJ thead{display:table-header-group}.Fk44gnILOJ tfoot{display:table-footer-group}.Fk44gnILOJ *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.Fk44gnILOJ .OuyV-HUjr5,.Fk44gnILOJ .no-print,.Fk44gnILOJ .react-resizable-handle,.Fk44gnILOJ .fc-whiteboard-toolbar,.Fk44gnILOJ .ant-modal-root,.Fk44gnILOJ .ant-alert,.Fk44gnILOJ .OpvowAXQtC,.Fk44gnILOJ .QxOxG41\+CE{display:none !important}.Fk44gnILOJ .PQcVpUNeGb{display:none !important}}.Zza7ByYdMb{position:inherit}.xo-Yr4ncc5{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}._5S8MOueL5N{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.vk1ydDjZ-h{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.oCihhYENzP{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.oCihhYENzP>i,.oCihhYENzP>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.q170wEzT3Y{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.wJub0zIUZE{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.zdrjLuEZVY{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.PWBPFU-8WP{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.H8BgiJOLEL{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.A6LavKTUoR{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.yqbOeZ5Grx{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.yqbOeZ5Grx .KUFLfOrPD3{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.yqbOeZ5Grx .KUFLfOrPD3>span{color:rgba(0,0,0,0.65)}.Ekq3XyFbzV{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.Ekq3XyFbzV .QKrGkwC63O{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.Ekq3XyFbzV .QKrGkwC63O>span{font-size:8px}.p54707aJd6 .ant-popover-inner-content{padding:0}.p54707aJd6 .ant-popover-arrow{border-color:#475365 !important}.p54707aJd6 .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}._9rJl2nYxyx{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}._1QWjZLpiiJ{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}._1QWjZLpiiJ .\+PtZK7AfmL{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.Mmdnk5Fe9p{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.yotI640imP{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.yotI640imP{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}._4gH7c4snv6{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.ekCjzCQM32 html,.ekCjzCQM32 body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.ekCjzCQM32 body,.ekCjzCQM32 div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.ekCjzCQM32 textarea{border:none !important;padding-left:0 !important}.ekCjzCQM32 table,.ekCjzCQM32 tr,.ekCjzCQM32 td{page-break-inside:avoid}.ekCjzCQM32 div{page-break-inside:avoid}.ekCjzCQM32 thead{display:table-header-group}.ekCjzCQM32 tfoot{display:table-footer-group}.ekCjzCQM32 *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.ekCjzCQM32 ._35iCvbF\+lO,.ekCjzCQM32 .no-print,.ekCjzCQM32 .react-resizable-handle,.ekCjzCQM32 .fc-whiteboard-toolbar,.ekCjzCQM32 .ant-modal-root,.ekCjzCQM32 .ant-alert,.ekCjzCQM32 .U6IS5Y48jS,.ekCjzCQM32 .rNd7XSTfEE{display:none !important}.ekCjzCQM32 .jvhJDFH3iL{display:none !important}}.KlIOonpCZm{padding:16px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.rEH8n5GKy4{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.vGs9QYvgut{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.zMJnLfwCAk{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.zMJnLfwCAk>i,.zMJnLfwCAk>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.tzbSHEy6MP{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.H2o6ofsmJi{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.m5BjnuBWLY{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.HIm4UTXTQb{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.WKpYhZ7uJz{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.BRUn36-3df{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.qdQwC-HOFt{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.qdQwC-HOFt .NCgT9CtGkY{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.qdQwC-HOFt .NCgT9CtGkY>span{color:rgba(0,0,0,0.65)}._1x41P\+n9fT{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}._1x41P\+n9fT .zAVHGsHceg{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}._1x41P\+n9fT .zAVHGsHceg>span{font-size:8px}.LhVv9Nw6Gk .ant-popover-inner-content{padding:0}.LhVv9Nw6Gk .ant-popover-arrow{border-color:#475365 !important}.LhVv9Nw6Gk .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.DB-NrLxqXa{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.ntEDLFW3fa{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.ntEDLFW3fa ._1FfYpbv41i{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.yme6LzebNw{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.vPTs7znxs7{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.vPTs7znxs7{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}._4b8vMmRSKD{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.DME8527XoY html,.DME8527XoY body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.DME8527XoY body,.DME8527XoY div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.DME8527XoY textarea{border:none !important;padding-left:0 !important}.DME8527XoY table,.DME8527XoY tr,.DME8527XoY td{page-break-inside:avoid}.DME8527XoY div{page-break-inside:avoid}.DME8527XoY thead{display:table-header-group}.DME8527XoY tfoot{display:table-footer-group}.DME8527XoY *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.DME8527XoY .Q\+p0nIELS9,.DME8527XoY .no-print,.DME8527XoY .react-resizable-handle,.DME8527XoY .fc-whiteboard-toolbar,.DME8527XoY .ant-modal-root,.DME8527XoY .ant-alert,.DME8527XoY .X8GvWMsvNq,.DME8527XoY .\+BIHjGAgTH{display:none !important}.DME8527XoY .jq2XuSfTfc{display:none !important}}.wwZSjIBCjW{padding:16px}
.aAA8iY8tAh{position:relative;padding-top:16px;padding-left:5%}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.RXbZSbgbMf{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.-JFC2Llc\+2{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.IIqkVTe09Z{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.IIqkVTe09Z>i,.IIqkVTe09Z>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.gGMURmQjUh{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.LPWqHQGc\+8{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.uglo7Y2XsQ{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.aL6RVAMY5a{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}._9P6nZMoqAX{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._6HMjTRWuwt{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.IyXuT76W4M{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.IyXuT76W4M .JRE4mo5qUq{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.IyXuT76W4M .JRE4mo5qUq>span{color:rgba(0,0,0,0.65)}._1fXSqphhIM{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}._1fXSqphhIM .ANznloFh4G{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}._1fXSqphhIM .ANznloFh4G>span{font-size:8px}.t0S1tbQBb3 .ant-popover-inner-content{padding:0}.t0S1tbQBb3 .ant-popover-arrow{border-color:#475365 !important}.t0S1tbQBb3 .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.h462JjF0P\+{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.QoYoZbVaoo{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.QoYoZbVaoo .fDY6yTJaUO{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.rzH6pHln30{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}._30pQcxSO\+5{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{._30pQcxSO\+5{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.e8mjiHFYX5{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.-DdZZeBtWZ html,.-DdZZeBtWZ body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.-DdZZeBtWZ body,.-DdZZeBtWZ div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.-DdZZeBtWZ textarea{border:none !important;padding-left:0 !important}.-DdZZeBtWZ table,.-DdZZeBtWZ tr,.-DdZZeBtWZ td{page-break-inside:avoid}.-DdZZeBtWZ div{page-break-inside:avoid}.-DdZZeBtWZ thead{display:table-header-group}.-DdZZeBtWZ tfoot{display:table-footer-group}.-DdZZeBtWZ *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.-DdZZeBtWZ .pLE\+Eu9PV\+,.-DdZZeBtWZ .no-print,.-DdZZeBtWZ .react-resizable-handle,.-DdZZeBtWZ .fc-whiteboard-toolbar,.-DdZZeBtWZ .ant-modal-root,.-DdZZeBtWZ .ant-alert,.-DdZZeBtWZ ._8cgFrCGFsy,.-DdZZeBtWZ .ExL-i7K-Np{display:none !important}.-DdZZeBtWZ .IdJBc7AWdl{display:none !important}}.Yvlh\+rMLFc{position:inherit}.vzFlB5AQh0{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;height:400px;margin-top:16px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.upSEUjQbDH{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.UVBOHKqf-F{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.pJVjfjPg52{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.pJVjfjPg52>i,.pJVjfjPg52>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.\+6Z3o1oiMz{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.WGnkYtJmL0{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.c51OhH\+m6x{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.LNfiGVCxOO{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.ovYM45x-QT{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._2qy5WwhIXS{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.R3ANPy\+AKp{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.R3ANPy\+AKp .Lw8hrmokiK{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.R3ANPy\+AKp .Lw8hrmokiK>span{color:rgba(0,0,0,0.65)}.TE\+CalLSxM{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.TE\+CalLSxM .-KnhQa1RmY{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.TE\+CalLSxM .-KnhQa1RmY>span{font-size:8px}.eqKrKdgK9d .ant-popover-inner-content{padding:0}.eqKrKdgK9d .ant-popover-arrow{border-color:#475365 !important}.eqKrKdgK9d .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.OOqUpJ4hfb{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.HCbzOSQQ0c{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.HCbzOSQQ0c .sntd6Dj6Aw{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}.Eyr-giJn0d{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.MHs1ekGCBv{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.MHs1ekGCBv{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.Gt62SLsPM3{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{._0yXPgbR1uj html,._0yXPgbR1uj body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}._0yXPgbR1uj body,._0yXPgbR1uj div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}._0yXPgbR1uj textarea{border:none !important;padding-left:0 !important}._0yXPgbR1uj table,._0yXPgbR1uj tr,._0yXPgbR1uj td{page-break-inside:avoid}._0yXPgbR1uj div{page-break-inside:avoid}._0yXPgbR1uj thead{display:table-header-group}._0yXPgbR1uj tfoot{display:table-footer-group}._0yXPgbR1uj *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}._0yXPgbR1uj ._9e2QD252Aw,._0yXPgbR1uj .no-print,._0yXPgbR1uj .react-resizable-handle,._0yXPgbR1uj .fc-whiteboard-toolbar,._0yXPgbR1uj .ant-modal-root,._0yXPgbR1uj .ant-alert,._0yXPgbR1uj .uI9aAI72ak,._0yXPgbR1uj .Q7jnUYHhx-{display:none !important}._0yXPgbR1uj .l8KATIgApq{display:none !important}}.cFFGlft5y0{max-height:100%}._2Ap7OQEoCC{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative;height:400px;margin:24px 0}.JbLlVtgdkZ .ant-card-body{height:180px;padding:16px}.JbLlVtgdkZ .hDxk6goKk8{margin-bottom:8px;font-size:14px;color:rgba(0,0,0,0.45);line-height:22px}.ULCVhszkwb{margin-top:16px}
.react-dat-gui{position:fixed;right:16px;top:0;width:280px;font-size:12px;font-family:Lucida Grande,sans-serif;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}.react-dat-gui *,.react-dat-gui :after,.react-dat-gui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.react-dat-gui .dg{margin:0;padding:0;color:#eee;overflow:hidden}.react-dat-gui .dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.react-dat-gui .dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.react-dat-gui .dg.main::-webkit-scrollbar-corner{height:0;display:none}.react-dat-gui .dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.react-dat-gui .cr{display:block;background-color:#1a1a1a;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr:not(:last-child){border-bottom:1px solid #272727}.react-dat-gui .cr label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:100%;padding:1px 2px 1px 8px}.react-dat-gui .cr .label-text{width:40%;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.react-dat-gui .cr input[type='number'],.react-dat-gui .cr input[type='text']{background:#303030;border:3px solid #1a1a1a;border-radius:0;margin:0;outline:none;font-size:inherit}.react-dat-gui .cr input[type='number']:hover,.react-dat-gui .cr input[type='text']:hover{background:#3c3c3c}.react-dat-gui .cr input[type='number']:focus,.react-dat-gui .cr input[type='text']:focus{background:#494949;color:#fff}.react-dat-gui .cr input[type='number']::-ms-clear,.react-dat-gui .cr input[type='text']::-ms-clear{display:none}.react-dat-gui .cr.boolean{position:relative;border-left:5px solid #806787}.react-dat-gui .cr.boolean label{cursor:pointer}.react-dat-gui .cr.boolean .label-text{display:block;padding:5px 0}.react-dat-gui .cr.boolean .checkbox-container{width:100%}.react-dat-gui .cr.boolean input[type='checkbox']{margin:0;vertical-align:middle}.react-dat-gui .cr.button{border-left:5px solid #e61d5f}.react-dat-gui .cr.button:hover{background:#111}.react-dat-gui .cr.button .label-text{display:block;width:100%;padding:6px 2px 6px 8px;cursor:pointer}.react-dat-gui li.folder{display:block;padding:0}.react-dat-gui li.folder .title{font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:block;cursor:pointer;padding:5px 5px 5px 16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 48% no-repeat}.react-dat-gui li.folder ul{margin-left:4px;width:calc(100% - 4px)}.react-dat-gui li.folder.closed .title{background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==) 6px 48% no-repeat}.react-dat-gui li.folder.closed ul{display:none}.react-dat-gui .cr.number{border-left:5px solid #2fa1d6}.react-dat-gui .cr.number input[type='number'],.react-dat-gui .cr.number input[type='text']{color:#2fa1d6;height:25px}.react-dat-gui .cr.number .slider{display:block;position:relative;border:3px solid #1a1a1a;border-right-width:1px;background-color:#303030;background-image:-webkit-gradient(linear, left top, right top, from(#2fa1d6), to(#2fa1d6));background-image:linear-gradient(90deg, #2fa1d6, #2fa1d6);background-size:0 100%;background-repeat:no-repeat;cursor:ew-resize;height:25px}.react-dat-gui .cr.string{border-left:5px solid #1ed36f}.react-dat-gui .cr.string input[type='text']{color:#1ed36f;padding:2px 5px;width:100%}.react-dat-gui .cr.select{border-left:5px solid #f4d450}.react-dat-gui .cr.select label{padding:6px 2px 6px 8px}.react-dat-gui .cr.color{border-left:5px solid #1a1a1a}.react-dat-gui .cr.color .swatch{text-align:center;font-weight:700;color:#fff;text-shadow:rgba(0,0,0,0.7) 0 1px 1px;padding:2px 5px;border:3px solid #1a1a1a;cursor:pointer}.react-dat-gui .cr.color .popover{position:absolute;z-index:2;right:5px}.react-dat-gui .cr.color .cover{position:fixed;top:0;right:0;bottom:0;left:0}.react-dat-gui .cr.color .picker{background:#fff;-webkit-box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);box-shadow:0 0 2px rgba(0,0,0,0.3),0 4px 8px rgba(0,0,0,0.3);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-sizing:initial;box-sizing:initial;width:auto;font-family:Menlo,sans-serif;margin-top:-3px}.react-dat-gui .cr.color .picker .body{padding:0}.react-dat-gui .cr.color .picker .body .controls{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .picker .body .controls .toggles{-webkit-box-flex:1;-ms-flex:1;flex:1}.react-dat-gui .cr.color .picker .body .controls .toggles .hue-wrap{height:10px;position:relative}.react-dat-gui .cr.color .picker .saturation-wrap{width:100%;padding-bottom:55%;position:relative;overflow:hidden}.react-dat-gui .cr.color .fields-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.react-dat-gui .cr.color .fields-wrap .fields{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-6px}.react-dat-gui .cr.color .fields-wrap .fields .field{padding-left:6px;width:100%}.react-dat-gui .cr.color .fields-wrap .fields .field input{font-size:11px;color:#333;border-radius:2px;border:none;-webkit-box-shadow:inset 0 0 0 1px #dadada;box-shadow:inset 0 0 0 1px #dadada;height:21px;text-align:center}.react-dat-gui .cr.color .fields-wrap .fields .field input:focus{outline:none}.react-dat-gui .cr.color .fields-wrap .fields .field label{text-transform:uppercase;font-size:11px;line-height:11px;color:#969696;text-align:center;display:block;margin-top:12px}.react-dat-gui .cr.color .pointer{width:12px;height:12px;border-radius:6px;-webkit-transform:translate(-6px, -1px);transform:translate(-6px, -1px);background-color:#f8f8f8;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);box-shadow:0 1px 4px 0 rgba(0,0,0,0.37);position:absolute;z-index:3}.react-dat-gui .cr.color .pointer-circle{width:12px;height:12px;border-radius:6px;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;-webkit-transform:translate(-6px, -6px);transform:translate(-6px, -6px)}.react-dat-gui .cr.presets{border-left:5px solid #dad5cb}.react-dat-gui .cr.presets label{padding:6px 2px 6px 8px}.react-dat-gui .cr.presets label select{width:100%}.UJ8pFM3jky{font-weight:500;font-size:14px;line-height:16px;letter-spacing:1.35px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15);outline:none;text-align:center;-webkit-transition:all .2s;transition:all .2s}.hmoO\+O4kik{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}.QXi28fiyv7{height:45px;border-bottom:1px solid #e8e8e8;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.QXi28fiyv7>i,.QXi28fiyv7>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.dO92XdcbJT{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.ydS3K\+y3JK{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.j7JF9l-4Tk{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.eMisfUToLt{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.WEs96\+SfGg{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.gzk5vj4Ccw{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.YIsHqSM2jx{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px}.YIsHqSM2jx .tuUqAZ1AlS{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-left:16px}.YIsHqSM2jx .tuUqAZ1AlS>span{color:rgba(0,0,0,0.65)}.eMj7frT\+yv{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.eMj7frT\+yv .ypiS1B5Xj2{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:8px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.eMj7frT\+yv .ypiS1B5Xj2>span{font-size:8px}.E51uOdNRlw .ant-popover-inner-content{padding:0}.E51uOdNRlw .ant-popover-arrow{border-color:#475365 !important}.E51uOdNRlw .ant-popover-arrow{background:#475365}.ant-tooltip{max-width:500px}.ant-tooltip-inner{white-space:break-spaces !important}.glbF\+TC9nF{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:fixed;left:0;right:0;bottom:0;height:60px;z-index:9;padding-right:10%;background:white;-webkit-box-shadow:0 0 10px 0 rgba(79,82,114,0.12);box-shadow:0 0 10px 0 rgba(79,82,114,0.12)}.mJur9u2eX0{padding:0 20%;width:100%;background-color:rgba(18, 12, 57);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.mJur9u2eX0 .LPPmchWkJ2{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:url('https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/title-bg.png');background-size:cover;color:#009efa;font-size:30px;height:65px;min-width:800px;padding-bottom:10px}._9LI4XpkEVt{height:9vh;font-size:2.5vw;font-weight:bolder;color:white}.QAVNX-ZNfr{width:210mm;min-height:297mm;padding:5mm;padding-bottom:0;margin:10mm auto;border-radius:5px;background:white;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}@media print{.QAVNX-ZNfr{margin:0;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;width:auto;width:initial;min-height:0;min-height:initial;-webkit-box-shadow:none;box-shadow:none;-webkit-box-shadow:initial;box-shadow:initial;background:white;page-break-after:avoid}}.wT4HlU88Ou{padding:1cm;border:5px red solid;height:257mm;outline:2cm #ffeaea solid}@media print{.C8R7jXAc9m html,.C8R7jXAc9m body{margin:0;padding:0;background-color:#fafafa;font:12pt 'Tahoma';-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact}@page{size:a4;margin:0}.C8R7jXAc9m body,.C8R7jXAc9m div[size='A4']{margin:0;-webkit-box-shadow:0;box-shadow:0}.C8R7jXAc9m textarea{border:none !important;padding-left:0 !important}.C8R7jXAc9m table,.C8R7jXAc9m tr,.C8R7jXAc9m td{page-break-inside:avoid}.C8R7jXAc9m div{page-break-inside:avoid}.C8R7jXAc9m thead{display:table-header-group}.C8R7jXAc9m tfoot{display:table-footer-group}.C8R7jXAc9m *{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}.C8R7jXAc9m .ppgMjt\+HTp,.C8R7jXAc9m .no-print,.C8R7jXAc9m .react-resizable-handle,.C8R7jXAc9m .fc-whiteboard-toolbar,.C8R7jXAc9m .ant-modal-root,.C8R7jXAc9m .ant-alert,.C8R7jXAc9m .LNFWYEPrz-,.C8R7jXAc9m .gnC1b1zjdq{display:none !important}.C8R7jXAc9m .HbIkqfe9LV{display:none !important}}.-ZDXpZguQj{width:100%;height:100%;background:white;-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.15);box-shadow:0 4px 8px rgba(0,0,0,0.15);position:relative}
