.row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}

.col {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: block;
    width: 100%;
}

.col-10 {
    -webkit-flex: 0 0 10%;
    -moz-box-flex: 0;
    -moz-flex: 0 0 10%;
    -ms-flex: 0 0 10%;
    flex: 0 0 10%;
    max-width: 10%;
}

.col-13 {
    -webkit-flex: 0 0 13%;
    -moz-box-flex: 0;
    -moz-flex: 0 0 13%;
    -ms-flex: 0 0 13%;
    flex: 0 0 13%;
    max-width: 13%;
}

.col-15 {
    -webkit-flex: 0 0 15%;
    -moz-box-flex: 0;
    -moz-flex: 0 0 15%;
    -ms-flex: 0 0 15%;
    flex: 0 0 15%;
    max-width: 15%;
}

.col-18 {
    -webkit-flex: 0 0 18%;
    -moz-box-flex: 0;
    -moz-flex: 0 0 18%;
    -ms-flex: 0 0 18%;
    flex: 0 0 18%;
    max-width: 18%;
}

.col-20 {
    -webkit-flex: 0 0 20%;
    -moz-box-flex: 0;
    -moz-flex: 0 0 20%;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
}

.col-25 {
    -webkit-flex: 0 0 25%;
    -moz-box-flex: 0;
    -moz-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}

.col-40 {
    -webkit-flex: 0 0 40%;
    -moz-box-flex: 0;
    -moz-flex: 0 0 40%;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%;
}

.col-50 {
    -webkit-flex: 0 0 50%;
    -moz-box-flex: 0;
    -moz-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.col-52 {
    -webkit-flex: 0 0 52%;
    -moz-box-flex: 0;
    -moz-flex: 0 0 52%;
    -ms-flex: 0 0 52%;
    flex: 0 0 52%;
    max-width: 52%;
}

.col-55 {
    -webkit-flex: 0 0 55%;
    -moz-box-flex: 0;
    -moz-flex: 0 0 55%;
    -ms-flex: 0 0 55%;
    flex: 0 0 55%;
    max-width: 55%;
}

.col-60 {
    -webkit-flex: 0 0 60%;
    -moz-box-flex: 0;
    -moz-flex: 0 0 60%;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    max-width: 60%;
}

.col-70 {
    -webkit-flex: 0 0 70%;
    -moz-box-flex: 0;
    -moz-flex: 0 0 70%;
    -ms-flex: 0 0 70%;
    flex: 0 0 70%;
    max-width: 70%;
}

.col-75 {
    -webkit-flex: 0 0 75%;
    -moz-box-flex: 0;
    -moz-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
}

.col-80 {
    -webkit-flex: 0 0 80%;
    -moz-box-flex: 0;
    -moz-flex: 0 0 80%;
    -ms-flex: 0 0 80%;
    flex: 0 0 80%;
    max-width: 80%;
}

.col-85 {
    -webkit-flex: 0 0 85%;
    -moz-box-flex: 0;
    -moz-flex: 0 0 85%;
    -ms-flex: 0 0 85%;
    flex: 0 0 85%;
    max-width: 85%;
}

.col-87 {
    -webkit-flex: 0 0 87%;
    -moz-box-flex: 0;
    -moz-flex: 0 0 87%;
    -ms-flex: 0 0 87%;
    flex: 0 0 87%;
    max-width: 87%;
}

.col-90 {
    -webkit-flex: 0 0 90%;
    -moz-box-flex: 0;
    -moz-flex: 0 0 90%;
    -ms-flex: 0 0 90%;
    flex: 0 0 90%;
    max-width: 90%;
}

.col-center {
    -webkit-align-self: center;
    -moz-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
}@charset "UTF-8";

/*!
Animate.css - http://daneden.me/animate
Version - 3.4.0
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/

.animated {
  -webkit-animation-duration: 0.35s;
  animation-duration: 0.35s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

.animated.flipOutX,
.animated.flipOutY {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0,-4px,0);
    transform: translate3d(0,-4px,0);
  }
}

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0,-4px,0);
    transform: translate3d(0,-4px,0);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
    transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
    transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function:0.4s;
    animation-timing-function: 0.4s;
    opacity: 0;
  }

  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: 0.4s;
    animation-timing-function: 0.4s;
    opacity: 0;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
      -webkit-animation-timing-function:0.4s;
      animation-timing-function: 0.4s;
  }

  60% {
    -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);
      -webkit-animation-timing-function:0.4s;
      animation-timing-function: 0.4s;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  to {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
/**
* actionsheet
*/
/**
* en: primary type text color of menu item
* zh-CN: 菜单项primary类型的文本颜色
*/
/**
* en: warn type text color of menu item
* zh-CN: 菜单项warn类型的文本颜色
*/
/**
* en: default type text color of menu item
* zh-CN: 菜单项default类型的文本颜色
*/
/**
* en: disabled type text color of menu item
* zh-CN: 菜单项disabled类型的文本颜色
*/
/**
* datetime
*/
/**
* tabbar
*/
/**
* tab
*/
/**
* dialog
*/
/**
* en: title and content's padding-left and padding-right
* zh-CN: 标题及内容区域的 padding-left 和 padding-right
*/
/**
* x-number
*/
/**
* checkbox
*/
/**
* check-icon
*/
/**
* Cell
*/
/**
* Mask
*/
/**
* Range
*/
/**
* Tabbar
*/
/**
* Header
*/
/**
* Timeline
*/
/**
* Switch
*/
/**
* Button
*/
/**
* en: border radius
* zh-CN: 圆角边框
*/
/**
* en: font color
* zh-CN: 字体颜色
*/
/**
* en: margin-top value between previous button, not works when there is only one button
* zh-CN: 与相邻按钮的 margin-top 间隙，只有一个按钮时不生效
*/
/**
* en: button height
* zh-CN: 按钮高度
*/
/**
* en: the font color in disabled
* zh-CN: disabled状态下的字体颜色
*/
/**
* en: the font color in disabled
* zh-CN: disabled状态下的字体颜色
*/
/**
* en: font size
* zh-CN: 字体大小
*/
/**
* en: the font size of the mini type
* zh-CN: mini类型的字体大小
*/
/**
* en: the line height of the mini type
* zh-CN: mini类型的行高
*/
/**
* en: the background color of the warn type
* zh-CN: warn类型的背景颜色
*/
/**
* en: the background color of the warn type in active
* zh-CN: active状态下，warn类型的背景颜色
*/
/**
* en: the background color of the warn type in disabled
* zh-CN: disabled状态下，warn类型的背景颜色
*/
/**
* en: the background color of the default type
* zh-CN: default类型的背景颜色
*/
/**
* en: the font color of the default type
* zh-CN: default类型的字体颜色
*/
/**
* en: the background color of the default type in active
* zh-CN: active状态下，default类型的背景颜色
*/
/**
* en: the font color of the default type in disabled
* zh-CN: disabled状态下，default类型的字体颜色
*/
/**
* en: the background color of the default type in disabled
* zh-CN: disabled状态下，default类型的背景颜色
*/
/**
* en: the font color of the default type in active
* zh-CN: active状态下，default类型的字体颜色
*/
/**
* en: the background color of the primary type
* zh-CN: primary类型的背景颜色
*/
/**
* en: the background color of the primary type in active
* zh-CN: active状态下，primary类型的背景颜色
*/
/**
* en: the background color of the primary type in disabled
* zh-CN: disabled状态下，primary类型的背景颜色
*/
/**
* en: the font color of the plain primary type
* zh-CN: plain的primary类型的字体颜色
*/
/**
* en: the border color of the plain primary type
* zh-CN: plain的primary类型的边框颜色
*/
/**
* en: the font color of the plain primary type in active
* zh-CN: active状态下，plain的primary类型的字体颜色
*/
/**
* en: the border color of the plain primary type in active
* zh-CN: active状态下，plain的primary类型的边框颜色
*/
/**
* en: the font color of the plain default type
* zh-CN: plain的default类型的字体颜色
*/
/**
* en: the border color of the plain default type
* zh-CN: plain的default类型的边框颜色
*/
/**
* en: the font color of the plain default type in active
* zh-CN: active状态下，plain的default类型的字体颜色
*/
/**
* en: the border color of the plain default type in active
* zh-CN: active状态下，plain的default类型的边框颜色
*/
/**
* en: the font color of the plain warn type
* zh-CN: plain的warn类型的字体颜色
*/
/**
* en: the border color of the plain warn type
* zh-CN: plain的warn类型的边框颜色
*/
/**
* en: the font color of the plain warn type in active
* zh-CN: active状态下，plain的warn类型的字体颜色
*/
/**
* en: the border color of the plain warn type in active
* zh-CN: active状态下，plain的warn类型的边框颜色
*/
/**
* swipeout
*/
/**
* Cell
*/
/**
* Badge
*/
/**
* en: badge background color
* zh-CN: badge的背景颜色
*/
/**
* Popover
*/
/**
* Button tab
*/
/**
* en: not used
* zh-CN: 未被使用
*/
/**
* en: border radius color
* zh-CN: 圆角边框的半径
*/
/**
* en: border color
* zh-CN: 边框的颜色
*/
/**
* en: not used
* zh-CN: 默认状态下圆角边框的颜色
*/
/**
* en: not used
* zh-CN: 未被使用
*/
/**
* en: default background color
* zh-CN: 默认状态下的背景颜色
*/
/**
* en: selected background color
* zh-CN: 选中状态下的背景颜色
*/
/**
* en: not used
* zh-CN: 未被使用
*/
/* alias */
/**
* en: not used
* zh-CN: 未被使用
*/
/**
* en: default text color
* zh-CN: 默认状态下的文本颜色
*/
/**
* en: height
* zh-CN: 元素高度
*/
/**
* en: line height
* zh-CN: 元素行高
*/
/**
* Swiper
*/
/**
* checklist
*/
/**
* popup-picker
*/
/**
* popup
*/
/**
* popup-header
*/
/**
* form-preview
*/
/**
* sticky
*/
/**
* group
*/
/**
* en: margin-top of title
* zh-CN: 标题的margin-top
*/
/**
* en: margin-bottom of title
* zh-CN: 标题的margin-bottom
*/
/**
* en: margin-top of footer title
* zh-CN: 底部标题的margin-top
*/
/**
* en: margin-bottom of footer title
* zh-CN: 底部标题的margin-bottom
*/
/**
* toast
*/
/**
* en: text size of content
* zh-CN: 内容文本大小
*/
/**
* en: default top
* zh-CN: 默认状态下距离顶部的高度
*/
/**
* en: position top
* zh-CN: 顶部显示的高度
*/
/**
* en: position bottom
* zh-CN: 底部显示的高度
*/
/**
* en: z-index
* zh-CN: z-index
*/
/**
* icon
*/
/**
* calendar
*/
/**
* en: forward and backward arrows color
* zh-CN: 前进后退的箭头颜色
*/
/**
* en: text color of week highlight
* zh-CN: 周末高亮的文本颜色
*/
/**
* en: background color when selected
* zh-CN: 选中时的背景颜色
*/
/**
* en: text color when disabled
* zh-CN: 禁用时的文本颜色
*/
/**
* en: text color of today
* zh-CN: 今天的文本颜色
*/
/**
* en: font size of cell
* zh-CN: 单元格的字号
*/
/**
* en: background color
* zh-CN: 背景颜色
*/
/**
* en: size of date cell
* zh-CN: 日期单元格尺寸大小
*/
/**
* en: line height of date cell
* zh-CN: 日期单元格的行高
*/
/**
* en: text color of header
* zh-CN: 头部的文本颜色
*/
/**
* week-calendar
*/
/**
* search
*/
/**
* en: text color of cancel button
* zh-CN: 取消按钮文本颜色
*/
/**
* en: background color
* zh-CN: 背景颜色
*/
/**
* en: text color of placeholder
* zh-CN: placeholder文本颜色
*/
/**
* radio
*/
/**
* en: checked icon color
* zh-CN: 选中状态的图标颜色
*/
/**
* loadmore
*/
/**
* en: not used
* zh-CN: 未被使用
*/
/**
* loading
*/
/**
* en: z-index
* zh-CN: z-index
*/
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  line-height: 1.6;
  font-family: -apple-system-font, "Helvetica Neue", sans-serif;
}
* {
  margin: 0;
  padding: 0;
}
a img {
  border: 0;
}
a {
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/** env = windows **/
::-webkit-input-placeholder {
  font-family: -apple-system-font, "Helvetica Neue", sans-serif;
}
/** prevent default menu callout **/
a {
  -webkit-touch-callout: none;
}
.child-view {
  width: 100vw;
  transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
body {
  box-sizing: border-box;
  background-color: #fbf9fe;
  -webkit-touch-callout: none;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
      text-size-adjust: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -ms-content-zooming: none;
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
}
html {
  font-size: 10px;
}
html,
body {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}
body {
  font-size: 14px;
}
.app-nav-view {
  height: 100vh;
}
.weui-tab__panel {
  padding-bottom: 0 !important;
}
.dp-container .dp-header .dp-item.dp-left,
.dp-container .dp-header .dp-item.dp-right {
  color: #1B9EFF;
}
.weui-tab__panel::-webkit-scrollbar {
  display: none !important;
}
.weui-tab::-webkit-scrollbar {
  display: none !important;
}
.app-nav-view::-webkit-scrollbar {
  display: none !important;
}
body::-webkit-scrollbar {
  display: none !important;
}
.weui-switch:checked,
.weui-switch-cp__input:checked ~ .weui-switch-cp__box,
.nut-checkbox input:checked {
  background-color: #1B9EFF !important;
  border-color: #1b9eff !important;
}
.nut-checkbox input:checked {
  box-shadow: none;
}
/**
* actionsheet
*/
/**
* en: primary type text color of menu item
* zh-CN: 菜单项primary类型的文本颜色
*/
/**
* en: warn type text color of menu item
* zh-CN: 菜单项warn类型的文本颜色
*/
/**
* en: default type text color of menu item
* zh-CN: 菜单项default类型的文本颜色
*/
/**
* en: disabled type text color of menu item
* zh-CN: 菜单项disabled类型的文本颜色
*/
/**
* datetime
*/
/**
* tabbar
*/
/**
* tab
*/
/**
* dialog
*/
/**
* en: title and content's padding-left and padding-right
* zh-CN: 标题及内容区域的 padding-left 和 padding-right
*/
/**
* x-number
*/
/**
* checkbox
*/
/**
* check-icon
*/
/**
* Cell
*/
/**
* Mask
*/
/**
* Range
*/
/**
* Tabbar
*/
/**
* Header
*/
/**
* Timeline
*/
/**
* Switch
*/
/**
* Button
*/
/**
* en: border radius
* zh-CN: 圆角边框
*/
/**
* en: font color
* zh-CN: 字体颜色
*/
/**
* en: margin-top value between previous button, not works when there is only one button
* zh-CN: 与相邻按钮的 margin-top 间隙，只有一个按钮时不生效
*/
/**
* en: button height
* zh-CN: 按钮高度
*/
/**
* en: the font color in disabled
* zh-CN: disabled状态下的字体颜色
*/
/**
* en: the font color in disabled
* zh-CN: disabled状态下的字体颜色
*/
/**
* en: font size
* zh-CN: 字体大小
*/
/**
* en: the font size of the mini type
* zh-CN: mini类型的字体大小
*/
/**
* en: the line height of the mini type
* zh-CN: mini类型的行高
*/
/**
* en: the background color of the warn type
* zh-CN: warn类型的背景颜色
*/
/**
* en: the background color of the warn type in active
* zh-CN: active状态下，warn类型的背景颜色
*/
/**
* en: the background color of the warn type in disabled
* zh-CN: disabled状态下，warn类型的背景颜色
*/
/**
* en: the background color of the default type
* zh-CN: default类型的背景颜色
*/
/**
* en: the font color of the default type
* zh-CN: default类型的字体颜色
*/
/**
* en: the background color of the default type in active
* zh-CN: active状态下，default类型的背景颜色
*/
/**
* en: the font color of the default type in disabled
* zh-CN: disabled状态下，default类型的字体颜色
*/
/**
* en: the background color of the default type in disabled
* zh-CN: disabled状态下，default类型的背景颜色
*/
/**
* en: the font color of the default type in active
* zh-CN: active状态下，default类型的字体颜色
*/
/**
* en: the background color of the primary type
* zh-CN: primary类型的背景颜色
*/
/**
* en: the background color of the primary type in active
* zh-CN: active状态下，primary类型的背景颜色
*/
/**
* en: the background color of the primary type in disabled
* zh-CN: disabled状态下，primary类型的背景颜色
*/
/**
* en: the font color of the plain primary type
* zh-CN: plain的primary类型的字体颜色
*/
/**
* en: the border color of the plain primary type
* zh-CN: plain的primary类型的边框颜色
*/
/**
* en: the font color of the plain primary type in active
* zh-CN: active状态下，plain的primary类型的字体颜色
*/
/**
* en: the border color of the plain primary type in active
* zh-CN: active状态下，plain的primary类型的边框颜色
*/
/**
* en: the font color of the plain default type
* zh-CN: plain的default类型的字体颜色
*/
/**
* en: the border color of the plain default type
* zh-CN: plain的default类型的边框颜色
*/
/**
* en: the font color of the plain default type in active
* zh-CN: active状态下，plain的default类型的字体颜色
*/
/**
* en: the border color of the plain default type in active
* zh-CN: active状态下，plain的default类型的边框颜色
*/
/**
* en: the font color of the plain warn type
* zh-CN: plain的warn类型的字体颜色
*/
/**
* en: the border color of the plain warn type
* zh-CN: plain的warn类型的边框颜色
*/
/**
* en: the font color of the plain warn type in active
* zh-CN: active状态下，plain的warn类型的字体颜色
*/
/**
* en: the border color of the plain warn type in active
* zh-CN: active状态下，plain的warn类型的边框颜色
*/
/**
* swipeout
*/
/**
* Cell
*/
/**
* Badge
*/
/**
* en: badge background color
* zh-CN: badge的背景颜色
*/
/**
* Popover
*/
/**
* Button tab
*/
/**
* en: not used
* zh-CN: 未被使用
*/
/**
* en: border radius color
* zh-CN: 圆角边框的半径
*/
/**
* en: border color
* zh-CN: 边框的颜色
*/
/**
* en: not used
* zh-CN: 默认状态下圆角边框的颜色
*/
/**
* en: not used
* zh-CN: 未被使用
*/
/**
* en: default background color
* zh-CN: 默认状态下的背景颜色
*/
/**
* en: selected background color
* zh-CN: 选中状态下的背景颜色
*/
/**
* en: not used
* zh-CN: 未被使用
*/
/* alias */
/**
* en: not used
* zh-CN: 未被使用
*/
/**
* en: default text color
* zh-CN: 默认状态下的文本颜色
*/
/**
* en: height
* zh-CN: 元素高度
*/
/**
* en: line height
* zh-CN: 元素行高
*/
/**
* Swiper
*/
/**
* checklist
*/
/**
* popup-picker
*/
/**
* popup
*/
/**
* popup-header
*/
/**
* form-preview
*/
/**
* sticky
*/
/**
* group
*/
/**
* en: margin-top of title
* zh-CN: 标题的margin-top
*/
/**
* en: margin-bottom of title
* zh-CN: 标题的margin-bottom
*/
/**
* en: margin-top of footer title
* zh-CN: 底部标题的margin-top
*/
/**
* en: margin-bottom of footer title
* zh-CN: 底部标题的margin-bottom
*/
/**
* toast
*/
/**
* en: text size of content
* zh-CN: 内容文本大小
*/
/**
* en: default top
* zh-CN: 默认状态下距离顶部的高度
*/
/**
* en: position top
* zh-CN: 顶部显示的高度
*/
/**
* en: position bottom
* zh-CN: 底部显示的高度
*/
/**
* en: z-index
* zh-CN: z-index
*/
/**
* icon
*/
/**
* calendar
*/
/**
* en: forward and backward arrows color
* zh-CN: 前进后退的箭头颜色
*/
/**
* en: text color of week highlight
* zh-CN: 周末高亮的文本颜色
*/
/**
* en: background color when selected
* zh-CN: 选中时的背景颜色
*/
/**
* en: text color when disabled
* zh-CN: 禁用时的文本颜色
*/
/**
* en: text color of today
* zh-CN: 今天的文本颜色
*/
/**
* en: font size of cell
* zh-CN: 单元格的字号
*/
/**
* en: background color
* zh-CN: 背景颜色
*/
/**
* en: size of date cell
* zh-CN: 日期单元格尺寸大小
*/
/**
* en: line height of date cell
* zh-CN: 日期单元格的行高
*/
/**
* en: text color of header
* zh-CN: 头部的文本颜色
*/
/**
* week-calendar
*/
/**
* search
*/
/**
* en: text color of cancel button
* zh-CN: 取消按钮文本颜色
*/
/**
* en: background color
* zh-CN: 背景颜色
*/
/**
* en: text color of placeholder
* zh-CN: placeholder文本颜色
*/
/**
* radio
*/
/**
* en: checked icon color
* zh-CN: 选中状态的图标颜色
*/
/**
* loadmore
*/
/**
* en: not used
* zh-CN: 未被使用
*/
/**
* loading
*/
/**
* en: z-index
* zh-CN: z-index
*/
.weui-tabbar {
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  z-index: 500;
  bottom: 0;
  width: 100%;
  background-color: #F7F7FA;
}
.weui-tabbar:before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 1px;
  border-top: 1px solid #C0BFC4;
  color: #C0BFC4;
  transform-origin: 0 0;
  transform: scaleY(0.5);
}
.weui-tabbar__item {
  display: block;
  -ms-flex: 1;
      flex: 1;
  padding: 5px 0 0;
  font-size: 0;
  color: #999999;
  text-align: center;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.weui-tabbar__item.weui-bar__item_on .weui-tabbar__icon,
.weui-tabbar__item.weui-bar__item_on .weui-tabbar__icon > i,
.weui-tabbar__item.weui-bar__item_on .weui-tabbar__label {
  color: #09BB07;
}
.weui-tabbar__icon {
  display: inline-block;
  width: 27px;
  height: 27px;
}
i.weui-tabbar__icon,
.weui-tabbar__icon > i {
  font-size: 24px;
  color: #999999;
}
.weui-tabbar__icon img {
  width: 100%;
  height: 100%;
}
.weui-tabbar__label {
  text-align: center;
  color: #999999;
  font-size: 10px;
  line-height: 1.8;
}
.weui-tab {
  position: relative;
  height: 100%;
}
.weui-tab__panel {
  box-sizing: border-box;
  height: 100%;
  padding-bottom: 50px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.weui-tab__content {
  display: none;
}
/* Make clicks pass-through */
#nprogress {
  pointer-events: none;
}

#nprogress .bar {
  background: #29d;

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

  width: 100%;
  height: 2px;
}

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

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

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

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

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

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

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

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

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


@charset "UTF-8";
/**
 * $Desc css全局变量，通过定义样式
 */
/*
* mixin集中存储文件
*/
.main-home {
  height: 100vh;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
  background-color: #ffffff;
}
.main--page {
  box-sizing: border-box;
  height: calc(100% - 65px);
  overflow-y: scroll;
  overflow-x: hidden;
}
.actionsheet--title {
  text-align: center;
  height: 5.6629834254vh;
  padding: 0 4vw;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.mainActionSheet {
  display: -ms-flexbox;
  display: flex;
  background-color: #ffffff;
  padding: 0 12vw;
  height: 23.4806629834vh;
}
.mainActionSheet--item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
}
.mainActionSheet--item .mainActionImg {
  width: 24vw;
  height: 17.5414364641vh;
}
#loginInfoDialog .nut-dialog {
  top: -10%;
  width: 70%;
}
#loginInfoDialog .nut-dialog .nut-dialog-content {
  padding-bottom: 0;
}
#loginInfoDialog .nut-dialog .nut-dialog-content .dialog--btn {
  color: #1B9EFF;
}
#loginInfoDialog .nut-dialog .dialog--icon {
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
}
#loginInfoDialog .nut-dialog .dialog--icon-txt {
  margin-top: 5px;
  color: #1d1d1d;
  font-weight: bolder;
}
.login--text {
  margin-bottom: 5px;
}
.first-loading-background {
  height: 100vh;
  background: white;
  width: 100vw;
}
.first-loading-background img {
  width: px(256);
  margin: 0 auto;
  padding-top: 25%;
  display: block;
}
.user-agent-modal .weui-dialog__bd {
  height: 250px;
  overflow: scroll;
}
.user-agent-modal .weui-dialog__bd .tip-content {
  text-align: left;
}
.user-agent-modal .weui-dialog__bd .tip-content p {
  margin-top: 5px;
}
.user-agent-modal .weui-dialog__bd .tip-content p a {
  color: #1B9EFF;
}
.user-agent-modal .weui-dialog__bd .tip-content p .red {
  color: #eb2910;
}
.user-agent-modal .weui-dialog__bd .tip-content p .bold {
  font-weight: bold;
}
.user-agent-modal .weui-dialog__bd .agree-icon {
  text-align: left;
  margin-top: 8px;
  font-size: 16px;
}
.user-agent-modal .weui-dialog__bd .agree-icon .weui-icon-success-circle {
  color: #1B9EFF;
}
.user-agent-modal .weui-dialog__bd .agree-icon .weui-icon-success-circle:before {
  color: #1B9EFF;
  margin-left: 0;
}
.user-agent-modal .weui-dialog__bd .agree-icon .weui-icon-circle:before {
  margin-left: 0;
}
.user-agent-modal .weui-dialog__ft .weui-dialog__btn_primary {
  color: #1B9EFF;
}
.user-agent-modal.disabled .weui-dialog__ft .weui-dialog__btn_primary {
  color: #999999;
}
.tipTile {
  width: 50%;
  text-align: center;
  margin-left: 50%;
  margin-top: 50%;
  transform: translateX(-50%);
  border: 1px solid #b2b2b2;
  border-radius: 5px;
  background-color: #f7f7f7;
  padding-bottom: 10px;
}
.tipTile p {
  text-align: center;
  font-size: 16px;
  font-weight: normal;
  margin-top: 10px;
}
.banner[data-v-1c1e59a3] {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.11);
  margin-bottom: 1.6574585635vh;
}
.qrcode[data-v-1c1e59a3] {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-direction: column;
      flex-direction: column;
  background: white;
  margin: 12px;
  border-radius: 10px;
  padding-top: 2vw;
}
.qrcode .title[data-v-1c1e59a3] {
  font-size: 0.2rem;
  margin-bottom: 2vw;
  color: #0092da;
}
.qrcode .code[data-v-1c1e59a3] {
  width: 30%;
}
@charset "UTF-8";
/**
 * $Desc css全局变量，通过定义样式
 */
/*
* mixin集中存储文件
*/
.databoard[data-v-6049a41a] {
  border-radius: 10px;
  height: 13.1215469613vh;
  color: #ffffff;
  overflow: hidden;
}
.databoard-title[data-v-6049a41a] {
  padding-left: 4vw;
}
.databoard-title--text[data-v-6049a41a] {
  font-size: 16px;
  font-family: PingFangSC-Semibold, PingFang SC;
  font-weight: 600;
  color: #ffffff;
}
.databoard-data[data-v-6049a41a] {
  -ms-grid-columns: (33.33%)[3];
      grid-template-columns: repeat(3, 33.33%);
  -ms-flex-align: center;
      align-items: center;
  padding: 0 15px;
}
.databoard-data--item[data-v-6049a41a] {
  position: relative;
  text-align: center;
  text-shadow: 0px 5px 10px #0171e1;
  color: #ffffff;
  row-gap: 0.4143646409vh;
}
.databoard-data--item-title--strong[data-v-6049a41a] {
  font-size: 6.2666666667vw;
}
.databoard-data--item-count[data-v-6049a41a] {
  margin-top: -4px;
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 1px;
}
.databoard-data--item[data-v-6049a41a]::after {
  position: absolute;
  display: block;
  content: "";
  width: 1px;
  height: 60%;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background: #71BEFF;
}
.databoard-data--item[data-v-6049a41a]:last-child::after {
  display: none;
}
@charset "UTF-8";
/**
 * $Desc css全局变量，通过定义样式
 */
/*
* mixin集中存储文件
*/
.noticematters[data-v-664de87e] {
  border-radius: 10px;
  display: -ms-flexbox;
  display: flex;
  background: #ffffff;
  overflow: hidden;
  height: 80px;
}
.noticematters--title[data-v-664de87e] {
  display: -ms-flexbox;
  display: flex;
}
.noticematters--title img[data-v-664de87e] {
  width: 70px;
  height: 80px;
}
.noticematters--data[data-v-664de87e] {
  -ms-flex: 1;
      flex: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  height: 80px;
}
.noticematters--data .data--item[data-v-664de87e] {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  box-sizing: border-box;
  padding: 0.8287292818vh 0 0.8287292818vh 3.4666666667vw;
}
.noticematters--data .data--item-point[data-v-664de87e] {
  margin-right: 2vw;
  font-weight: 800;
}
.noticematters--data .data--item--strong[data-v-664de87e] {
  margin: 0 2px;
}
.noticematters--three .data--item[data-v-664de87e] {
  height: 40%;
}
.noticematters--two .data--item[data-v-664de87e] {
  height: 50%;
}
.xs-plugin-pullup-container {
  text-align: center;
}

@charset "UTF-8";
/**
 * $Desc css全局变量，通过定义样式
 */
/*
* mixin集中存储文件
*/
.noticematters[data-v-86bb41fc] {
  border-radius: 10px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  background: #ffffff;
  overflow: hidden;
}
.noticematters--title[data-v-86bb41fc] {
  display: -ms-flexbox;
  display: flex;
}
.noticematters--title img[data-v-86bb41fc] {
  width: 70px;
  height: 80px;
}
.noticematters--data[data-v-86bb41fc] {
  -ms-flex: 1;
      flex: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
.noticematters--data .data--item[data-v-86bb41fc] {
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding: 0.2762430939vh 0 0.2762430939vh 3.4666666667vw;
}
.noticematters--data .data--item-point[data-v-86bb41fc] {
  margin-right: 2vw;
  font-weight: 800;
}
.noticematters--data .data--item--strong[data-v-86bb41fc] {
  margin: 0 2px;
}
@charset "UTF-8";
/**
 * $Desc css全局变量，通过定义样式
 */
/*
* mixin集中存储文件
*/
.menu[data-v-7a0c1a05] {
  border-radius: 10px;
  background: #ffffff;
  color: #696969;
  overflow: hidden;
  padding: 0.9668508287vh 4vw 2.0718232044vh;
  grid-row-gap: 2.4171270718vh;
}
.menu--item[data-v-7a0c1a05] {
  -ms-grid-rows: 30px auto;
      grid-template-rows: 30px auto;
  -ms-flex-align: stretch;
      align-items: stretch;
}
.menu--item-title[data-v-7a0c1a05] {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  font-family: FZZCHJW--GB1-0, FZZCHJW--GB1;
  font-weight: bolder;
  color: #373737;
}
.menu--item-title--line[data-v-7a0c1a05] {
  width: 1.3333333333vw;
  height: 2.0718232044vh;
  margin-right: 2vw;
}
.menu--item-ul[data-v-7a0c1a05] {
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  -ms-flex-align: center;
      align-items: center;
  grid-row-gap: 10px;
  padding-top: 2px;
}
.menu--item-li[data-v-7a0c1a05] {
  text-align: center;
}
.menu--item-li-label[data-v-7a0c1a05] {
  font-size: 3.2vw;
  font-family: PingFangSC-Medium, PingFang SC;
  font-weight: 500;
  color: #7A7A7A;
  margin-top: -5px;
}
@charset "UTF-8";
/**
 * $Desc css全局变量，通过定义样式
 */
/*
* mixin集中存储文件
*/
.reminder[data-v-a2f47d5c] {
  border-radius: 10px;
  background: #ffffff;
  padding: 1.726519337vh 3.3333333333vw 1.726519337vh 3.4666666667vw;
  overflow: hidden;
  -ms-flex-align: center;
      align-items: center;
}
.reminder--count[data-v-a2f47d5c] {
  -ms-flex: 1;
      flex: 1;
  padding-left: 3.8666666667vw;
}
.reminder--count--color[data-v-a2f47d5c] {
  padding: 0 1.3333333333vw;
  color: #1B9EFF;
}
.reminder--button[data-v-a2f47d5c] {
  width: 15.7333333333vw;
  height: 3.3149171271vh;
  line-height: 3.3149171271vh;
  border-radius: 3.2vw;
  color: #1B9EFF;
  border: 1px solid;
  font-size: 11px;
}
@charset "UTF-8";
/**
 * $Desc css全局变量，通过定义样式
 */
/*
* mixin集中存储文件
*/
.swiperComponent[data-v-8be967b8] {
  border-radius: 10px;
  background: #ffffff;
  padding: 0 0 0 4vw;
  overflow: hidden;
}
.swiperComponent--item[data-v-8be967b8] {
  padding: 10px 0;
  font-size: 13px;
  color: #7A7A7A;
  border-bottom: 1px solid #ecebeb;
}/**
* actionsheet
*/
/**
* en: primary type text color of menu item
* zh-CN: 菜单项primary类型的文本颜色
*/
/**
* en: warn type text color of menu item
* zh-CN: 菜单项warn类型的文本颜色
*/
/**
* en: default type text color of menu item
* zh-CN: 菜单项default类型的文本颜色
*/
/**
* en: disabled type text color of menu item
* zh-CN: 菜单项disabled类型的文本颜色
*/
/**
* datetime
*/
/**
* tabbar
*/
/**
* tab
*/
/**
* dialog
*/
/**
* en: title and content's padding-left and padding-right
* zh-CN: 标题及内容区域的 padding-left 和 padding-right
*/
/**
* x-number
*/
/**
* checkbox
*/
/**
* check-icon
*/
/**
* Cell
*/
/**
* Mask
*/
/**
* Range
*/
/**
* Tabbar
*/
/**
* Header
*/
/**
* Timeline
*/
/**
* Switch
*/
/**
* Button
*/
/**
* en: border radius
* zh-CN: 圆角边框
*/
/**
* en: font color
* zh-CN: 字体颜色
*/
/**
* en: margin-top value between previous button, not works when there is only one button
* zh-CN: 与相邻按钮的 margin-top 间隙，只有一个按钮时不生效
*/
/**
* en: button height
* zh-CN: 按钮高度
*/
/**
* en: the font color in disabled
* zh-CN: disabled状态下的字体颜色
*/
/**
* en: the font color in disabled
* zh-CN: disabled状态下的字体颜色
*/
/**
* en: font size
* zh-CN: 字体大小
*/
/**
* en: the font size of the mini type
* zh-CN: mini类型的字体大小
*/
/**
* en: the line height of the mini type
* zh-CN: mini类型的行高
*/
/**
* en: the background color of the warn type
* zh-CN: warn类型的背景颜色
*/
/**
* en: the background color of the warn type in active
* zh-CN: active状态下，warn类型的背景颜色
*/
/**
* en: the background color of the warn type in disabled
* zh-CN: disabled状态下，warn类型的背景颜色
*/
/**
* en: the background color of the default type
* zh-CN: default类型的背景颜色
*/
/**
* en: the font color of the default type
* zh-CN: default类型的字体颜色
*/
/**
* en: the background color of the default type in active
* zh-CN: active状态下，default类型的背景颜色
*/
/**
* en: the font color of the default type in disabled
* zh-CN: disabled状态下，default类型的字体颜色
*/
/**
* en: the background color of the default type in disabled
* zh-CN: disabled状态下，default类型的背景颜色
*/
/**
* en: the font color of the default type in active
* zh-CN: active状态下，default类型的字体颜色
*/
/**
* en: the background color of the primary type
* zh-CN: primary类型的背景颜色
*/
/**
* en: the background color of the primary type in active
* zh-CN: active状态下，primary类型的背景颜色
*/
/**
* en: the background color of the primary type in disabled
* zh-CN: disabled状态下，primary类型的背景颜色
*/
/**
* en: the font color of the plain primary type
* zh-CN: plain的primary类型的字体颜色
*/
/**
* en: the border color of the plain primary type
* zh-CN: plain的primary类型的边框颜色
*/
/**
* en: the font color of the plain primary type in active
* zh-CN: active状态下，plain的primary类型的字体颜色
*/
/**
* en: the border color of the plain primary type in active
* zh-CN: active状态下，plain的primary类型的边框颜色
*/
/**
* en: the font color of the plain default type
* zh-CN: plain的default类型的字体颜色
*/
/**
* en: the border color of the plain default type
* zh-CN: plain的default类型的边框颜色
*/
/**
* en: the font color of the plain default type in active
* zh-CN: active状态下，plain的default类型的字体颜色
*/
/**
* en: the border color of the plain default type in active
* zh-CN: active状态下，plain的default类型的边框颜色
*/
/**
* en: the font color of the plain warn type
* zh-CN: plain的warn类型的字体颜色
*/
/**
* en: the border color of the plain warn type
* zh-CN: plain的warn类型的边框颜色
*/
/**
* en: the font color of the plain warn type in active
* zh-CN: active状态下，plain的warn类型的字体颜色
*/
/**
* en: the border color of the plain warn type in active
* zh-CN: active状态下，plain的warn类型的边框颜色
*/
/**
* swipeout
*/
/**
* Cell
*/
/**
* Badge
*/
/**
* en: badge background color
* zh-CN: badge的背景颜色
*/
/**
* Popover
*/
/**
* Button tab
*/
/**
* en: not used
* zh-CN: 未被使用
*/
/**
* en: border radius color
* zh-CN: 圆角边框的半径
*/
/**
* en: border color
* zh-CN: 边框的颜色
*/
/**
* en: not used
* zh-CN: 默认状态下圆角边框的颜色
*/
/**
* en: not used
* zh-CN: 未被使用
*/
/**
* en: default background color
* zh-CN: 默认状态下的背景颜色
*/
/**
* en: selected background color
* zh-CN: 选中状态下的背景颜色
*/
/**
* en: not used
* zh-CN: 未被使用
*/
/* alias */
/**
* en: not used
* zh-CN: 未被使用
*/
/**
* en: default text color
* zh-CN: 默认状态下的文本颜色
*/
/**
* en: height
* zh-CN: 元素高度
*/
/**
* en: line height
* zh-CN: 元素行高
*/
/**
* Swiper
*/
/**
* checklist
*/
/**
* popup-picker
*/
/**
* popup
*/
/**
* popup-header
*/
/**
* form-preview
*/
/**
* sticky
*/
/**
* group
*/
/**
* en: margin-top of title
* zh-CN: 标题的margin-top
*/
/**
* en: margin-bottom of title
* zh-CN: 标题的margin-bottom
*/
/**
* en: margin-top of footer title
* zh-CN: 底部标题的margin-top
*/
/**
* en: margin-bottom of footer title
* zh-CN: 底部标题的margin-bottom
*/
/**
* toast
*/
/**
* en: text size of content
* zh-CN: 内容文本大小
*/
/**
* en: default top
* zh-CN: 默认状态下距离顶部的高度
*/
/**
* en: position top
* zh-CN: 顶部显示的高度
*/
/**
* en: position bottom
* zh-CN: 底部显示的高度
*/
/**
* en: z-index
* zh-CN: z-index
*/
/**
* icon
*/
/**
* calendar
*/
/**
* en: forward and backward arrows color
* zh-CN: 前进后退的箭头颜色
*/
/**
* en: text color of week highlight
* zh-CN: 周末高亮的文本颜色
*/
/**
* en: background color when selected
* zh-CN: 选中时的背景颜色
*/
/**
* en: text color when disabled
* zh-CN: 禁用时的文本颜色
*/
/**
* en: text color of today
* zh-CN: 今天的文本颜色
*/
/**
* en: font size of cell
* zh-CN: 单元格的字号
*/
/**
* en: background color
* zh-CN: 背景颜色
*/
/**
* en: size of date cell
* zh-CN: 日期单元格尺寸大小
*/
/**
* en: line height of date cell
* zh-CN: 日期单元格的行高
*/
/**
* en: text color of header
* zh-CN: 头部的文本颜色
*/
/**
* week-calendar
*/
/**
* search
*/
/**
* en: text color of cancel button
* zh-CN: 取消按钮文本颜色
*/
/**
* en: background color
* zh-CN: 背景颜色
*/
/**
* en: text color of placeholder
* zh-CN: placeholder文本颜色
*/
/**
* radio
*/
/**
* en: checked icon color
* zh-CN: 选中状态的图标颜色
*/
/**
* loadmore
*/
/**
* en: not used
* zh-CN: 未被使用
*/
/**
* loading
*/
/**
* en: z-index
* zh-CN: z-index
*/
.vux-slider {
  overflow: hidden;
  position: relative;
}
.vux-slider > .vux-indicator,
.vux-slider .vux-indicator-right {
  position: absolute;
  right: 15px;
  bottom: 10px;
}
.vux-slider > .vux-indicator > a,
.vux-slider .vux-indicator-right > a {
  float: left;
  margin-left: 6px;
}
.vux-slider > .vux-indicator > a > .vux-icon-dot,
.vux-slider .vux-indicator-right > a > .vux-icon-dot {
  display: inline-block;
  vertical-align: middle;
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background-color: #d0cdd1;
}
.vux-slider > .vux-indicator > a > .vux-icon-dot.active,
.vux-slider .vux-indicator-right > a > .vux-icon-dot.active {
  background-color: #04BE02;
}
.vux-slider > .vux-indicator-center {
  right: 50%;
  transform: translateX(50%);
}
.vux-slider > .vux-indicator-left {
  left: 15px;
  right: auto;
}
.vux-slider > .vux-swiper {
  overflow: hidden;
  position: relative;
}
.vux-slider > .vux-swiper > .vux-swiper-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.vux-slider > .vux-swiper > .vux-swiper-item > a {
  display: block;
  width: 100%;
  height: 100%;
}
.vux-slider > .vux-swiper > .vux-swiper-item > a > .vux-img {
  display: block;
  width: 100%;
  height: 100%;
  background: center center no-repeat;
  background-size: cover;
}
.vux-slider > .vux-swiper > .vux-swiper-item > a > .vux-swiper-desc {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.4em;
  font-size: 16px;
  padding: 20px 50px 12px 13px;
  margin: 0;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.7) 100%);
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
}

@charset "UTF-8";
/**
 * $Desc css全局变量，通过定义样式
 */
/*
* mixin集中存储文件
*/
.personal {
  border-radius: 10px;
  background: #ffffff;
  height: 13.1215469613vh;
  padding: 0 4vw;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.11);
  background: linear-gradient(251deg, #45CFFF 0%, #29B1FA 43%, #1298F7 100%);
  overflow: hidden;
}
.actionsheet--txt {
  -ms-grid-columns: 90px auto;
      grid-template-columns: 90px auto;
  -ms-flex-align: center;
      align-items: center;
}
@charset "UTF-8";
/**
 * $Desc css全局变量，通过定义样式
 */
/*
* mixin集中存储文件
*/
.flexCell {
  height: 100%;
}
.flexCell--avater {
  width: 12.6666666667vw;
  height: 12.6666666667vw;
  line-height: 12.6666666667vw;
  text-align: center;
  font-size: 17px;
  font-weight: 500;
  color: #1297F6;
  letter-spacing: 1px;
  margin-right: 12px;
  background: #ffffff;
  border: 1px solid #F3F3F3;
  border-radius: 50%;
}
.flexCell--svgicon {
  line-height: 1;
  margin-right: 10px;
}
.flexCell--src {
  width: 30px;
  height: 30px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  margin-right: 10px;
}
.flexCell--src .iconSvg {
  width: 20px;
}
.flexCell--info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
.flexCell--icon {
  padding: 10px;
}
.flexCell .avaterFont {
  color: #ffffff;
}
@charset "UTF-8";
/**
 * $Desc css全局变量，通过定义样式
 */
/*
* mixin集中存储文件
*/
.personalDataMenu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  border-radius: 10px;
  background: #ffffff;
  padding: 2.6666666667vw 4vw;
  height: 31.0773480663vh;
}
@charset "UTF-8";
/**
 * $Desc css全局变量，通过定义样式
 */
/*
* mixin集中存储文件
*/
.personalSettingMenu {
  border-radius: 10px;
  padding: 2.6666666667vw 4vw;
  background: #ffffff;
  min-height: 6.2154696133vh;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
@charset "UTF-8";
/**
 * $Desc css全局变量，通过定义样式
 */
/*
* mixin集中存储文件
*/
.aboutUsMenu {
  border-radius: 10px;
  padding: 2.6666666667vw 4vw;
  background: #ffffff;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
@charset "UTF-8";
/**
 * $Desc css全局变量，通过定义样式
 */
/*
* mixin集中存储文件
*/
.content[data-v-4e867228] {
  position: absolute;
  display: block;
  content: "";
  background-color: "";
  height: 0.6906077348vh;
  width: 3.2vw;
  border-radius: 5px;
}
.content--active[data-v-4e867228] {
  background-color: #007ce0;
}
figure[data-v-4e867228] {
  margin: 0;
  padding: 0;
  margin-inline-start: 0;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-end: 0;
}
.navtab[data-v-4e867228] {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  box-sizing: border-box;
  height: 65px;
  margin-bottom: 0;
  padding-top: 10px;
  background: #ffffff;
  border-top: 1px solid #ecebeb;
  -ms-flex-line-pack: center;
      align-content: center;
  text-align: center;
  gap: 20px 0;
}
.navtab .ui-icon-image[data-v-4e867228] {
  width: 30px;
  height: 30px;
}
.ui-icon-figcaption[data-v-4e867228] {
  margin-top: -5px;
  font-size: 12px;
}
@charset "UTF-8";
/*
* mixin集中存储文件
*/
.content[data-v-2a507176], .createbtn .createbtn-cross[data-v-2a507176]::after, .createbtn .createbtn-cross[data-v-2a507176]::before {
  content: "";
  position: absolute;
  width: 25px;
  top: 11px;
  left: 0;
}
.createbtn[data-v-2a507176] {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #1F9FFE;
  box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.2), 0px 10px 10px 6px rgba(255, 255, 255, 0.15);
  border: 2px solid #1290EE;
  -ms-flex-align: center;
      align-items: center;
  -ms-grid-column-align: center;
      justify-items: center;
}
.createbtn .createbtn-cross[data-v-2a507176] {
  position: relative;
  width: 25px;
  height: 25px;
  color: white;
}
.createbtn .createbtn-cross[data-v-2a507176]::before {
  border-top: 2px solid;
}
.createbtn .createbtn-cross[data-v-2a507176]::after {
  top: 11px;
  border-bottom: 2px solid;
  transform: rotate(90deg);
}
@charset "UTF-8";
/**
 * $Desc css全局变量，通过定义样式
 */
/*
* mixin集中存储文件
*/
.bgBlack[data-v-379de510], .bgExtendPosition[data-v-379de510] {
  background-color: rgba(0, 0, 0, 0.6);
}
.bgTransparent[data-v-379de510] {
  background-color: rgba(0, 0, 0, 0);
}
.bgPosition[data-v-379de510], .guideBackGround[data-v-379de510] {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}
.bgExtendPosition[data-v-379de510] {
  position: absolute;
}
.guideTop[data-v-379de510] {
  transition: top, bottom 300ms linear;
}
.guideBottom[data-v-379de510] {
  transition: top, bottom 300ms linear;
}
.guide--intro[data-v-379de510] {
  position: absolute;
  top: 0;
  left: 4vw;
  right: 4vw;
  padding: 1.3333333333vw;
  color: #fff;
  border-radius: 4px;
  transition: top 300ms linear;
}
.guide--intro .guide--text[data-v-379de510] {
  font-size: 12px;
}
.guide--intro .guide--btns[data-v-379de510] {
  margin-top: 10px;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.guide--intro .guide--btns .guide--btn[data-v-379de510] {
  font-size: 12px;
  padding: 4px 10px;
  text-align: center;
}
.eleme-button[data-v-03b1f2ea] {
  height: 40px;
  background-color: rgb(2, 182, 253);
  border-radius: 20px;
  box-sizing: border-box;
  padding-left: 36px;
  padding-right: 8px;
  color: #fff;
  line-height: 40px;
  position: relative;
  white-space: nowrap;
  font-family: sans-serif;
  font-size: 15px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.16);
}
.eleme-button .icon[data-v-03b1f2ea] {
  pointer-events: none;
  background-size: 100%;
  width: 24px;
  height: 24px;
  border-radius: 20px;
  position: absolute;
  left: 8px;
  top: 8px;
}
.magnet.touching .eleme-button {
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.24);
}
.magnet[data-v-6f4f6a4a] {
  position: fixed;
  cursor: pointer;
  transition: all 0.15s ease;
  z-index: 10000;
}
.touching[data-v-6f4f6a4a] {
  transform: scale(1.1);
  transition: none;
}

.vux-fade-enter-active,
.vux-fade-leave-active {
  opacity: 1;
  transition: opacity linear 0.2s;
}
.vux-fade-enter,
.vux-fade-leave-to {
  opacity: 0;
}
.vux-dialog-enter-active {
  animation: vux-dialog-in 0.5s;
}
.vux-dialog-leave-active {
  animation: vux-dialog-out 0.3s;
}
@keyframes vux-dialog-in {
0% {
    transform: scale(1.185);
    opacity: 0;
}
100% {
    transform: scale(1);
    opacity: 1;
}
}
@keyframes vux-dialog-out {
0% {
    transform: scale(1);
    opacity: 1;
}
100% {
    transform: scale(0.85);
    opacity: 0;
}
}
.vux-mask-enter,
.vux-mask-leave-active {
  opacity: 0;
}
.vux-mask-leave-active,
.vux-mask-enter-active {
  transition: opacity 300ms;
}
/**
* actionsheet
*/
/**
* en: primary type text color of menu item
* zh-CN: 菜单项primary类型的文本颜色
*/
/**
* en: warn type text color of menu item
* zh-CN: 菜单项warn类型的文本颜色
*/
/**
* en: default type text color of menu item
* zh-CN: 菜单项default类型的文本颜色
*/
/**
* en: disabled type text color of menu item
* zh-CN: 菜单项disabled类型的文本颜色
*/
/**
* datetime
*/
/**
* tabbar
*/
/**
* tab
*/
/**
* dialog
*/
/**
* en: title and content's padding-left and padding-right
* zh-CN: 标题及内容区域的 padding-left 和 padding-right
*/
/**
* x-number
*/
/**
* checkbox
*/
/**
* check-icon
*/
/**
* Cell
*/
/**
* Mask
*/
/**
* Range
*/
/**
* Tabbar
*/
/**
* Header
*/
/**
* Timeline
*/
/**
* Switch
*/
/**
* Button
*/
/**
* en: border radius
* zh-CN: 圆角边框
*/
/**
* en: font color
* zh-CN: 字体颜色
*/
/**
* en: margin-top value between previous button, not works when there is only one button
* zh-CN: 与相邻按钮的 margin-top 间隙，只有一个按钮时不生效
*/
/**
* en: button height
* zh-CN: 按钮高度
*/
/**
* en: the font color in disabled
* zh-CN: disabled状态下的字体颜色
*/
/**
* en: the font color in disabled
* zh-CN: disabled状态下的字体颜色
*/
/**
* en: font size
* zh-CN: 字体大小
*/
/**
* en: the font size of the mini type
* zh-CN: mini类型的字体大小
*/
/**
* en: the line height of the mini type
* zh-CN: mini类型的行高
*/
/**
* en: the background color of the warn type
* zh-CN: warn类型的背景颜色
*/
/**
* en: the background color of the warn type in active
* zh-CN: active状态下，warn类型的背景颜色
*/
/**
* en: the background color of the warn type in disabled
* zh-CN: disabled状态下，warn类型的背景颜色
*/
/**
* en: the background color of the default type
* zh-CN: default类型的背景颜色
*/
/**
* en: the font color of the default type
* zh-CN: default类型的字体颜色
*/
/**
* en: the background color of the default type in active
* zh-CN: active状态下，default类型的背景颜色
*/
/**
* en: the font color of the default type in disabled
* zh-CN: disabled状态下，default类型的字体颜色
*/
/**
* en: the background color of the default type in disabled
* zh-CN: disabled状态下，default类型的背景颜色
*/
/**
* en: the font color of the default type in active
* zh-CN: active状态下，default类型的字体颜色
*/
/**
* en: the background color of the primary type
* zh-CN: primary类型的背景颜色
*/
/**
* en: the background color of the primary type in active
* zh-CN: active状态下，primary类型的背景颜色
*/
/**
* en: the background color of the primary type in disabled
* zh-CN: disabled状态下，primary类型的背景颜色
*/
/**
* en: the font color of the plain primary type
* zh-CN: plain的primary类型的字体颜色
*/
/**
* en: the border color of the plain primary type
* zh-CN: plain的primary类型的边框颜色
*/
/**
* en: the font color of the plain primary type in active
* zh-CN: active状态下，plain的primary类型的字体颜色
*/
/**
* en: the border color of the plain primary type in active
* zh-CN: active状态下，plain的primary类型的边框颜色
*/
/**
* en: the font color of the plain default type
* zh-CN: plain的default类型的字体颜色
*/
/**
* en: the border color of the plain default type
* zh-CN: plain的default类型的边框颜色
*/
/**
* en: the font color of the plain default type in active
* zh-CN: active状态下，plain的default类型的字体颜色
*/
/**
* en: the border color of the plain default type in active
* zh-CN: active状态下，plain的default类型的边框颜色
*/
/**
* en: the font color of the plain warn type
* zh-CN: plain的warn类型的字体颜色
*/
/**
* en: the border color of the plain warn type
* zh-CN: plain的warn类型的边框颜色
*/
/**
* en: the font color of the plain warn type in active
* zh-CN: active状态下，plain的warn类型的字体颜色
*/
/**
* en: the border color of the plain warn type in active
* zh-CN: active状态下，plain的warn类型的边框颜色
*/
/**
* swipeout
*/
/**
* Cell
*/
/**
* Badge
*/
/**
* en: badge background color
* zh-CN: badge的背景颜色
*/
/**
* Popover
*/
/**
* Button tab
*/
/**
* en: not used
* zh-CN: 未被使用
*/
/**
* en: border radius color
* zh-CN: 圆角边框的半径
*/
/**
* en: border color
* zh-CN: 边框的颜色
*/
/**
* en: not used
* zh-CN: 默认状态下圆角边框的颜色
*/
/**
* en: not used
* zh-CN: 未被使用
*/
/**
* en: default background color
* zh-CN: 默认状态下的背景颜色
*/
/**
* en: selected background color
* zh-CN: 选中状态下的背景颜色
*/
/**
* en: not used
* zh-CN: 未被使用
*/
/* alias */
/**
* en: not used
* zh-CN: 未被使用
*/
/**
* en: default text color
* zh-CN: 默认状态下的文本颜色
*/
/**
* en: height
* zh-CN: 元素高度
*/
/**
* en: line height
* zh-CN: 元素行高
*/
/**
* Swiper
*/
/**
* checklist
*/
/**
* popup-picker
*/
/**
* popup
*/
/**
* popup-header
*/
/**
* form-preview
*/
/**
* sticky
*/
/**
* group
*/
/**
* en: margin-top of title
* zh-CN: 标题的margin-top
*/
/**
* en: margin-bottom of title
* zh-CN: 标题的margin-bottom
*/
/**
* en: margin-top of footer title
* zh-CN: 底部标题的margin-top
*/
/**
* en: margin-bottom of footer title
* zh-CN: 底部标题的margin-bottom
*/
/**
* toast
*/
/**
* en: text size of content
* zh-CN: 内容文本大小
*/
/**
* en: default top
* zh-CN: 默认状态下距离顶部的高度
*/
/**
* en: position top
* zh-CN: 顶部显示的高度
*/
/**
* en: position bottom
* zh-CN: 底部显示的高度
*/
/**
* en: z-index
* zh-CN: z-index
*/
/**
* icon
*/
/**
* calendar
*/
/**
* en: forward and backward arrows color
* zh-CN: 前进后退的箭头颜色
*/
/**
* en: text color of week highlight
* zh-CN: 周末高亮的文本颜色
*/
/**
* en: background color when selected
* zh-CN: 选中时的背景颜色
*/
/**
* en: text color when disabled
* zh-CN: 禁用时的文本颜色
*/
/**
* en: text color of today
* zh-CN: 今天的文本颜色
*/
/**
* en: font size of cell
* zh-CN: 单元格的字号
*/
/**
* en: background color
* zh-CN: 背景颜色
*/
/**
* en: size of date cell
* zh-CN: 日期单元格尺寸大小
*/
/**
* en: line height of date cell
* zh-CN: 日期单元格的行高
*/
/**
* en: text color of header
* zh-CN: 头部的文本颜色
*/
/**
* week-calendar
*/
/**
* search
*/
/**
* en: text color of cancel button
* zh-CN: 取消按钮文本颜色
*/
/**
* en: background color
* zh-CN: 背景颜色
*/
/**
* en: text color of placeholder
* zh-CN: placeholder文本颜色
*/
/**
* radio
*/
/**
* en: checked icon color
* zh-CN: 选中状态的图标颜色
*/
/**
* loadmore
*/
/**
* en: not used
* zh-CN: 未被使用
*/
/**
* loading
*/
/**
* en: z-index
* zh-CN: z-index
*/
.weui-mask {
  position: fixed;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}
.weui-mask_transparent {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
.weui-dialog {
  position: fixed;
  display: table;
  z-index: 5000;
  width: 80%;
  max-width: 300px;
  margin: auto;
  background-color: #FFFFFF;
  text-align: center;
  border-radius: 3px;
  overflow: hidden;
}
.weui-mask .weui-dialog {
  position: relative;
}
.weui-dialog__hd {
  padding: 1.3em 1.6em 0.5em;
}
.weui-dialog__hd.with-no-content {
  padding: 1.7em 1.6em;
}
.weui-dialog__title {
  font-weight: 400;
  font-size: 18px;
}
.weui-dialog__bd {
  padding: 0 1.6em 0.8em;
  min-height: 40px;
  font-size: 15px;
  line-height: 1.3;
  word-wrap: break-word;
  word-break: break-all;
  color: #999999;
}
.weui-dialog__bd:first-child {
  padding: 2.7em 20px 1.7em;
  color: #353535;
}
.weui-dialog__ft {
  position: relative;
  line-height: 48px;
  font-size: 18px;
  display: -ms-flexbox;
  display: flex;
}
.weui-dialog__ft:after {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 1px;
  border-top: 1px solid #D5D5D6;
  color: #D5D5D6;
  transform-origin: 0 0;
  transform: scaleY(0.5);
}
.weui-dialog__btn {
  display: block;
  -ms-flex: 1;
      flex: 1;
  color: #3CC51F;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  position: relative;
}
.weui-dialog__btn:active {
  background-color: #EEEEEE;
}
.weui-dialog__btn:after {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  bottom: 0;
  border-left: 1px solid #D5D5D6;
  color: #D5D5D6;
  transform-origin: 0 0;
  transform: scaleX(0.5);
}
.weui-dialog__btn:first-child:after {
  display: none;
}
.weui-dialog__btn_default {
  color: #353535;
}
.weui-dialog__btn_primary {
  color: #0BB20C;
}
.weui-dialog__btn_warn {
  color: #E64340;
}
.weui-skin_android .weui-dialog {
  text-align: left;
  box-shadow: 0 6px 30px 0 rgba(0, 0, 0, 0.1);
}
.weui-skin_android .weui-dialog__title {
  font-size: 21px;
}
.weui-skin_android .weui-dialog__hd {
  text-align: left;
}
.weui-skin_android .weui-dialog__bd {
  color: #999999;
  padding: 0.25em 1.6em 2em;
  font-size: 17px;
  text-align: left;
}
.weui-skin_android .weui-dialog__bd:first-child {
  padding: 1.6em 1.6em 2em;
  color: #353535;
}
.weui-skin_android .weui-dialog__ft {
  display: block;
  text-align: right;
  line-height: 42px;
  font-size: 16px;
  padding: 0 1.6em 0.7em;
}
.weui-skin_android .weui-dialog__ft:after {
  display: none;
}
.weui-skin_android .weui-dialog__btn {
  display: inline-block;
  vertical-align: top;
  padding: 0 .8em;
}
.weui-skin_android .weui-dialog__btn:after {
  display: none;
}
.weui-skin_android .weui-dialog__btn:active {
  background-color: rgba(0, 0, 0, 0.06);
}
.weui-skin_android .weui-dialog__btn:visited {
  background-color: rgba(0, 0, 0, 0.06);
}
.weui-skin_android .weui-dialog__btn:last-child {
  margin-right: -0.8em;
}
.weui-skin_android .weui-dialog__btn_default {
  color: #808080;
}
@media screen and (min-width: 1024px) {
.weui-dialog {
    width: 35%;
}
}
.vux-prompt {
  padding-bottom: 1.6em;
}
.vux-prompt-msgbox {
  width: 80%;
  border: 1px solid #dedede;
  border-radius: 5px;
  padding: 4px 5px;
  appearance: none;
  outline: none;
  font-size: 16px;
}
.vux-modal-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}
.vux-modal-open-for-container {
  overflow: hidden!important;
}

.vux-fade-enter-active,
.vux-fade-leave-active {
  opacity: 1;
  transition: opacity linear 0.2s;
}
.vux-fade-enter,
.vux-fade-leave-to {
  opacity: 0;
}
.vux-dialog-enter-active {
  animation: vux-dialog-in 0.5s;
}
.vux-dialog-leave-active {
  animation: vux-dialog-out 0.3s;
}
@keyframes vux-dialog-in {
0% {
    transform: scale(1.185);
    opacity: 0;
}
100% {
    transform: scale(1);
    opacity: 1;
}
}
@keyframes vux-dialog-out {
0% {
    transform: scale(1);
    opacity: 1;
}
100% {
    transform: scale(0.85);
    opacity: 0;
}
}
.vux-mask-enter,
.vux-mask-leave-active {
  opacity: 0;
}
.vux-mask-leave-active,
.vux-mask-enter-active {
  transition: opacity 300ms;
}
/**
* actionsheet
*/
/**
* en: primary type text color of menu item
* zh-CN: 菜单项primary类型的文本颜色
*/
/**
* en: warn type text color of menu item
* zh-CN: 菜单项warn类型的文本颜色
*/
/**
* en: default type text color of menu item
* zh-CN: 菜单项default类型的文本颜色
*/
/**
* en: disabled type text color of menu item
* zh-CN: 菜单项disabled类型的文本颜色
*/
/**
* datetime
*/
/**
* tabbar
*/
/**
* tab
*/
/**
* dialog
*/
/**
* en: title and content's padding-left and padding-right
* zh-CN: 标题及内容区域的 padding-left 和 padding-right
*/
/**
* x-number
*/
/**
* checkbox
*/
/**
* check-icon
*/
/**
* Cell
*/
/**
* Mask
*/
/**
* Range
*/
/**
* Tabbar
*/
/**
* Header
*/
/**
* Timeline
*/
/**
* Switch
*/
/**
* Button
*/
/**
* en: border radius
* zh-CN: 圆角边框
*/
/**
* en: font color
* zh-CN: 字体颜色
*/
/**
* en: margin-top value between previous button, not works when there is only one button
* zh-CN: 与相邻按钮的 margin-top 间隙，只有一个按钮时不生效
*/
/**
* en: button height
* zh-CN: 按钮高度
*/
/**
* en: the font color in disabled
* zh-CN: disabled状态下的字体颜色
*/
/**
* en: the font color in disabled
* zh-CN: disabled状态下的字体颜色
*/
/**
* en: font size
* zh-CN: 字体大小
*/
/**
* en: the font size of the mini type
* zh-CN: mini类型的字体大小
*/
/**
* en: the line height of the mini type
* zh-CN: mini类型的行高
*/
/**
* en: the background color of the warn type
* zh-CN: warn类型的背景颜色
*/
/**
* en: the background color of the warn type in active
* zh-CN: active状态下，warn类型的背景颜色
*/
/**
* en: the background color of the warn type in disabled
* zh-CN: disabled状态下，warn类型的背景颜色
*/
/**
* en: the background color of the default type
* zh-CN: default类型的背景颜色
*/
/**
* en: the font color of the default type
* zh-CN: default类型的字体颜色
*/
/**
* en: the background color of the default type in active
* zh-CN: active状态下，default类型的背景颜色
*/
/**
* en: the font color of the default type in disabled
* zh-CN: disabled状态下，default类型的字体颜色
*/
/**
* en: the background color of the default type in disabled
* zh-CN: disabled状态下，default类型的背景颜色
*/
/**
* en: the font color of the default type in active
* zh-CN: active状态下，default类型的字体颜色
*/
/**
* en: the background color of the primary type
* zh-CN: primary类型的背景颜色
*/
/**
* en: the background color of the primary type in active
* zh-CN: active状态下，primary类型的背景颜色
*/
/**
* en: the background color of the primary type in disabled
* zh-CN: disabled状态下，primary类型的背景颜色
*/
/**
* en: the font color of the plain primary type
* zh-CN: plain的primary类型的字体颜色
*/
/**
* en: the border color of the plain primary type
* zh-CN: plain的primary类型的边框颜色
*/
/**
* en: the font color of the plain primary type in active
* zh-CN: active状态下，plain的primary类型的字体颜色
*/
/**
* en: the border color of the plain primary type in active
* zh-CN: active状态下，plain的primary类型的边框颜色
*/
/**
* en: the font color of the plain default type
* zh-CN: plain的default类型的字体颜色
*/
/**
* en: the border color of the plain default type
* zh-CN: plain的default类型的边框颜色
*/
/**
* en: the font color of the plain default type in active
* zh-CN: active状态下，plain的default类型的字体颜色
*/
/**
* en: the border color of the plain default type in active
* zh-CN: active状态下，plain的default类型的边框颜色
*/
/**
* en: the font color of the plain warn type
* zh-CN: plain的warn类型的字体颜色
*/
/**
* en: the border color of the plain warn type
* zh-CN: plain的warn类型的边框颜色
*/
/**
* en: the font color of the plain warn type in active
* zh-CN: active状态下，plain的warn类型的字体颜色
*/
/**
* en: the border color of the plain warn type in active
* zh-CN: active状态下，plain的warn类型的边框颜色
*/
/**
* swipeout
*/
/**
* Cell
*/
/**
* Badge
*/
/**
* en: badge background color
* zh-CN: badge的背景颜色
*/
/**
* Popover
*/
/**
* Button tab
*/
/**
* en: not used
* zh-CN: 未被使用
*/
/**
* en: border radius color
* zh-CN: 圆角边框的半径
*/
/**
* en: border color
* zh-CN: 边框的颜色
*/
/**
* en: not used
* zh-CN: 默认状态下圆角边框的颜色
*/
/**
* en: not used
* zh-CN: 未被使用
*/
/**
* en: default background color
* zh-CN: 默认状态下的背景颜色
*/
/**
* en: selected background color
* zh-CN: 选中状态下的背景颜色
*/
/**
* en: not used
* zh-CN: 未被使用
*/
/* alias */
/**
* en: not used
* zh-CN: 未被使用
*/
/**
* en: default text color
* zh-CN: 默认状态下的文本颜色
*/
/**
* en: height
* zh-CN: 元素高度
*/
/**
* en: line height
* zh-CN: 元素行高
*/
/**
* Swiper
*/
/**
* checklist
*/
/**
* popup-picker
*/
/**
* popup
*/
/**
* popup-header
*/
/**
* form-preview
*/
/**
* sticky
*/
/**
* group
*/
/**
* en: margin-top of title
* zh-CN: 标题的margin-top
*/
/**
* en: margin-bottom of title
* zh-CN: 标题的margin-bottom
*/
/**
* en: margin-top of footer title
* zh-CN: 底部标题的margin-top
*/
/**
* en: margin-bottom of footer title
* zh-CN: 底部标题的margin-bottom
*/
/**
* toast
*/
/**
* en: text size of content
* zh-CN: 内容文本大小
*/
/**
* en: default top
* zh-CN: 默认状态下距离顶部的高度
*/
/**
* en: position top
* zh-CN: 顶部显示的高度
*/
/**
* en: position bottom
* zh-CN: 底部显示的高度
*/
/**
* en: z-index
* zh-CN: z-index
*/
/**
* icon
*/
/**
* calendar
*/
/**
* en: forward and backward arrows color
* zh-CN: 前进后退的箭头颜色
*/
/**
* en: text color of week highlight
* zh-CN: 周末高亮的文本颜色
*/
/**
* en: background color when selected
* zh-CN: 选中时的背景颜色
*/
/**
* en: text color when disabled
* zh-CN: 禁用时的文本颜色
*/
/**
* en: text color of today
* zh-CN: 今天的文本颜色
*/
/**
* en: font size of cell
* zh-CN: 单元格的字号
*/
/**
* en: background color
* zh-CN: 背景颜色
*/
/**
* en: size of date cell
* zh-CN: 日期单元格尺寸大小
*/
/**
* en: line height of date cell
* zh-CN: 日期单元格的行高
*/
/**
* en: text color of header
* zh-CN: 头部的文本颜色
*/
/**
* week-calendar
*/
/**
* search
*/
/**
* en: text color of cancel button
* zh-CN: 取消按钮文本颜色
*/
/**
* en: background color
* zh-CN: 背景颜色
*/
/**
* en: text color of placeholder
* zh-CN: placeholder文本颜色
*/
/**
* radio
*/
/**
* en: checked icon color
* zh-CN: 选中状态的图标颜色
*/
/**
* loadmore
*/
/**
* en: not used
* zh-CN: 未被使用
*/
/**
* loading
*/
/**
* en: z-index
* zh-CN: z-index
*/
.weui-mask {
  position: fixed;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}
.weui-mask_transparent {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
.weui-dialog {
  position: fixed;
  display: table;
  z-index: 5000;
  width: 80%;
  max-width: 300px;
  margin: auto;
  background-color: #FFFFFF;
  text-align: center;
  border-radius: 3px;
  overflow: hidden;
}
.weui-mask .weui-dialog {
  position: relative;
}
.weui-dialog__hd {
  padding: 1.3em 1.6em 0.5em;
}
.weui-dialog__hd.with-no-content {
  padding: 1.7em 1.6em;
}
.weui-dialog__title {
  font-weight: 400;
  font-size: 18px;
}
.weui-dialog__bd {
  padding: 0 1.6em 0.8em;
  min-height: 40px;
  font-size: 15px;
  line-height: 1.3;
  word-wrap: break-word;
  word-break: break-all;
  color: #999999;
}
.weui-dialog__bd:first-child {
  padding: 2.7em 20px 1.7em;
  color: #353535;
}
.weui-dialog__ft {
  position: relative;
  line-height: 48px;
  font-size: 18px;
  display: -ms-flexbox;
  display: flex;
}
.weui-dialog__ft:after {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 1px;
  border-top: 1px solid #D5D5D6;
  color: #D5D5D6;
  transform-origin: 0 0;
  transform: scaleY(0.5);
}
.weui-dialog__btn {
  display: block;
  -ms-flex: 1;
      flex: 1;
  color: #3CC51F;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  position: relative;
}
.weui-dialog__btn:active {
  background-color: #EEEEEE;
}
.weui-dialog__btn:after {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  bottom: 0;
  border-left: 1px solid #D5D5D6;
  color: #D5D5D6;
  transform-origin: 0 0;
  transform: scaleX(0.5);
}
.weui-dialog__btn:first-child:after {
  display: none;
}
.weui-dialog__btn_default {
  color: #353535;
}
.weui-dialog__btn_primary {
  color: #0BB20C;
}
.weui-dialog__btn_warn {
  color: #E64340;
}
.weui-skin_android .weui-dialog {
  text-align: left;
  box-shadow: 0 6px 30px 0 rgba(0, 0, 0, 0.1);
}
.weui-skin_android .weui-dialog__title {
  font-size: 21px;
}
.weui-skin_android .weui-dialog__hd {
  text-align: left;
}
.weui-skin_android .weui-dialog__bd {
  color: #999999;
  padding: 0.25em 1.6em 2em;
  font-size: 17px;
  text-align: left;
}
.weui-skin_android .weui-dialog__bd:first-child {
  padding: 1.6em 1.6em 2em;
  color: #353535;
}
.weui-skin_android .weui-dialog__ft {
  display: block;
  text-align: right;
  line-height: 42px;
  font-size: 16px;
  padding: 0 1.6em 0.7em;
}
.weui-skin_android .weui-dialog__ft:after {
  display: none;
}
.weui-skin_android .weui-dialog__btn {
  display: inline-block;
  vertical-align: top;
  padding: 0 .8em;
}
.weui-skin_android .weui-dialog__btn:after {
  display: none;
}
.weui-skin_android .weui-dialog__btn:active {
  background-color: rgba(0, 0, 0, 0.06);
}
.weui-skin_android .weui-dialog__btn:visited {
  background-color: rgba(0, 0, 0, 0.06);
}
.weui-skin_android .weui-dialog__btn:last-child {
  margin-right: -0.8em;
}
.weui-skin_android .weui-dialog__btn_default {
  color: #808080;
}
@media screen and (min-width: 1024px) {
.weui-dialog {
    width: 35%;
}
}
/**
* actionsheet
*/
/**
* en: primary type text color of menu item
* zh-CN: 菜单项primary类型的文本颜色
*/
/**
* en: warn type text color of menu item
* zh-CN: 菜单项warn类型的文本颜色
*/
/**
* en: default type text color of menu item
* zh-CN: 菜单项default类型的文本颜色
*/
/**
* en: disabled type text color of menu item
* zh-CN: 菜单项disabled类型的文本颜色
*/
/**
* datetime
*/
/**
* tabbar
*/
/**
* tab
*/
/**
* dialog
*/
/**
* en: title and content's padding-left and padding-right
* zh-CN: 标题及内容区域的 padding-left 和 padding-right
*/
/**
* x-number
*/
/**
* checkbox
*/
/**
* check-icon
*/
/**
* Cell
*/
/**
* Mask
*/
/**
* Range
*/
/**
* Tabbar
*/
/**
* Header
*/
/**
* Timeline
*/
/**
* Switch
*/
/**
* Button
*/
/**
* en: border radius
* zh-CN: 圆角边框
*/
/**
* en: font color
* zh-CN: 字体颜色
*/
/**
* en: margin-top value between previous button, not works when there is only one button
* zh-CN: 与相邻按钮的 margin-top 间隙，只有一个按钮时不生效
*/
/**
* en: button height
* zh-CN: 按钮高度
*/
/**
* en: the font color in disabled
* zh-CN: disabled状态下的字体颜色
*/
/**
* en: the font color in disabled
* zh-CN: disabled状态下的字体颜色
*/
/**
* en: font size
* zh-CN: 字体大小
*/
/**
* en: the font size of the mini type
* zh-CN: mini类型的字体大小
*/
/**
* en: the line height of the mini type
* zh-CN: mini类型的行高
*/
/**
* en: the background color of the warn type
* zh-CN: warn类型的背景颜色
*/
/**
* en: the background color of the warn type in active
* zh-CN: active状态下，warn类型的背景颜色
*/
/**
* en: the background color of the warn type in disabled
* zh-CN: disabled状态下，warn类型的背景颜色
*/
/**
* en: the background color of the default type
* zh-CN: default类型的背景颜色
*/
/**
* en: the font color of the default type
* zh-CN: default类型的字体颜色
*/
/**
* en: the background color of the default type in active
* zh-CN: active状态下，default类型的背景颜色
*/
/**
* en: the font color of the default type in disabled
* zh-CN: disabled状态下，default类型的字体颜色
*/
/**
* en: the background color of the default type in disabled
* zh-CN: disabled状态下，default类型的背景颜色
*/
/**
* en: the font color of the default type in active
* zh-CN: active状态下，default类型的字体颜色
*/
/**
* en: the background color of the primary type
* zh-CN: primary类型的背景颜色
*/
/**
* en: the background color of the primary type in active
* zh-CN: active状态下，primary类型的背景颜色
*/
/**
* en: the background color of the primary type in disabled
* zh-CN: disabled状态下，primary类型的背景颜色
*/
/**
* en: the font color of the plain primary type
* zh-CN: plain的primary类型的字体颜色
*/
/**
* en: the border color of the plain primary type
* zh-CN: plain的primary类型的边框颜色
*/
/**
* en: the font color of the plain primary type in active
* zh-CN: active状态下，plain的primary类型的字体颜色
*/
/**
* en: the border color of the plain primary type in active
* zh-CN: active状态下，plain的primary类型的边框颜色
*/
/**
* en: the font color of the plain default type
* zh-CN: plain的default类型的字体颜色
*/
/**
* en: the border color of the plain default type
* zh-CN: plain的default类型的边框颜色
*/
/**
* en: the font color of the plain default type in active
* zh-CN: active状态下，plain的default类型的字体颜色
*/
/**
* en: the border color of the plain default type in active
* zh-CN: active状态下，plain的default类型的边框颜色
*/
/**
* en: the font color of the plain warn type
* zh-CN: plain的warn类型的字体颜色
*/
/**
* en: the border color of the plain warn type
* zh-CN: plain的warn类型的边框颜色
*/
/**
* en: the font color of the plain warn type in active
* zh-CN: active状态下，plain的warn类型的字体颜色
*/
/**
* en: the border color of the plain warn type in active
* zh-CN: active状态下，plain的warn类型的边框颜色
*/
/**
* swipeout
*/
/**
* Cell
*/
/**
* Badge
*/
/**
* en: badge background color
* zh-CN: badge的背景颜色
*/
/**
* Popover
*/
/**
* Button tab
*/
/**
* en: not used
* zh-CN: 未被使用
*/
/**
* en: border radius color
* zh-CN: 圆角边框的半径
*/
/**
* en: border color
* zh-CN: 边框的颜色
*/
/**
* en: not used
* zh-CN: 默认状态下圆角边框的颜色
*/
/**
* en: not used
* zh-CN: 未被使用
*/
/**
* en: default background color
* zh-CN: 默认状态下的背景颜色
*/
/**
* en: selected background color
* zh-CN: 选中状态下的背景颜色
*/
/**
* en: not used
* zh-CN: 未被使用
*/
/* alias */
/**
* en: not used
* zh-CN: 未被使用
*/
/**
* en: default text color
* zh-CN: 默认状态下的文本颜色
*/
/**
* en: height
* zh-CN: 元素高度
*/
/**
* en: line height
* zh-CN: 元素行高
*/
/**
* Swiper
*/
/**
* checklist
*/
/**
* popup-picker
*/
/**
* popup
*/
/**
* popup-header
*/
/**
* form-preview
*/
/**
* sticky
*/
/**
* group
*/
/**
* en: margin-top of title
* zh-CN: 标题的margin-top
*/
/**
* en: margin-bottom of title
* zh-CN: 标题的margin-bottom
*/
/**
* en: margin-top of footer title
* zh-CN: 底部标题的margin-top
*/
/**
* en: margin-bottom of footer title
* zh-CN: 底部标题的margin-bottom
*/
/**
* toast
*/
/**
* en: text size of content
* zh-CN: 内容文本大小
*/
/**
* en: default top
* zh-CN: 默认状态下距离顶部的高度
*/
/**
* en: position top
* zh-CN: 顶部显示的高度
*/
/**
* en: position bottom
* zh-CN: 底部显示的高度
*/
/**
* en: z-index
* zh-CN: z-index
*/
/**
* icon
*/
/**
* calendar
*/
/**
* en: forward and backward arrows color
* zh-CN: 前进后退的箭头颜色
*/
/**
* en: text color of week highlight
* zh-CN: 周末高亮的文本颜色
*/
/**
* en: background color when selected
* zh-CN: 选中时的背景颜色
*/
/**
* en: text color when disabled
* zh-CN: 禁用时的文本颜色
*/
/**
* en: text color of today
* zh-CN: 今天的文本颜色
*/
/**
* en: font size of cell
* zh-CN: 单元格的字号
*/
/**
* en: background color
* zh-CN: 背景颜色
*/
/**
* en: size of date cell
* zh-CN: 日期单元格尺寸大小
*/
/**
* en: line height of date cell
* zh-CN: 日期单元格的行高
*/
/**
* en: text color of header
* zh-CN: 头部的文本颜色
*/
/**
* week-calendar
*/
/**
* search
*/
/**
* en: text color of cancel button
* zh-CN: 取消按钮文本颜色
*/
/**
* en: background color
* zh-CN: 背景颜色
*/
/**
* en: text color of placeholder
* zh-CN: placeholder文本颜色
*/
/**
* radio
*/
/**
* en: checked icon color
* zh-CN: 选中状态的图标颜色
*/
/**
* loadmore
*/
/**
* en: not used
* zh-CN: 未被使用
*/
/**
* loading
*/
/**
* en: z-index
* zh-CN: z-index
*/
.vux-check-icon {
  display: inline-block;
}
.vux-check-icon > span {
  line-height: 23px;
  color: #222;
  vertical-align: middle;
}
.vux-check-icon > .weui-icon-success:before,
.vux-check-icon > .weui-icon-success-circle:before {
  color: #09BB07;
}

@font-face {
  font-weight: normal;
  font-style: normal;
  font-family: "weui";
  src: url('data:application/octet-stream;base64,AAEAAAALAIAAAwAwR1NVQrD+s+0AAAE4AAAAQk9TLzJAKEx+AAABfAAAAFZjbWFw65cFHQAAAhwAAAJQZ2x5ZvCRR/EAAASUAAAKtGhlYWQMPROtAAAA4AAAADZoaGVhCCwD+gAAALwAAAAkaG10eEJo//8AAAHUAAAASGxvY2EYqhW4AAAEbAAAACZtYXhwASEAVQAAARgAAAAgbmFtZeNcHtgAAA9IAAAB5nBvc3T6bLhLAAARMAAAAOYAAQAAA+gAAABaA+j/////A+kAAQAAAAAAAAAAAAAAAAAAABIAAQAAAAEAACbZbxtfDzz1AAsD6AAAAADUm2dvAAAAANSbZ2///wAAA+kD6gAAAAgAAgAAAAAAAAABAAAAEgBJAAUAAAAAAAIAAAAKAAoAAAD/AAAAAAAAAAEAAAAKAB4ALAABREZMVAAIAAQAAAAAAAAAAQAAAAFsaWdhAAgAAAABAAAAAQAEAAQAAAABAAgAAQAGAAAAAQAAAAAAAQOwAZAABQAIAnoCvAAAAIwCegK8AAAB4AAxAQIAAAIABQMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUGZFZABA6gHqEQPoAAAAWgPqAAAAAAABAAAAAAAAAAAAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+j//wPoAAAD6AAAAAAABQAAAAMAAAAsAAAABAAAAXQAAQAAAAAAbgADAAEAAAAsAAMACgAAAXQABABCAAAABAAEAAEAAOoR//8AAOoB//8AAAABAAQAAAABAAIAAwAEAAUABgAHAAgACQAKAAsADAANAA4ADwAQABEAAAEGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAANwAAAAAAAAAEQAA6gEAAOoBAAAAAQAA6gIAAOoCAAAAAgAA6gMAAOoDAAAAAwAA6gQAAOoEAAAABAAA6gUAAOoFAAAABQAA6gYAAOoGAAAABgAA6gcAAOoHAAAABwAA6ggAAOoIAAAACAAA6gkAAOoJAAAACQAA6goAAOoKAAAACgAA6gsAAOoLAAAACwAA6gwAAOoMAAAADAAA6g0AAOoNAAAADQAA6g4AAOoOAAAADgAA6g8AAOoPAAAADwAA6hAAAOoQAAAAEAAA6hEAAOoRAAAAEQAAAAAARgCMANIBJAF4AcQCMgJgAqgC/ANIA6YD/gROBKAE9AVaAAAAAgAAAAADrwOtABQAKQAAASIHBgcGFBcWFxYyNzY3NjQnJicmAyInJicmNDc2NzYyFxYXFhQHBgcGAfV4Z2Q7PDw7ZGfwZmQ7PDw7ZGZ4bl5bNjc3Nlte215bNjc3NlteA608O2Rn8GdjOzw8O2Nn8GdkOzz8rzc1W17bXlw1Nzc1XF7bXls1NwAAAAACAAAAAAOzA7MAFwAtAAABIgcGBwYVFBcWFxYzMjc2NzY1NCcmJyYTBwYiLwEmNjsBETQ2OwEyFhURMzIWAe52Z2Q7PT07ZGd2fGpmOz4+O2ZpIXYOKA52Dg0XXQsHJgcLXRcNA7M+O2ZqfHZnZDs9PTtkZ3Z9aWY7Pv3wmhISmhIaARcICwsI/ukaAAMAAAAAA+UD5QAXACMALAAAASIHBgcGFRQXFhcWMzI3Njc2NTQnJicmAxQrASI1AzQ7ATIHJyImNDYyFhQGAe6Ecm9BRERBb3KEiXZxQkREQnF1aQIxAwgCQgMBIxIZGSQZGQPkREJxdomEcm9BRERBb3KEinVxQkT9HQICAWICAjEZIxkZIxkAAAAAAgAAAAADsQPkABkALgAAAQYHBgc2BREUFxYXFhc2NzY3NjURJBcmJyYTAQYvASY/ATYyHwEWNjclNjIfARYB9VVVQk+v/tFHPmxebGxdbT1I/tGvT0JVo/7VBASKAwMSAQUBcQEFAgESAgUBEQQD4xMYEhk3YP6sjnVlSD8cHD9IZXWOAVRgNxkSGP62/tkDA48EBBkCAVYCAQHlAQIQBAAAAAADAAAAAAOxA+QAGwAqADMAAAEGBwYHBgcGNxEUFxYXFhc2NzY3NjURJBcmJyYHMzIWFQMUBisBIicDNDYTIiY0NjIWFAYB9UFBODssO38gRz5sXmxsXW09SP7YqFBBVW80BAYMAwImBQELBh4PFhYeFRUD5A8SDhIOEikK/q2PdWRJPh0dPklkdY8BU141GRIY/AYE/sYCAwUBOgQG/kAVHxUVHxUAAAACAAAAAAPkA+QAFwAtAAABIgcGBwYVFBcWFxYzMjc2NzY1NCcmJyYTAQYiLwEmPwE2Mh8BFjI3ATYyHwEWAe6Ecm9BQ0NCbnODiXVxQkREQnF1kf6gAQUBowMDFgEFAYUCBQEBQwIFARUEA+NEQnF1iYNzbkJDQ0FvcoSJdXFCRP6j/qUBAagEBR4CAWYBAQENAgIVBAAAAAQAAAAAA68DrQAUACkAPwBDAAABIgcGBwYUFxYXFjI3Njc2NCcmJyYDIicmJyY0NzY3NjIXFhcWFAcGBwYTBQ4BLwEmBg8BBhYfARYyNwE+ASYiFzAfAQH1eGdkOzw8O2Rn8GZkOzw8O2RmeG5eWzY3NzZbXtteWzY3NzZbXmn+9gYSBmAGDwUDBQEGfQUQBgElBQELEBUBAQOtPDtkZ/BnYzs8PDtjZ/BnZDs8/K83NVte215cNTc3NVxe215bNTcCJt0FAQVJBQIGBAcRBoAGBQEhBQ8LBAEBAAABAAAAAAO7AzoAFwAAEy4BPwE+AR8BFjY3ATYWFycWFAcBBiInPQoGBwUHGgzLDCELAh0LHwsNCgr9uQoeCgGzCyEOCw0HCZMJAQoBvgkCCg0LHQv9sQsKAAAAAAIAAAAAA+UD5gAXACwAAAEiBwYHBhUUFxYXFjMyNzY3NjU0JyYnJhMHBi8BJicmNRM0NjsBMhYVExceAQHvhHJvQUNDQm5zg4l1cUJEREJxdVcQAwT6AwIEEAMCKwIDDsUCAQPlREJxdYmDc25CQ0NBb3KEiXVxQkT9VhwEAncCAgMGAXoCAwMC/q2FAgQAAAQAAAAAA68DrQADABgALQAzAAABMB8BAyIHBgcGFBcWFxYyNzY3NjQnJicmAyInJicmNDc2NzYyFxYXFhQHBgcGAyMVMzUjAuUBAfJ4Z2Q7PDw7ZGfwZmQ7PDw7ZGZ4bl5bNjc3Nlte215bNjc3NltemyT92QKDAQEBLDw7ZGfwZ2M7PDw7Y2fwZ2Q7PPyvNzVbXtteXDU3NzVcXtteWzU3AjH9JAAAAAMAAAAAA+QD5AAXACcAMAAAASIHBgcGFRQXFhcWMzI3Njc2NTQnJicmAzMyFhUDFAYrASImNQM0NhMiJjQ2MhYUBgHuhHJvQUNDQm5zg4l1cUJEREJxdZ42BAYMAwInAwMMBh8PFhYeFhYD40RCcXWJg3NuQkNDQW9yhIl1cUJE/vYGBf7AAgMDAgFABQb+NhYfFhYfFgAABAAAAAADwAPAAAgAEgAoAD0AAAEyNjQmIgYUFhcjFTMRIxUzNSMDIgcGBwYVFBYXFjMyNzY3NjU0Jy4BAyInJicmNDc2NzYyFxYXFhQHBgcGAfQYISEwISFRjzk5yTorhG5rPT99am+DdmhlPD4+PMyFbV5bNTc3NVte2l5bNTc3NVteAqAiLyIiLyI5Hf7EHBwCsT89a26Ed8w8Pj48ZWh2g29qffyjNzVbXtpeWzU3NzVbXtpeWzU3AAADAAAAAAOoA6gACwAgADUAAAEHJwcXBxc3FzcnNwMiBwYHBhQXFhcWMjc2NzY0JyYnJgMiJyYnJjQ3Njc2MhcWFxYUBwYHBgKOmpocmpocmpocmpq2dmZiOjs7OmJm7GZiOjs7OmJmdmtdWTQ2NjRZXdZdWTQ2NjRZXQKqmpocmpocmpocmpoBGTs6YmbsZmI6Ozs6YmbsZmI6O/zCNjRZXdZdWTQ2NjRZXdZdWTQ2AAMAAAAAA+kD6gAaAC8AMAAAAQYHBiMiJyYnJjQ3Njc2MhcWFxYVFAcGBwEHATI3Njc2NCcmJyYiBwYHBhQXFhcWMwKONUBCR21dWjU3NzVaXdpdWzU2GBcrASM5/eBXS0grKysrSEuuSkkqLCwqSUpXASMrFxg2NVtd2l1aNTc3NVpdbUdCQDX+3jkBGSsrSEuuSkkqLCwqSUquS0grKwAC//8AAAPoA+gAFAAwAAABIgcGBwYQFxYXFiA3Njc2ECcmJyYTFg4BIi8BBwYuATQ/AScmPgEWHwE3Nh4BBg8BAfSIdHFDRERDcXQBEHRxQ0REQ3F0SQoBFBsKoqgKGxMKqKIKARQbCqKoChsUAQqoA+hEQ3F0/vB0cUNERENxdAEQdHFDRP1jChsTCqiiCgEUGwqiqAobFAEKqKIKARQbCqIAAAIAAAAAA+QD5AAXADQAAAEiBwYHBhUUFxYXFjMyNzY3NjU0JyYnJhMUBiMFFxYUDwEGLwEuAT8BNh8BFhQPAQUyFh0BAe6Ecm9BQ0NCbnODiXVxQkREQnF1fwQC/pGDAQEVAwTsAgEC7AQEFAIBhAFwAgMD40RCcXWJg3NuQkNDQW9yhIl1cUJE/fYCAwuVAgQCFAQE0AIFAtEEBBQCBQGVCwMDJwAAAAUAAAAAA9QD0wAjACcANwBHAEgAAAERFAYjISImNREjIiY9ATQ2MyE1NDYzITIWHQEhMhYdARQGIyERIREHIgYVERQWOwEyNjURNCYjISIGFREUFjsBMjY1ETQmKwEDeyYb/XYbJkMJDQ0JAQYZEgEvExkBBgkNDQn9CQJc0QkNDQktCQ0NCf7sCQ0NCS0JDQ0JLQMi/TQbJiYbAswMCiwJDS4SGRkSLg0JLAoM/UwCtGsNCf5NCQ0NCQGzCQ0NCf5NCQ0NCQGzCQ0AAAAAEADGAAEAAAAAAAEABAAAAAEAAAAAAAIABwAEAAEAAAAAAAMABAALAAEAAAAAAAQABAAPAAEAAAAAAAUACwATAAEAAAAAAAYABAAeAAEAAAAAAAoAKwAiAAEAAAAAAAsAEwBNAAMAAQQJAAEACABgAAMAAQQJAAIADgBoAAMAAQQJAAMACAB2AAMAAQQJAAQACAB+AAMAAQQJAAUAFgCGAAMAAQQJAAYACACcAAMAAQQJAAoAVgCkAAMAAQQJAAsAJgD6d2V1aVJlZ3VsYXJ3ZXVpd2V1aVZlcnNpb24gMS4wd2V1aUdlbmVyYXRlZCBieSBzdmcydHRmIGZyb20gRm9udGVsbG8gcHJvamVjdC5odHRwOi8vZm9udGVsbG8uY29tAHcAZQB1AGkAUgBlAGcAdQBsAGEAcgB3AGUAdQBpAHcAZQB1AGkAVgBlAHIAcwBpAG8AbgAgADEALgAwAHcAZQB1AGkARwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABzAHYAZwAyAHQAdABmACAAZgByAG8AbQAgAEYAbwBuAHQAZQBsAGwAbwAgAHAAcgBvAGoAZQBjAHQALgBoAHQAdABwADoALwAvAGYAbwBuAHQAZQBsAGwAbwAuAGMAbwBtAAAAAgAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAQIBAwEEAQUBBgEHAQgBCQEKAQsBDAENAQ4BDwEQAREBEgETAAZjaXJjbGUIZG93bmxvYWQEaW5mbwxzYWZlX3N1Y2Nlc3MJc2FmZV93YXJuB3N1Y2Nlc3MOc3VjY2Vzcy1jaXJjbGURc3VjY2Vzcy1uby1jaXJjbGUHd2FpdGluZw53YWl0aW5nLWNpcmNsZQR3YXJuC2luZm8tY2lyY2xlBmNhbmNlbAZzZWFyY2gFY2xlYXIEYmFjawZkZWxldGUAAAAA') format('truetype');
}
[class^="weui-icon-"],
[class*=" weui-icon-"] {
  display: inline-block;
  vertical-align: middle;
  font: normal normal normal 14px/1 "weui";
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}
[class^="weui-icon-"]:before,
[class*=" weui-icon-"]:before {
  display: inline-block;
  margin-left: .2em;
  margin-right: .2em;
}
.weui-icon-circle:before {
  content: "\EA01";
}
/* '' */
.weui-icon-download:before {
  content: "\EA02";
}
/* '' */
.weui-icon-info:before {
  content: "\EA03";
}
/* '' */
.weui-icon-safe-success:before {
  content: "\EA04";
}
/* '' */
.weui-icon-safe-warn:before {
  content: "\EA05";
}
/* '' */
.weui-icon-success:before {
  content: "\EA06";
}
/* '' */
.weui-icon-success-circle:before {
  content: "\EA07";
}
/* '' */
.weui-icon-success-no-circle:before {
  content: "\EA08";
}
/* '' */
.weui-icon-waiting:before {
  content: "\EA09";
}
/* '' */
.weui-icon-waiting-circle:before {
  content: "\EA0A";
}
/* '' */
.weui-icon-warn:before {
  content: "\EA0B";
}
/* '' */
.weui-icon-info-circle:before {
  content: "\EA0C";
}
/* '' */
.weui-icon-cancel:before {
  content: "\EA0D";
}
/* '' */
.weui-icon-search:before {
  content: "\EA0E";
}
/* '' */
.weui-icon-clear:before {
  content: "\EA0F";
}
/* '' */
.weui-icon-back:before {
  content: "\EA10";
}
/* '' */
.weui-icon-delete:before {
  content: "\EA11";
}
/* '' */
/**
* actionsheet
*/
/**
* en: primary type text color of menu item
* zh-CN: 菜单项primary类型的文本颜色
*/
/**
* en: warn type text color of menu item
* zh-CN: 菜单项warn类型的文本颜色
*/
/**
* en: default type text color of menu item
* zh-CN: 菜单项default类型的文本颜色
*/
/**
* en: disabled type text color of menu item
* zh-CN: 菜单项disabled类型的文本颜色
*/
/**
* datetime
*/
/**
* tabbar
*/
/**
* tab
*/
/**
* dialog
*/
/**
* en: title and content's padding-left and padding-right
* zh-CN: 标题及内容区域的 padding-left 和 padding-right
*/
/**
* x-number
*/
/**
* checkbox
*/
/**
* check-icon
*/
/**
* Cell
*/
/**
* Mask
*/
/**
* Range
*/
/**
* Tabbar
*/
/**
* Header
*/
/**
* Timeline
*/
/**
* Switch
*/
/**
* Button
*/
/**
* en: border radius
* zh-CN: 圆角边框
*/
/**
* en: font color
* zh-CN: 字体颜色
*/
/**
* en: margin-top value between previous button, not works when there is only one button
* zh-CN: 与相邻按钮的 margin-top 间隙，只有一个按钮时不生效
*/
/**
* en: button height
* zh-CN: 按钮高度
*/
/**
* en: the font color in disabled
* zh-CN: disabled状态下的字体颜色
*/
/**
* en: the font color in disabled
* zh-CN: disabled状态下的字体颜色
*/
/**
* en: font size
* zh-CN: 字体大小
*/
/**
* en: the font size of the mini type
* zh-CN: mini类型的字体大小
*/
/**
* en: the line height of the mini type
* zh-CN: mini类型的行高
*/
/**
* en: the background color of the warn type
* zh-CN: warn类型的背景颜色
*/
/**
* en: the background color of the warn type in active
* zh-CN: active状态下，warn类型的背景颜色
*/
/**
* en: the background color of the warn type in disabled
* zh-CN: disabled状态下，warn类型的背景颜色
*/
/**
* en: the background color of the default type
* zh-CN: default类型的背景颜色
*/
/**
* en: the font color of the default type
* zh-CN: default类型的字体颜色
*/
/**
* en: the background color of the default type in active
* zh-CN: active状态下，default类型的背景颜色
*/
/**
* en: the font color of the default type in disabled
* zh-CN: disabled状态下，default类型的字体颜色
*/
/**
* en: the background color of the default type in disabled
* zh-CN: disabled状态下，default类型的背景颜色
*/
/**
* en: the font color of the default type in active
* zh-CN: active状态下，default类型的字体颜色
*/
/**
* en: the background color of the primary type
* zh-CN: primary类型的背景颜色
*/
/**
* en: the background color of the primary type in active
* zh-CN: active状态下，primary类型的背景颜色
*/
/**
* en: the background color of the primary type in disabled
* zh-CN: disabled状态下，primary类型的背景颜色
*/
/**
* en: the font color of the plain primary type
* zh-CN: plain的primary类型的字体颜色
*/
/**
* en: the border color of the plain primary type
* zh-CN: plain的primary类型的边框颜色
*/
/**
* en: the font color of the plain primary type in active
* zh-CN: active状态下，plain的primary类型的字体颜色
*/
/**
* en: the border color of the plain primary type in active
* zh-CN: active状态下，plain的primary类型的边框颜色
*/
/**
* en: the font color of the plain default type
* zh-CN: plain的default类型的字体颜色
*/
/**
* en: the border color of the plain default type
* zh-CN: plain的default类型的边框颜色
*/
/**
* en: the font color of the plain default type in active
* zh-CN: active状态下，plain的default类型的字体颜色
*/
/**
* en: the border color of the plain default type in active
* zh-CN: active状态下，plain的default类型的边框颜色
*/
/**
* en: the font color of the plain warn type
* zh-CN: plain的warn类型的字体颜色
*/
/**
* en: the border color of the plain warn type
* zh-CN: plain的warn类型的边框颜色
*/
/**
* en: the font color of the plain warn type in active
* zh-CN: active状态下，plain的warn类型的字体颜色
*/
/**
* en: the border color of the plain warn type in active
* zh-CN: active状态下，plain的warn类型的边框颜色
*/
/**
* swipeout
*/
/**
* Cell
*/
/**
* Badge
*/
/**
* en: badge background color
* zh-CN: badge的背景颜色
*/
/**
* Popover
*/
/**
* Button tab
*/
/**
* en: not used
* zh-CN: 未被使用
*/
/**
* en: border radius color
* zh-CN: 圆角边框的半径
*/
/**
* en: border color
* zh-CN: 边框的颜色
*/
/**
* en: not used
* zh-CN: 默认状态下圆角边框的颜色
*/
/**
* en: not used
* zh-CN: 未被使用
*/
/**
* en: default background color
* zh-CN: 默认状态下的背景颜色
*/
/**
* en: selected background color
* zh-CN: 选中状态下的背景颜色
*/
/**
* en: not used
* zh-CN: 未被使用
*/
/* alias */
/**
* en: not used
* zh-CN: 未被使用
*/
/**
* en: default text color
* zh-CN: 默认状态下的文本颜色
*/
/**
* en: height
* zh-CN: 元素高度
*/
/**
* en: line height
* zh-CN: 元素行高
*/
/**
* Swiper
*/
/**
* checklist
*/
/**
* popup-picker
*/
/**
* popup
*/
/**
* popup-header
*/
/**
* form-preview
*/
/**
* sticky
*/
/**
* group
*/
/**
* en: margin-top of title
* zh-CN: 标题的margin-top
*/
/**
* en: margin-bottom of title
* zh-CN: 标题的margin-bottom
*/
/**
* en: margin-top of footer title
* zh-CN: 底部标题的margin-top
*/
/**
* en: margin-bottom of footer title
* zh-CN: 底部标题的margin-bottom
*/
/**
* toast
*/
/**
* en: text size of content
* zh-CN: 内容文本大小
*/
/**
* en: default top
* zh-CN: 默认状态下距离顶部的高度
*/
/**
* en: position top
* zh-CN: 顶部显示的高度
*/
/**
* en: position bottom
* zh-CN: 底部显示的高度
*/
/**
* en: z-index
* zh-CN: z-index
*/
/**
* icon
*/
/**
* calendar
*/
/**
* en: forward and backward arrows color
* zh-CN: 前进后退的箭头颜色
*/
/**
* en: text color of week highlight
* zh-CN: 周末高亮的文本颜色
*/
/**
* en: background color when selected
* zh-CN: 选中时的背景颜色
*/
/**
* en: text color when disabled
* zh-CN: 禁用时的文本颜色
*/
/**
* en: text color of today
* zh-CN: 今天的文本颜色
*/
/**
* en: font size of cell
* zh-CN: 单元格的字号
*/
/**
* en: background color
* zh-CN: 背景颜色
*/
/**
* en: size of date cell
* zh-CN: 日期单元格尺寸大小
*/
/**
* en: line height of date cell
* zh-CN: 日期单元格的行高
*/
/**
* en: text color of header
* zh-CN: 头部的文本颜色
*/
/**
* week-calendar
*/
/**
* search
*/
/**
* en: text color of cancel button
* zh-CN: 取消按钮文本颜色
*/
/**
* en: background color
* zh-CN: 背景颜色
*/
/**
* en: text color of placeholder
* zh-CN: placeholder文本颜色
*/
/**
* radio
*/
/**
* en: checked icon color
* zh-CN: 选中状态的图标颜色
*/
/**
* loadmore
*/
/**
* en: not used
* zh-CN: 未被使用
*/
/**
* loading
*/
/**
* en: z-index
* zh-CN: z-index
*/
[class^="weui-icon_"]:before,
[class*=" weui-icon_"]:before {
  margin: 0;
}
.weui-icon-success {
  font-size: 23px;
  color: #09BB07;
}
.weui-icon-waiting {
  font-size: 23px;
  color: #10AEFF;
}
.weui-icon-warn {
  font-size: 23px;
  color: #F43530;
}
.weui-icon-info {
  font-size: 23px;
  color: #10AEFF;
}
.weui-icon-success-circle {
  font-size: 23px;
  color: #09BB07;
}
.weui-icon-success-no-circle {
  font-size: 23px;
  color: #09BB07;
}
.weui-icon-waiting-circle {
  font-size: 23px;
  color: #10AEFF;
}
.weui-icon-circle {
  font-size: 23px;
  color: #C9C9C9;
}
.weui-icon-download {
  font-size: 23px;
  color: #09BB07;
}
.weui-icon-info-circle {
  font-size: 23px;
  color: #09BB07;
}
.weui-icon-safe-success {
  color: #09BB07;
}
.weui-icon-safe-warn {
  color: #FFBE00;
}
.weui-icon-cancel {
  color: #F43530;
  font-size: 22px;
}
.weui-icon-search {
  color: #B2B2B2;
  font-size: 14px;
}
.weui-icon-clear {
  color: #B2B2B2;
  font-size: 14px;
}
.weui-icon-delete.weui-icon_gallery-delete {
  color: #FFFFFF;
  font-size: 22px;
}
.weui-icon_msg {
  font-size: 93px;
}
.weui-icon_msg.weui-icon-warn {
  color: #F76260;
}
.weui-icon_msg-primary {
  font-size: 93px;
}
.weui-icon_msg-primary.weui-icon-warn {
  color: #FFBE00;
}
/**
following styles will be removed after v3.0.0
*/
.icon-big:before {
  font-size: 93px;
}

.background[data-v-29fc8f8c] {
  background-color: #F3F5F4;
  min-height: 100%;
  width: 100%;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.background .lookQr[data-v-29fc8f8c] {
  width: 95.9%;
  height: 45%;
  text-align: center;
  overflow: hidden;
  margin-top: 3%;
  margin-left: 2%;
}
.background .lookQr .qrbkg[data-v-29fc8f8c] {
  background-color: white;
  width: 50%;
  margin-left: 50%;
  transform: translate(-50%);
  margin-top: 10%;
}
.background .lookQr .qrbkg .Qrcoded[data-v-29fc8f8c] {
  margin-top: 5%;
  padding: 3%;
}
.background .lookQr .rmb[data-v-29fc8f8c] {
  font-size: 20px;
  font-weight: bold;
  margin-top: 2%;
}
.background .lookQr .warm[data-v-29fc8f8c] {
  color: gray;
  margin-top: 2%;
}
.background .anthezi[data-v-29fc8f8c] {
  background-color: white;
  width: 100%;
  height: 15;
  position: absolute;
  bottom: 0;
  left: 0;
}
.background .anthezi .antche[data-v-29fc8f8c] {
  font-size: 20px;
  background-color: #239DFF;
  border: none;
  border-radius: 5px;
  margin: 3%;
  width: 92%;
  color: white;
  padding: 4% 0;
}
.background .jilu[data-v-29fc8f8c] {
  font-size: 20px;
  color: #46ACFD;
  border: none;
  margin-top: 20%;
}
.background .record[data-v-29fc8f8c] {
  display: inline-block;
  padding: 5px 0;
}
.vux-1px,
.vux-1px-t,
.vux-1px-b,
.vux-1px-tb,
.vux-1px-l,
.vux-1px-r {
  position: relative;
}
.vux-1px:before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  width: 200%;
  border: 1px solid #C7C7C7;
  color: #C7C7C7;
  height: 200%;
  transform-origin: left top;
  transform: scale(0.5);
}
.vux-1px-t:before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 1px;
  border-top: 1px solid #C7C7C7;
  color: #C7C7C7;
  transform-origin: 0 0;
  transform: scaleY(0.5);
}
.vux-1px-b:after {
  content: " ";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 1px;
  border-bottom: 1px solid #C7C7C7;
  color: #C7C7C7;
  transform-origin: 0 100%;
  transform: scaleY(0.5);
}
.vux-1px-tb:before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 1px;
  border-top: 1px solid #C7C7C7;
  color: #C7C7C7;
  transform-origin: 0 0;
  transform: scaleY(0.5);
}
.vux-1px-tb:after {
  content: " ";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 1px;
  border-bottom: 1px solid #C7C7C7;
  color: #C7C7C7;
  transform-origin: 0 100%;
  transform: scaleY(0.5);
}
.vux-1px-l:before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  bottom: 0;
  border-left: 1px solid #C7C7C7;
  color: #C7C7C7;
  transform-origin: 0 0;
  transform: scaleX(0.5);
}
.vux-1px-r:after {
  content: " ";
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  bottom: 0;
  border-right: 1px solid #C7C7C7;
  color: #C7C7C7;
  transform-origin: 100% 0;
  transform: scaleX(0.5);
}
.vux-table {
  line-height: 40px;
  position: relative;
  width: 100%;
  border-collapse: collapse;
}
.vux-table:after {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 1px;
  border-top: 1px solid #C7C7C7;
  color: #C7C7C7;
  transform-origin: 0 0;
  transform: scaleY(0.5);
}
.vux-table th {
  font-weight: 500;
}
.vux-table.vux-table-bordered:before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  bottom: 0;
  border-left: 1px solid #C7C7C7;
  color: #C7C7C7;
  transform-origin: 0 0;
  transform: scaleX(0.5);
}
.vux-table td,
.vux-table th {
  border-bottom: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  text-align: center;
}
.vux-table td,
.vux-table th {
  position: relative;
  border-right: 0;
  border-bottom: 0;
}
.vux-table td:before,
.vux-table th:before {
  content: " ";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 1px;
  border-bottom: 1px solid #C7C7C7;
  color: #C7C7C7;
  transform-origin: 0 100%;
  transform: scaleY(0.5);
}
.vux-table.vux-table-no-content-bordered td:before {
  border-bottom-width: 0;
}
.vux-table.vux-table-no-content-bordered tr:last-child td:before {
  border-bottom-width: 1px;
}
.vux-table td:after,
.vux-table th:after {
  content: " ";
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  bottom: 0;
  border-right: 1px solid #C7C7C7;
  color: #C7C7C7;
  transform-origin: 100% 0;
  transform: scaleX(0.5);
}
.vux-table.vux-table-no-cell-bordered td:after,
.vux-table.vux-table-no-cell-bordered th:after {
  border-right-width: 0;
}
.vux-table tr td:last-child:after,
.vux-table tr th:last-child:after {
  border-right-width: 0;
}
.vux-table.vux-table-bordered tr td:last-child:after,
.vux-table.vux-table-bordered tr th:last-child:after {
  border-right-width: 1px;
}

.background[data-v-3deb5eca] {
  width: 100%;
  height: 667px;
  position: relative;
}
.background .title[data-v-3deb5eca] {
  height: 157px;
  background-color: rgb(51, 136, 236);
  display: -ms-flexbox;
  display: flex;
  border: 1px solid rgb(51, 136, 236);
}
.background .title .arrive-bkg[data-v-3deb5eca] {
  width: 50%;
  margin-top: 26px;
}
.background .title .arrive-bkg img[data-v-3deb5eca] {
  width: 114px;
  height: 114px;
  margin-left: 50%;
  transform: translate(-50%, 0);
}
.background .title .arrive-title[data-v-3deb5eca] {
  height: 157px;
  width: 50%;
  margin: 0 auto;
}
.background .title .arrive-title .item1[data-v-3deb5eca] {
  margin-top: 36px;
  font-size: 16px;
  color: rgb(255, 255, 255);
  font-family: PingFangSC-regular;
  text-align: left;
}
.background .title .arrive-title .item2[data-v-3deb5eca] {
  font-size: 14px;
  margin-top: 26px;
  color: rgb(255, 255, 255);
  font-family: PingFangSC-regular;
  text-align: left;
}
.background .arrive-main .applyShop[data-v-3deb5eca] {
  margin: 0 auto;
  width: 88.8%;
  height: 90px;
  display: -ms-flexbox;
  display: flex;
  margin-top: 12px;
  border-radius: 5px;
  color: rgb(16, 16, 16);
  font-size: 14px;
  text-align: center;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.4);
  border: 1px solid rgb(187, 187, 187);
  font-family: Arial;
}
.background .arrive-main .applyShop div[data-v-3deb5eca] {
  width: 50%;
  height: 90px;
  line-height: 90px;
  font-family: PingFangSC-regular;
  font-size: 14px;
}
.background .floatTop[data-v-3deb5eca] {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(246, 246, 246, 0.7);
  color: rgb(16, 16, 16);
  font-size: 14px;
  font-family: Arial;
  border: 1px solid rgb(187, 187, 187);
  top: 0;
  left: 0;
  z-index: 33;
}
.background .floatTop .selectType[data-v-3deb5eca] {
  height: 332px;
  width: 69.33%;
  margin-left: 50%;
  margin-top: 50%;
  transform: translate(-50%, 0);
  border: 1px solid rgb(187, 187, 187);
  border-radius: 5px;
  background-color: white;
  opacity: 1;
  line-height: 71px;
  text-align: center;
}
.background .floatTop .selectType .eatType[data-v-3deb5eca] {
  width: 100%;
  height: 71px;
  border-radius: 5px 5px 0px 0px;
  background-color: rgb(51, 136, 236);
  border: 1px solid rgb(187, 187, 187);
  color: rgb(255, 255, 255);
}
.background .floatTop .selectType .adminisstration[data-v-3deb5eca], .background .floatTop .selectType .business[data-v-3deb5eca] {
  text-align: center;
  border: 1px solid rgb(51, 136, 236);
  height: 42px;
  width: 46.54%;
  font-family: Arial;
  color: rgb(16, 16, 16);
  font-size: 12px;
  border-radius: 5px;
  margin: 12% auto;
  line-height: 42px;
}
.vux-swipeout-item {
  position: relative;
}
.vux-swipeout-button-box {
  position: absolute;
  top: 1px;
  right: 0;
  bottom: 1px;
  left: 0;
  font-size: 0;
  text-align: right;
}
.vux-swipeout-button-box > div {
  height: 100%;
}
.vux-swipeout-button {
  height: 100%;
  text-align: center;
  font-size: 14px;
  color: #FFF;
  border: none;
}
.vux-swipeout-content {
  position: relative;
  /*padding: 20px 15px;*/
  background: #FFF;
}
.vux-swipeout-content.vux-swipeout-content-animated {
  transition: transform 0.2s;
}

/*.standard-checkout-warning {*/
  /*width: 100%;*/
  /*height:20px;*/
  /*background: #fff;*/
  /*position: relative;*/
  /*margin-top: 10px;*/
  /*font-size: 11px;*/
  /*color: #fff;*/
  /*line-height: 20px;*/
/*}*/
/*.standard-checkout-warning span {*/
  /*display: block;*/
  /*height: 100%;*/
  /*padding-left: 10px;*/
  /*display: block;*/
  /*text-overflow: ellipsis;*/
  /*overflow: hidden;*/
  /*white-space: nowrap;*/
  /*border-radius: 4px 4px 0 0;*/
  /*background: rgba(250,100,120,.8);*/
/*}*/
/*.standard-checkout-warning span.weak {*/
  /*background: rgba(30,120,200,.8);*/
/*}*/

.delete-button{
  margin-top: 1px;
  height: 95%;
}
/**
* actionsheet
*/
/**
* en: primary type text color of menu item
* zh-CN: 菜单项primary类型的文本颜色
*/
/**
* en: warn type text color of menu item
* zh-CN: 菜单项warn类型的文本颜色
*/
/**
* en: default type text color of menu item
* zh-CN: 菜单项default类型的文本颜色
*/
/**
* en: disabled type text color of menu item
* zh-CN: 菜单项disabled类型的文本颜色
*/
/**
* datetime
*/
/**
* tabbar
*/
/**
* tab
*/
/**
* dialog
*/
/**
* en: title and content's padding-left and padding-right
* zh-CN: 标题及内容区域的 padding-left 和 padding-right
*/
/**
* x-number
*/
/**
* checkbox
*/
/**
* check-icon
*/
/**
* Cell
*/
/**
* Mask
*/
/**
* Range
*/
/**
* Tabbar
*/
/**
* Header
*/
/**
* Timeline
*/
/**
* Switch
*/
/**
* Button
*/
/**
* en: border radius
* zh-CN: 圆角边框
*/
/**
* en: font color
* zh-CN: 字体颜色
*/
/**
* en: margin-top value between previous button, not works when there is only one button
* zh-CN: 与相邻按钮的 margin-top 间隙，只有一个按钮时不生效
*/
/**
* en: button height
* zh-CN: 按钮高度
*/
/**
* en: the font color in disabled
* zh-CN: disabled状态下的字体颜色
*/
/**
* en: the font color in disabled
* zh-CN: disabled状态下的字体颜色
*/
/**
* en: font size
* zh-CN: 字体大小
*/
/**
* en: the font size of the mini type
* zh-CN: mini类型的字体大小
*/
/**
* en: the line height of the mini type
* zh-CN: mini类型的行高
*/
/**
* en: the background color of the warn type
* zh-CN: warn类型的背景颜色
*/
/**
* en: the background color of the warn type in active
* zh-CN: active状态下，warn类型的背景颜色
*/
/**
* en: the background color of the warn type in disabled
* zh-CN: disabled状态下，warn类型的背景颜色
*/
/**
* en: the background color of the default type
* zh-CN: default类型的背景颜色
*/
/**
* en: the font color of the default type
* zh-CN: default类型的字体颜色
*/
/**
* en: the background color of the default type in active
* zh-CN: active状态下，default类型的背景颜色
*/
/**
* en: the font color of the default type in disabled
* zh-CN: disabled状态下，default类型的字体颜色
*/
/**
* en: the background color of the default type in disabled
* zh-CN: disabled状态下，default类型的背景颜色
*/
/**
* en: the font color of the default type in active
* zh-CN: active状态下，default类型的字体颜色
*/
/**
* en: the background color of the primary type
* zh-CN: primary类型的背景颜色
*/
/**
* en: the background color of the primary type in active
* zh-CN: active状态下，primary类型的背景颜色
*/
/**
* en: the background color of the primary type in disabled
* zh-CN: disabled状态下，primary类型的背景颜色
*/
/**
* en: the font color of the plain primary type
* zh-CN: plain的primary类型的字体颜色
*/
/**
* en: the border color of the plain primary type
* zh-CN: plain的primary类型的边框颜色
*/
/**
* en: the font color of the plain primary type in active
* zh-CN: active状态下，plain的primary类型的字体颜色
*/
/**
* en: the border color of the plain primary type in active
* zh-CN: active状态下，plain的primary类型的边框颜色
*/
/**
* en: the font color of the plain default type
* zh-CN: plain的default类型的字体颜色
*/
/**
* en: the border color of the plain default type
* zh-CN: plain的default类型的边框颜色
*/
/**
* en: the font color of the plain default type in active
* zh-CN: active状态下，plain的default类型的字体颜色
*/
/**
* en: the border color of the plain default type in active
* zh-CN: active状态下，plain的default类型的边框颜色
*/
/**
* en: the font color of the plain warn type
* zh-CN: plain的warn类型的字体颜色
*/
/**
* en: the border color of the plain warn type
* zh-CN: plain的warn类型的边框颜色
*/
/**
* en: the font color of the plain warn type in active
* zh-CN: active状态下，plain的warn类型的字体颜色
*/
/**
* en: the border color of the plain warn type in active
* zh-CN: active状态下，plain的warn类型的边框颜色
*/
/**
* swipeout
*/
/**
* Cell
*/
/**
* Badge
*/
/**
* en: badge background color
* zh-CN: badge的背景颜色
*/
/**
* Popover
*/
/**
* Button tab
*/
/**
* en: not used
* zh-CN: 未被使用
*/
/**
* en: border radius color
* zh-CN: 圆角边框的半径
*/
/**
* en: border color
* zh-CN: 边框的颜色
*/
/**
* en: not used
* zh-CN: 默认状态下圆角边框的颜色
*/
/**
* en: not used
* zh-CN: 未被使用
*/
/**
* en: default background color
* zh-CN: 默认状态下的背景颜色
*/
/**
* en: selected background color
* zh-CN: 选中状态下的背景颜色
*/
/**
* en: not used
* zh-CN: 未被使用
*/
/* alias */
/**
* en: not used
* zh-CN: 未被使用
*/
/**
* en: default text color
* zh-CN: 默认状态下的文本颜色
*/
/**
* en: height
* zh-CN: 元素高度
*/
/**
* en: line height
* zh-CN: 元素行高
*/
/**
* Swiper
*/
/**
* checklist
*/
/**
* popup-picker
*/
/**
* popup
*/
/**
* popup-header
*/
/**
* form-preview
*/
/**
* sticky
*/
/**
* group
*/
/**
* en: margin-top of title
* zh-CN: 标题的margin-top
*/
/**
* en: margin-bottom of title
* zh-CN: 标题的margin-bottom
*/
/**
* en: margin-top of footer title
* zh-CN: 底部标题的margin-top
*/
/**
* en: margin-bottom of footer title
* zh-CN: 底部标题的margin-bottom
*/
/**
* toast
*/
/**
* en: text size of content
* zh-CN: 内容文本大小
*/
/**
* en: default top
* zh-CN: 默认状态下距离顶部的高度
*/
/**
* en: position top
* zh-CN: 顶部显示的高度
*/
/**
* en: position bottom
* zh-CN: 底部显示的高度
*/
/**
* en: z-index
* zh-CN: z-index
*/
/**
* icon
*/
/**
* calendar
*/
/**
* en: forward and backward arrows color
* zh-CN: 前进后退的箭头颜色
*/
/**
* en: text color of week highlight
* zh-CN: 周末高亮的文本颜色
*/
/**
* en: background color when selected
* zh-CN: 选中时的背景颜色
*/
/**
* en: text color when disabled
* zh-CN: 禁用时的文本颜色
*/
/**
* en: text color of today
* zh-CN: 今天的文本颜色
*/
/**
* en: font size of cell
* zh-CN: 单元格的字号
*/
/**
* en: background color
* zh-CN: 背景颜色
*/
/**
* en: size of date cell
* zh-CN: 日期单元格尺寸大小
*/
/**
* en: line height of date cell
* zh-CN: 日期单元格的行高
*/
/**
* en: text color of header
* zh-CN: 头部的文本颜色
*/
/**
* week-calendar
*/
/**
* search
*/
/**
* en: text color of cancel button
* zh-CN: 取消按钮文本颜色
*/
/**
* en: background color
* zh-CN: 背景颜色
*/
/**
* en: text color of placeholder
* zh-CN: placeholder文本颜色
*/
/**
* radio
*/
/**
* en: checked icon color
* zh-CN: 选中状态的图标颜色
*/
/**
* loadmore
*/
/**
* en: not used
* zh-CN: 未被使用
*/
/**
* loading
*/
/**
* en: z-index
* zh-CN: z-index
*/
.dp-container.vux-datetime-view {
  position: static;
  transition: none;
}
.dp-container.vux-datetime-view .dp-header {
  display: none;
}
.vux-datetime-clear {
  text-align: center;
}
.scroller-component {
  display: block;
  position: relative;
  height: 238px;
  overflow: hidden;
  width: 100%;
}
.scroller-content {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: -1;
}
.scroller-mask {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  margin: 0 auto;
  width: 100%;
  z-index: 3;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.6)), linear-gradient(to top, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.6));
  background-position: top, bottom;
  background-size: 100% 102px;
  background-repeat: no-repeat;
}
.scroller-item {
  text-align: center;
  font-size: 16px;
  height: 34px;
  line-height: 34px;
  color: #000;
}
.scroller-indicator {
  width: 100%;
  height: 34px;
  position: absolute;
  left: 0;
  top: 102px;
  z-index: 3;
  background-image: linear-gradient(to bottom, #d0d0d0, #d0d0d0, transparent, transparent), linear-gradient(to top, #d0d0d0, #d0d0d0, transparent, transparent);
  background-position: top, bottom;
  background-size: 100% 1px;
  background-repeat: no-repeat;
}
.dp-container {
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 10000;
  background-color: #fff;
  display: none;
  transition: transform 0.3s ease;
  transform: translateY(100%);
}
.dp-mask {
  z-index: 998;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 0;
  transition: opacity 0.2s ease-in;
  background-color: #000;
  z-index: 9999;
}
.dp-header {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  box-align: center;
  -ms-flex-align: center;
      align-items: center;
  background-image: linear-gradient(to bottom, #e7e7e7, #e7e7e7, transparent, transparent);
  background-position: bottom;
  background-size: 100% 1px;
  background-repeat: no-repeat;
}
.dp-header .dp-item {
  color: #04BE02;
  font-size: 16px;
  height: 44px;
  line-height: 44px;
  cursor: pointer;
}
.dp-header .dp-item.dp-left {
  color: #828282;
}
.dp-header .dp-item.dp-right {
  color: #04BE02;
}
.dp-content {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  box-align: center;
  -ms-flex-align: center;
      align-items: center;
  padding: 10px 0;
}
.dp-header .dp-item,
.dp-content .dp-item {
  box-sizing: border-box;
  -ms-flex: 1;
      flex: 1;
}
.vux-datetime-cancel {
  text-align: left;
  padding-left: 15px;
}
.vux-datetime-confirm {
  text-align: right;
  padding-right: 15px;
}
.vux-datetime {
  color: #000;
  text-decoration: none;
}
.vux-datetime .vux-input-icon {
  float: right;
}
.vux-cell-primary {
  -ms-flex: 1;
      flex: 1;
}
/**
* actionsheet
*/
/**
* en: primary type text color of menu item
* zh-CN: 菜单项primary类型的文本颜色
*/
/**
* en: warn type text color of menu item
* zh-CN: 菜单项warn类型的文本颜色
*/
/**
* en: default type text color of menu item
* zh-CN: 菜单项default类型的文本颜色
*/
/**
* en: disabled type text color of menu item
* zh-CN: 菜单项disabled类型的文本颜色
*/
/**
* datetime
*/
/**
* tabbar
*/
/**
* tab
*/
/**
* dialog
*/
/**
* en: title and content's padding-left and padding-right
* zh-CN: 标题及内容区域的 padding-left 和 padding-right
*/
/**
* x-number
*/
/**
* checkbox
*/
/**
* check-icon
*/
/**
* Cell
*/
/**
* Mask
*/
/**
* Range
*/
/**
* Tabbar
*/
/**
* Header
*/
/**
* Timeline
*/
/**
* Switch
*/
/**
* Button
*/
/**
* en: border radius
* zh-CN: 圆角边框
*/
/**
* en: font color
* zh-CN: 字体颜色
*/
/**
* en: margin-top value between previous button, not works when there is only one button
* zh-CN: 与相邻按钮的 margin-top 间隙，只有一个按钮时不生效
*/
/**
* en: button height
* zh-CN: 按钮高度
*/
/**
* en: the font color in disabled
* zh-CN: disabled状态下的字体颜色
*/
/**
* en: the font color in disabled
* zh-CN: disabled状态下的字体颜色
*/
/**
* en: font size
* zh-CN: 字体大小
*/
/**
* en: the font size of the mini type
* zh-CN: mini类型的字体大小
*/
/**
* en: the line height of the mini type
* zh-CN: mini类型的行高
*/
/**
* en: the background color of the warn type
* zh-CN: warn类型的背景颜色
*/
/**
* en: the background color of the warn type in active
* zh-CN: active状态下，warn类型的背景颜色
*/
/**
* en: the background color of the warn type in disabled
* zh-CN: disabled状态下，warn类型的背景颜色
*/
/**
* en: the background color of the default type
* zh-CN: default类型的背景颜色
*/
/**
* en: the font color of the default type
* zh-CN: default类型的字体颜色
*/
/**
* en: the background color of the default type in active
* zh-CN: active状态下，default类型的背景颜色
*/
/**
* en: the font color of the default type in disabled
* zh-CN: disabled状态下，default类型的字体颜色
*/
/**
* en: the background color of the default type in disabled
* zh-CN: disabled状态下，default类型的背景颜色
*/
/**
* en: the font color of the default type in active
* zh-CN: active状态下，default类型的字体颜色
*/
/**
* en: the background color of the primary type
* zh-CN: primary类型的背景颜色
*/
/**
* en: the background color of the primary type in active
* zh-CN: active状态下，primary类型的背景颜色
*/
/**
* en: the background color of the primary type in disabled
* zh-CN: disabled状态下，primary类型的背景颜色
*/
/**
* en: the font color of the plain primary type
* zh-CN: plain的primary类型的字体颜色
*/
/**
* en: the border color of the plain primary type
* zh-CN: plain的primary类型的边框颜色
*/
/**
* en: the font color of the plain primary type in active
* zh-CN: active状态下，plain的primary类型的字体颜色
*/
/**
* en: the border color of the plain primary type in active
* zh-CN: active状态下，plain的primary类型的边框颜色
*/
/**
* en: the font color of the plain default type
* zh-CN: plain的default类型的字体颜色
*/
/**
* en: the border color of the plain default type
* zh-CN: plain的default类型的边框颜色
*/
/**
* en: the font color of the plain default type in active
* zh-CN: active状态下，plain的default类型的字体颜色
*/
/**
* en: the border color of the plain default type in active
* zh-CN: active状态下，plain的default类型的边框颜色
*/
/**
* en: the font color of the plain warn type
* zh-CN: plain的warn类型的字体颜色
*/
/**
* en: the border color of the plain warn type
* zh-CN: plain的warn类型的边框颜色
*/
/**
* en: the font color of the plain warn type in active
* zh-CN: active状态下，plain的warn类型的字体颜色
*/
/**
* en: the border color of the plain warn type in active
* zh-CN: active状态下，plain的warn类型的边框颜色
*/
/**
* swipeout
*/
/**
* Cell
*/
/**
* Badge
*/
/**
* en: badge background color
* zh-CN: badge的背景颜色
*/
/**
* Popover
*/
/**
* Button tab
*/
/**
* en: not used
* zh-CN: 未被使用
*/
/**
* en: border radius color
* zh-CN: 圆角边框的半径
*/
/**
* en: border color
* zh-CN: 边框的颜色
*/
/**
* en: not used
* zh-CN: 默认状态下圆角边框的颜色
*/
/**
* en: not used
* zh-CN: 未被使用
*/
/**
* en: default background color
* zh-CN: 默认状态下的背景颜色
*/
/**
* en: selected background color
* zh-CN: 选中状态下的背景颜色
*/
/**
* en: not used
* zh-CN: 未被使用
*/
/* alias */
/**
* en: not used
* zh-CN: 未被使用
*/
/**
* en: default text color
* zh-CN: 默认状态下的文本颜色
*/
/**
* en: height
* zh-CN: 元素高度
*/
/**
* en: line height
* zh-CN: 元素行高
*/
/**
* Swiper
*/
/**
* checklist
*/
/**
* popup-picker
*/
/**
* popup
*/
/**
* popup-header
*/
/**
* form-preview
*/
/**
* sticky
*/
/**
* group
*/
/**
* en: margin-top of title
* zh-CN: 标题的margin-top
*/
/**
* en: margin-bottom of title
* zh-CN: 标题的margin-bottom
*/
/**
* en: margin-top of footer title
* zh-CN: 底部标题的margin-top
*/
/**
* en: margin-bottom of footer title
* zh-CN: 底部标题的margin-bottom
*/
/**
* toast
*/
/**
* en: text size of content
* zh-CN: 内容文本大小
*/
/**
* en: default top
* zh-CN: 默认状态下距离顶部的高度
*/
/**
* en: position top
* zh-CN: 顶部显示的高度
*/
/**
* en: position bottom
* zh-CN: 底部显示的高度
*/
/**
* en: z-index
* zh-CN: z-index
*/
/**
* icon
*/
/**
* calendar
*/
/**
* en: forward and backward arrows color
* zh-CN: 前进后退的箭头颜色
*/
/**
* en: text color of week highlight
* zh-CN: 周末高亮的文本颜色
*/
/**
* en: background color when selected
* zh-CN: 选中时的背景颜色
*/
/**
* en: text color when disabled
* zh-CN: 禁用时的文本颜色
*/
/**
* en: text color of today
* zh-CN: 今天的文本颜色
*/
/**
* en: font size of cell
* zh-CN: 单元格的字号
*/
/**
* en: background color
* zh-CN: 背景颜色
*/
/**
* en: size of date cell
* zh-CN: 日期单元格尺寸大小
*/
/**
* en: line height of date cell
* zh-CN: 日期单元格的行高
*/
/**
* en: text color of header
* zh-CN: 头部的文本颜色
*/
/**
* week-calendar
*/
/**
* search
*/
/**
* en: text color of cancel button
* zh-CN: 取消按钮文本颜色
*/
/**
* en: background color
* zh-CN: 背景颜色
*/
/**
* en: text color of placeholder
* zh-CN: placeholder文本颜色
*/
/**
* radio
*/
/**
* en: checked icon color
* zh-CN: 选中状态的图标颜色
*/
/**
* loadmore
*/
/**
* en: not used
* zh-CN: 未被使用
*/
/**
* loading
*/
/**
* en: z-index
* zh-CN: z-index
*/
.weui-cell_access {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  color: inherit;
}
.weui-cell_access:active {
  background-color: #ECECEC;
}
.weui-cell_access .weui-cell__ft {
  padding-right: 13px;
  position: relative;
}
.weui-cell_access .weui-cell__ft:after {
  content: " ";
  display: inline-block;
  height: 6px;
  width: 6px;
  border-width: 2px 2px 0 0;
  border-color: #C8C8CD;
  border-style: solid;
  transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
  position: relative;
  top: -2px;
  position: absolute;
  top: 50%;
  margin-top: -4px;
  right: 2px;
}
.weui-cell_link {
  color: #586C94;
  font-size: 14px;
}
.weui-cell_link.weui-cell:first-child:before {
  display: block;
}
.weui-cell_access.vux-cell-box {
  padding-right: 13px;
  position: relative;
}
.weui-cell_access.vux-cell-box:after {
  content: " ";
  display: inline-block;
  height: 6px;
  width: 6px;
  border-width: 2px 2px 0 0;
  border-color: #C8C8CD;
  border-style: solid;
  transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
  position: relative;
  top: -2px;
  position: absolute;
  top: 50%;
  margin-top: -4px;
  right: 17px;
}
.weui-cells {
  margin-top: 1.17647059em;
  background-color: #FFFFFF;
  line-height: 1.41176471;
  font-size: 17px;
  overflow: hidden;
  position: relative;
}
.weui-cells:before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 1px;
  border-top: 1px solid #D9D9D9;
  color: #D9D9D9;
  transform-origin: 0 0;
  transform: scaleY(0.5);
}
.weui-cells:after {
  content: " ";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 1px;
  border-bottom: 1px solid #D9D9D9;
  color: #D9D9D9;
  transform-origin: 0 100%;
  transform: scaleY(0.5);
}
.weui-cells__title {
  margin-top: 0.77em;
  margin-bottom: 0.3em;
  padding-left: 15px;
  padding-right: 15px;
  color: #999999;
  font-size: 14px;
}
.weui-cells__title + .weui-cells {
  margin-top: 0;
}
.weui-cells__tips {
  margin-top: .3em;
  color: #999999;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 14px;
}
.weui-cell {
  padding: 10px 15px;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.weui-cell:before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 1px;
  border-top: 1px solid #D9D9D9;
  color: #D9D9D9;
  transform-origin: 0 0;
  transform: scaleY(0.5);
  left: 15px;
}
.weui-cell:first-child:before {
  display: none;
}
.weui-cell_primary {
  -ms-flex-align: start;
      align-items: flex-start;
}
.weui-cell__bd {
  -ms-flex: 1;
      flex: 1;
}
.weui-cell__ft {
  text-align: right;
  color: #999999;
}
.vux-cell-justify {
  height: 1.41176471em;
}
.vux-cell-justify.vux-cell-justify:after {
  content: ".";
  display: inline-block;
  width: 100%;
  overflow: hidden;
  height: 0;
}
/**
* http://www.zhangxinxu.com/wordpress/2015/01/tips-blank-character-chinese-align/
*/
.vux-blank-half:before {
  content: '\2002';
  speak: none;
}
.vux-blank-full:before {
  content: '\2003';
  speak: none;
}
.vux-no-group-title {
  margin-top: 0.77em;
}
.vux-group-footer-title.weui-cells__title {
  margin-top: 0.3em;
  margin-bottom: 0.77em;
  padding-top: 0;
  font-size: 12px;
}
/* global config for group items */
.vux-cell-value {
  color: #999;
}
.vux-cell-placeholder {
  color: #999;
}

.vux-label-desc {
  font-size:14px;
  color:#666;
}

.vux-fade-enter-active,
.vux-fade-leave-active {
  opacity: 1;
  transition: opacity linear 0.2s;
}
.vux-fade-enter,
.vux-fade-leave-to {
  opacity: 0;
}
.vux-dialog-enter-active {
  animation: vux-dialog-in 0.5s;
}
.vux-dialog-leave-active {
  animation: vux-dialog-out 0.3s;
}
@keyframes vux-dialog-in {
0% {
    transform: scale(1.185);
    opacity: 0;
}
100% {
    transform: scale(1);
    opacity: 1;
}
}
@keyframes vux-dialog-out {
0% {
    transform: scale(1);
    opacity: 1;
}
100% {
    transform: scale(0.85);
    opacity: 0;
}
}
.vux-mask-enter,
.vux-mask-leave-active {
  opacity: 0;
}
.vux-mask-leave-active,
.vux-mask-enter-active {
  transition: opacity 300ms;
}
/**
* actionsheet
*/
/**
* en: primary type text color of menu item
* zh-CN: 菜单项primary类型的文本颜色
*/
/**
* en: warn type text color of menu item
* zh-CN: 菜单项warn类型的文本颜色
*/
/**
* en: default type text color of menu item
* zh-CN: 菜单项default类型的文本颜色
*/
/**
* en: disabled type text color of menu item
* zh-CN: 菜单项disabled类型的文本颜色
*/
/**
* datetime
*/
/**
* tabbar
*/
/**
* tab
*/
/**
* dialog
*/
/**
* en: title and content's padding-left and padding-right
* zh-CN: 标题及内容区域的 padding-left 和 padding-right
*/
/**
* x-number
*/
/**
* checkbox
*/
/**
* check-icon
*/
/**
* Cell
*/
/**
* Mask
*/
/**
* Range
*/
/**
* Tabbar
*/
/**
* Header
*/
/**
* Timeline
*/
/**
* Switch
*/
/**
* Button
*/
/**
* en: border radius
* zh-CN: 圆角边框
*/
/**
* en: font color
* zh-CN: 字体颜色
*/
/**
* en: margin-top value between previous button, not works when there is only one button
* zh-CN: 与相邻按钮的 margin-top 间隙，只有一个按钮时不生效
*/
/**
* en: button height
* zh-CN: 按钮高度
*/
/**
* en: the font color in disabled
* zh-CN: disabled状态下的字体颜色
*/
/**
* en: the font color in disabled
* zh-CN: disabled状态下的字体颜色
*/
/**
* en: font size
* zh-CN: 字体大小
*/
/**
* en: the font size of the mini type
* zh-CN: mini类型的字体大小
*/
/**
* en: the line height of the mini type
* zh-CN: mini类型的行高
*/
/**
* en: the background color of the warn type
* zh-CN: warn类型的背景颜色
*/
/**
* en: the background color of the warn type in active
* zh-CN: active状态下，warn类型的背景颜色
*/
/**
* en: the background color of the warn type in disabled
* zh-CN: disabled状态下，warn类型的背景颜色
*/
/**
* en: the background color of the default type
* zh-CN: default类型的背景颜色
*/
/**
* en: the font color of the default type
* zh-CN: default类型的字体颜色
*/
/**
* en: the background color of the default type in active
* zh-CN: active状态下，default类型的背景颜色
*/
/**
* en: the font color of the default type in disabled
* zh-CN: disabled状态下，default类型的字体颜色
*/
/**
* en: the background color of the default type in disabled
* zh-CN: disabled状态下，default类型的背景颜色
*/
/**
* en: the font color of the default type in active
* zh-CN: active状态下，default类型的字体颜色
*/
/**
* en: the background color of the primary type
* zh-CN: primary类型的背景颜色
*/
/**
* en: the background color of the primary type in active
* zh-CN: active状态下，primary类型的背景颜色
*/
/**
* en: the background color of the primary type in disabled
* zh-CN: disabled状态下，primary类型的背景颜色
*/
/**
* en: the font color of the plain primary type
* zh-CN: plain的primary类型的字体颜色
*/
/**
* en: the border color of the plain primary type
* zh-CN: plain的primary类型的边框颜色
*/
/**
* en: the font color of the plain primary type in active
* zh-CN: active状态下，plain的primary类型的字体颜色
*/
/**
* en: the border color of the plain primary type in active
* zh-CN: active状态下，plain的primary类型的边框颜色
*/
/**
* en: the font color of the plain default type
* zh-CN: plain的default类型的字体颜色
*/
/**
* en: the border color of the plain default type
* zh-CN: plain的default类型的边框颜色
*/
/**
* en: the font color of the plain default type in active
* zh-CN: active状态下，plain的default类型的字体颜色
*/
/**
* en: the border color of the plain default type in active
* zh-CN: active状态下，plain的default类型的边框颜色
*/
/**
* en: the font color of the plain warn type
* zh-CN: plain的warn类型的字体颜色
*/
/**
* en: the border color of the plain warn type
* zh-CN: plain的warn类型的边框颜色
*/
/**
* en: the font color of the plain warn type in active
* zh-CN: active状态下，plain的warn类型的字体颜色
*/
/**
* en: the border color of the plain warn type in active
* zh-CN: active状态下，plain的warn类型的边框颜色
*/
/**
* swipeout
*/
/**
* Cell
*/
/**
* Badge
*/
/**
* en: badge background color
* zh-CN: badge的背景颜色
*/
/**
* Popover
*/
/**
* Button tab
*/
/**
* en: not used
* zh-CN: 未被使用
*/
/**
* en: border radius color
* zh-CN: 圆角边框的半径
*/
/**
* en: border color
* zh-CN: 边框的颜色
*/
/**
* en: not used
* zh-CN: 默认状态下圆角边框的颜色
*/
/**
* en: not used
* zh-CN: 未被使用
*/
/**
* en: default background color
* zh-CN: 默认状态下的背景颜色
*/
/**
* en: selected background color
* zh-CN: 选中状态下的背景颜色
*/
/**
* en: not used
* zh-CN: 未被使用
*/
/* alias */
/**
* en: not used
* zh-CN: 未被使用
*/
/**
* en: default text color
* zh-CN: 默认状态下的文本颜色
*/
/**
* en: height
* zh-CN: 元素高度
*/
/**
* en: line height
* zh-CN: 元素行高
*/
/**
* Swiper
*/
/**
* checklist
*/
/**
* popup-picker
*/
/**
* popup
*/
/**
* popup-header
*/
/**
* form-preview
*/
/**
* sticky
*/
/**
* group
*/
/**
* en: margin-top of title
* zh-CN: 标题的margin-top
*/
/**
* en: margin-bottom of title
* zh-CN: 标题的margin-bottom
*/
/**
* en: margin-top of footer title
* zh-CN: 底部标题的margin-top
*/
/**
* en: margin-bottom of footer title
* zh-CN: 底部标题的margin-bottom
*/
/**
* toast
*/
/**
* en: text size of content
* zh-CN: 内容文本大小
*/
/**
* en: default top
* zh-CN: 默认状态下距离顶部的高度
*/
/**
* en: position top
* zh-CN: 顶部显示的高度
*/
/**
* en: position bottom
* zh-CN: 底部显示的高度
*/
/**
* en: z-index
* zh-CN: z-index
*/
/**
* icon
*/
/**
* calendar
*/
/**
* en: forward and backward arrows color
* zh-CN: 前进后退的箭头颜色
*/
/**
* en: text color of week highlight
* zh-CN: 周末高亮的文本颜色
*/
/**
* en: background color when selected
* zh-CN: 选中时的背景颜色
*/
/**
* en: text color when disabled
* zh-CN: 禁用时的文本颜色
*/
/**
* en: text color of today
* zh-CN: 今天的文本颜色
*/
/**
* en: font size of cell
* zh-CN: 单元格的字号
*/
/**
* en: background color
* zh-CN: 背景颜色
*/
/**
* en: size of date cell
* zh-CN: 日期单元格尺寸大小
*/
/**
* en: line height of date cell
* zh-CN: 日期单元格的行高
*/
/**
* en: text color of header
* zh-CN: 头部的文本颜色
*/
/**
* week-calendar
*/
/**
* search
*/
/**
* en: text color of cancel button
* zh-CN: 取消按钮文本颜色
*/
/**
* en: background color
* zh-CN: 背景颜色
*/
/**
* en: text color of placeholder
* zh-CN: placeholder文本颜色
*/
/**
* radio
*/
/**
* en: checked icon color
* zh-CN: 选中状态的图标颜色
*/
/**
* loadmore
*/
/**
* en: not used
* zh-CN: 未被使用
*/
/**
* loading
*/
/**
* en: z-index
* zh-CN: z-index
*/
.weui-mask {
  position: fixed;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}
.weui-mask_transparent {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
@font-face {
  font-weight: normal;
  font-style: normal;
  font-family: "weui";
  src: url('data:application/octet-stream;base64,AAEAAAALAIAAAwAwR1NVQrD+s+0AAAE4AAAAQk9TLzJAKEx+AAABfAAAAFZjbWFw65cFHQAAAhwAAAJQZ2x5ZvCRR/EAAASUAAAKtGhlYWQMPROtAAAA4AAAADZoaGVhCCwD+gAAALwAAAAkaG10eEJo//8AAAHUAAAASGxvY2EYqhW4AAAEbAAAACZtYXhwASEAVQAAARgAAAAgbmFtZeNcHtgAAA9IAAAB5nBvc3T6bLhLAAARMAAAAOYAAQAAA+gAAABaA+j/////A+kAAQAAAAAAAAAAAAAAAAAAABIAAQAAAAEAACbZbxtfDzz1AAsD6AAAAADUm2dvAAAAANSbZ2///wAAA+kD6gAAAAgAAgAAAAAAAAABAAAAEgBJAAUAAAAAAAIAAAAKAAoAAAD/AAAAAAAAAAEAAAAKAB4ALAABREZMVAAIAAQAAAAAAAAAAQAAAAFsaWdhAAgAAAABAAAAAQAEAAQAAAABAAgAAQAGAAAAAQAAAAAAAQOwAZAABQAIAnoCvAAAAIwCegK8AAAB4AAxAQIAAAIABQMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUGZFZABA6gHqEQPoAAAAWgPqAAAAAAABAAAAAAAAAAAAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+j//wPoAAAD6AAAAAAABQAAAAMAAAAsAAAABAAAAXQAAQAAAAAAbgADAAEAAAAsAAMACgAAAXQABABCAAAABAAEAAEAAOoR//8AAOoB//8AAAABAAQAAAABAAIAAwAEAAUABgAHAAgACQAKAAsADAANAA4ADwAQABEAAAEGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAANwAAAAAAAAAEQAA6gEAAOoBAAAAAQAA6gIAAOoCAAAAAgAA6gMAAOoDAAAAAwAA6gQAAOoEAAAABAAA6gUAAOoFAAAABQAA6gYAAOoGAAAABgAA6gcAAOoHAAAABwAA6ggAAOoIAAAACAAA6gkAAOoJAAAACQAA6goAAOoKAAAACgAA6gsAAOoLAAAACwAA6gwAAOoMAAAADAAA6g0AAOoNAAAADQAA6g4AAOoOAAAADgAA6g8AAOoPAAAADwAA6hAAAOoQAAAAEAAA6hEAAOoRAAAAEQAAAAAARgCMANIBJAF4AcQCMgJgAqgC/ANIA6YD/gROBKAE9AVaAAAAAgAAAAADrwOtABQAKQAAASIHBgcGFBcWFxYyNzY3NjQnJicmAyInJicmNDc2NzYyFxYXFhQHBgcGAfV4Z2Q7PDw7ZGfwZmQ7PDw7ZGZ4bl5bNjc3Nlte215bNjc3NlteA608O2Rn8GdjOzw8O2Nn8GdkOzz8rzc1W17bXlw1Nzc1XF7bXls1NwAAAAACAAAAAAOzA7MAFwAtAAABIgcGBwYVFBcWFxYzMjc2NzY1NCcmJyYTBwYiLwEmNjsBETQ2OwEyFhURMzIWAe52Z2Q7PT07ZGd2fGpmOz4+O2ZpIXYOKA52Dg0XXQsHJgcLXRcNA7M+O2ZqfHZnZDs9PTtkZ3Z9aWY7Pv3wmhISmhIaARcICwsI/ukaAAMAAAAAA+UD5QAXACMALAAAASIHBgcGFRQXFhcWMzI3Njc2NTQnJicmAxQrASI1AzQ7ATIHJyImNDYyFhQGAe6Ecm9BRERBb3KEiXZxQkREQnF1aQIxAwgCQgMBIxIZGSQZGQPkREJxdomEcm9BRERBb3KEinVxQkT9HQICAWICAjEZIxkZIxkAAAAAAgAAAAADsQPkABkALgAAAQYHBgc2BREUFxYXFhc2NzY3NjURJBcmJyYTAQYvASY/ATYyHwEWNjclNjIfARYB9VVVQk+v/tFHPmxebGxdbT1I/tGvT0JVo/7VBASKAwMSAQUBcQEFAgESAgUBEQQD4xMYEhk3YP6sjnVlSD8cHD9IZXWOAVRgNxkSGP62/tkDA48EBBkCAVYCAQHlAQIQBAAAAAADAAAAAAOxA+QAGwAqADMAAAEGBwYHBgcGNxEUFxYXFhc2NzY3NjURJBcmJyYHMzIWFQMUBisBIicDNDYTIiY0NjIWFAYB9UFBODssO38gRz5sXmxsXW09SP7YqFBBVW80BAYMAwImBQELBh4PFhYeFRUD5A8SDhIOEikK/q2PdWRJPh0dPklkdY8BU141GRIY/AYE/sYCAwUBOgQG/kAVHxUVHxUAAAACAAAAAAPkA+QAFwAtAAABIgcGBwYVFBcWFxYzMjc2NzY1NCcmJyYTAQYiLwEmPwE2Mh8BFjI3ATYyHwEWAe6Ecm9BQ0NCbnODiXVxQkREQnF1kf6gAQUBowMDFgEFAYUCBQEBQwIFARUEA+NEQnF1iYNzbkJDQ0FvcoSJdXFCRP6j/qUBAagEBR4CAWYBAQENAgIVBAAAAAQAAAAAA68DrQAUACkAPwBDAAABIgcGBwYUFxYXFjI3Njc2NCcmJyYDIicmJyY0NzY3NjIXFhcWFAcGBwYTBQ4BLwEmBg8BBhYfARYyNwE+ASYiFzAfAQH1eGdkOzw8O2Rn8GZkOzw8O2RmeG5eWzY3NzZbXtteWzY3NzZbXmn+9gYSBmAGDwUDBQEGfQUQBgElBQELEBUBAQOtPDtkZ/BnYzs8PDtjZ/BnZDs8/K83NVte215cNTc3NVxe215bNTcCJt0FAQVJBQIGBAcRBoAGBQEhBQ8LBAEBAAABAAAAAAO7AzoAFwAAEy4BPwE+AR8BFjY3ATYWFycWFAcBBiInPQoGBwUHGgzLDCELAh0LHwsNCgr9uQoeCgGzCyEOCw0HCZMJAQoBvgkCCg0LHQv9sQsKAAAAAAIAAAAAA+UD5gAXACwAAAEiBwYHBhUUFxYXFjMyNzY3NjU0JyYnJhMHBi8BJicmNRM0NjsBMhYVExceAQHvhHJvQUNDQm5zg4l1cUJEREJxdVcQAwT6AwIEEAMCKwIDDsUCAQPlREJxdYmDc25CQ0NBb3KEiXVxQkT9VhwEAncCAgMGAXoCAwMC/q2FAgQAAAQAAAAAA68DrQADABgALQAzAAABMB8BAyIHBgcGFBcWFxYyNzY3NjQnJicmAyInJicmNDc2NzYyFxYXFhQHBgcGAyMVMzUjAuUBAfJ4Z2Q7PDw7ZGfwZmQ7PDw7ZGZ4bl5bNjc3Nlte215bNjc3NltemyT92QKDAQEBLDw7ZGfwZ2M7PDw7Y2fwZ2Q7PPyvNzVbXtteXDU3NzVcXtteWzU3AjH9JAAAAAMAAAAAA+QD5AAXACcAMAAAASIHBgcGFRQXFhcWMzI3Njc2NTQnJicmAzMyFhUDFAYrASImNQM0NhMiJjQ2MhYUBgHuhHJvQUNDQm5zg4l1cUJEREJxdZ42BAYMAwInAwMMBh8PFhYeFhYD40RCcXWJg3NuQkNDQW9yhIl1cUJE/vYGBf7AAgMDAgFABQb+NhYfFhYfFgAABAAAAAADwAPAAAgAEgAoAD0AAAEyNjQmIgYUFhcjFTMRIxUzNSMDIgcGBwYVFBYXFjMyNzY3NjU0Jy4BAyInJicmNDc2NzYyFxYXFhQHBgcGAfQYISEwISFRjzk5yTorhG5rPT99am+DdmhlPD4+PMyFbV5bNTc3NVte2l5bNTc3NVteAqAiLyIiLyI5Hf7EHBwCsT89a26Ed8w8Pj48ZWh2g29qffyjNzVbXtpeWzU3NzVbXtpeWzU3AAADAAAAAAOoA6gACwAgADUAAAEHJwcXBxc3FzcnNwMiBwYHBhQXFhcWMjc2NzY0JyYnJgMiJyYnJjQ3Njc2MhcWFxYUBwYHBgKOmpocmpocmpocmpq2dmZiOjs7OmJm7GZiOjs7OmJmdmtdWTQ2NjRZXdZdWTQ2NjRZXQKqmpocmpocmpocmpoBGTs6YmbsZmI6Ozs6YmbsZmI6O/zCNjRZXdZdWTQ2NjRZXdZdWTQ2AAMAAAAAA+kD6gAaAC8AMAAAAQYHBiMiJyYnJjQ3Njc2MhcWFxYVFAcGBwEHATI3Njc2NCcmJyYiBwYHBhQXFhcWMwKONUBCR21dWjU3NzVaXdpdWzU2GBcrASM5/eBXS0grKysrSEuuSkkqLCwqSUpXASMrFxg2NVtd2l1aNTc3NVpdbUdCQDX+3jkBGSsrSEuuSkkqLCwqSUquS0grKwAC//8AAAPoA+gAFAAwAAABIgcGBwYQFxYXFiA3Njc2ECcmJyYTFg4BIi8BBwYuATQ/AScmPgEWHwE3Nh4BBg8BAfSIdHFDRERDcXQBEHRxQ0REQ3F0SQoBFBsKoqgKGxMKqKIKARQbCqKoChsUAQqoA+hEQ3F0/vB0cUNERENxdAEQdHFDRP1jChsTCqiiCgEUGwqiqAobFAEKqKIKARQbCqIAAAIAAAAAA+QD5AAXADQAAAEiBwYHBhUUFxYXFjMyNzY3NjU0JyYnJhMUBiMFFxYUDwEGLwEuAT8BNh8BFhQPAQUyFh0BAe6Ecm9BQ0NCbnODiXVxQkREQnF1fwQC/pGDAQEVAwTsAgEC7AQEFAIBhAFwAgMD40RCcXWJg3NuQkNDQW9yhIl1cUJE/fYCAwuVAgQCFAQE0AIFAtEEBBQCBQGVCwMDJwAAAAUAAAAAA9QD0wAjACcANwBHAEgAAAERFAYjISImNREjIiY9ATQ2MyE1NDYzITIWHQEhMhYdARQGIyERIREHIgYVERQWOwEyNjURNCYjISIGFREUFjsBMjY1ETQmKwEDeyYb/XYbJkMJDQ0JAQYZEgEvExkBBgkNDQn9CQJc0QkNDQktCQ0NCf7sCQ0NCS0JDQ0JLQMi/TQbJiYbAswMCiwJDS4SGRkSLg0JLAoM/UwCtGsNCf5NCQ0NCQGzCQ0NCf5NCQ0NCQGzCQ0AAAAAEADGAAEAAAAAAAEABAAAAAEAAAAAAAIABwAEAAEAAAAAAAMABAALAAEAAAAAAAQABAAPAAEAAAAAAAUACwATAAEAAAAAAAYABAAeAAEAAAAAAAoAKwAiAAEAAAAAAAsAEwBNAAMAAQQJAAEACABgAAMAAQQJAAIADgBoAAMAAQQJAAMACAB2AAMAAQQJAAQACAB+AAMAAQQJAAUAFgCGAAMAAQQJAAYACACcAAMAAQQJAAoAVgCkAAMAAQQJAAsAJgD6d2V1aVJlZ3VsYXJ3ZXVpd2V1aVZlcnNpb24gMS4wd2V1aUdlbmVyYXRlZCBieSBzdmcydHRmIGZyb20gRm9udGVsbG8gcHJvamVjdC5odHRwOi8vZm9udGVsbG8uY29tAHcAZQB1AGkAUgBlAGcAdQBsAGEAcgB3AGUAdQBpAHcAZQB1AGkAVgBlAHIAcwBpAG8AbgAgADEALgAwAHcAZQB1AGkARwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABzAHYAZwAyAHQAdABmACAAZgByAG8AbQAgAEYAbwBuAHQAZQBsAGwAbwAgAHAAcgBvAGoAZQBjAHQALgBoAHQAdABwADoALwAvAGYAbwBuAHQAZQBsAGwAbwAuAGMAbwBtAAAAAgAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAQIBAwEEAQUBBgEHAQgBCQEKAQsBDAENAQ4BDwEQAREBEgETAAZjaXJjbGUIZG93bmxvYWQEaW5mbwxzYWZlX3N1Y2Nlc3MJc2FmZV93YXJuB3N1Y2Nlc3MOc3VjY2Vzcy1jaXJjbGURc3VjY2Vzcy1uby1jaXJjbGUHd2FpdGluZw53YWl0aW5nLWNpcmNsZQR3YXJuC2luZm8tY2lyY2xlBmNhbmNlbAZzZWFyY2gFY2xlYXIEYmFjawZkZWxldGUAAAAA') format('truetype');
}
[class^="weui-icon-"],
[class*=" weui-icon-"] {
  display: inline-block;
  vertical-align: middle;
  font: normal normal normal 14px/1 "weui";
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}
[class^="weui-icon-"]:before,
[class*=" weui-icon-"]:before {
  display: inline-block;
  margin-left: .2em;
  margin-right: .2em;
}
.weui-icon-circle:before {
  content: "\EA01";
}
/* '' */
.weui-icon-download:before {
  content: "\EA02";
}
/* '' */
.weui-icon-info:before {
  content: "\EA03";
}
/* '' */
.weui-icon-safe-success:before {
  content: "\EA04";
}
/* '' */
.weui-icon-safe-warn:before {
  content: "\EA05";
}
/* '' */
.weui-icon-success:before {
  content: "\EA06";
}
/* '' */
.weui-icon-success-circle:before {
  content: "\EA07";
}
/* '' */
.weui-icon-success-no-circle:before {
  content: "\EA08";
}
/* '' */
.weui-icon-waiting:before {
  content: "\EA09";
}
/* '' */
.weui-icon-waiting-circle:before {
  content: "\EA0A";
}
/* '' */
.weui-icon-warn:before {
  content: "\EA0B";
}
/* '' */
.weui-icon-info-circle:before {
  content: "\EA0C";
}
/* '' */
.weui-icon-cancel:before {
  content: "\EA0D";
}
/* '' */
.weui-icon-search:before {
  content: "\EA0E";
}
/* '' */
.weui-icon-clear:before {
  content: "\EA0F";
}
/* '' */
.weui-icon-back:before {
  content: "\EA10";
}
/* '' */
.weui-icon-delete:before {
  content: "\EA11";
}
/* '' */
[class^="weui-icon_"]:before,
[class*=" weui-icon_"]:before {
  margin: 0;
}
.weui-icon-success {
  font-size: 23px;
  color: #09BB07;
}
.weui-icon-waiting {
  font-size: 23px;
  color: #10AEFF;
}
.weui-icon-warn {
  font-size: 23px;
  color: #F43530;
}
.weui-icon-info {
  font-size: 23px;
  color: #10AEFF;
}
.weui-icon-success-circle {
  font-size: 23px;
  color: #09BB07;
}
.weui-icon-success-no-circle {
  font-size: 23px;
  color: #09BB07;
}
.weui-icon-waiting-circle {
  font-size: 23px;
  color: #10AEFF;
}
.weui-icon-circle {
  font-size: 23px;
  color: #C9C9C9;
}
.weui-icon-download {
  font-size: 23px;
  color: #09BB07;
}
.weui-icon-info-circle {
  font-size: 23px;
  color: #09BB07;
}
.weui-icon-safe-success {
  color: #09BB07;
}
.weui-icon-safe-warn {
  color: #FFBE00;
}
.weui-icon-cancel {
  color: #F43530;
  font-size: 22px;
}
.weui-icon-search {
  color: #B2B2B2;
  font-size: 14px;
}
.weui-icon-clear {
  color: #B2B2B2;
  font-size: 14px;
}
.weui-icon-delete.weui-icon_gallery-delete {
  color: #FFFFFF;
  font-size: 22px;
}
.weui-icon_msg {
  font-size: 93px;
}
.weui-icon_msg.weui-icon-warn {
  color: #F76260;
}
.weui-icon_msg-primary {
  font-size: 93px;
}
.weui-icon_msg-primary.weui-icon-warn {
  color: #FFBE00;
}
.weui-toast {
  position: fixed;
  z-index: 5001;
  width: 7.6em;
  min-height: 7.6em;
  top: 180px;
  left: 50%;
  margin-left: -3.8em;
  background: rgba(17, 17, 17, 0.7);
  text-align: center;
  border-radius: 5px;
  color: #FFFFFF;
}
.weui-icon_toast {
  margin: 22px 0 0;
  display: block;
}
.weui-icon_toast.weui-icon-success-no-circle:before {
  color: #FFFFFF;
  font-size: 55px;
}
.weui-icon_toast.weui-loading {
  margin: 30px 0 0;
  width: 38px;
  height: 38px;
  vertical-align: baseline;
}
.weui-toast__content {
  margin: 0 0 15px;
}
.weui-toast.vux-toast-top {
  top: 10px;
}
.weui-toast.vux-toast-bottom {
  top: auto;
  bottom: 10px;
  transform: translateX(-50%);
}
.weui-toast.vux-toast-middle {
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.vux-slide-from-top-enter,
.vux-slide-from-top-leave-active {
  opacity: 0;
  transform: translateX(-50%) translateY(-100%) !important;
}
.vux-slide-from-bottom-enter,
.vux-slide-from-bottom-leave-active {
  opacity: 0;
  transform: translateX(-50%) translateY(100%) !important;
}
.vux-slide-from-top-enter-active,
.vux-slide-from-top-leave-active,
.vux-slide-from-bottom-enter-active,
.vux-slide-from-bottom-leave-active {
  transition: all 400ms cubic-bezier(0.36, 0.66, 0.04, 1);
}
.weui-toast {
  transform: translateX(-50%);
  margin-left: 0!important;
}
.weui-toast.weui-toast_forbidden {
  color: #F76260;
}
.weui-toast.weui-toast_forbidden .weui-toast__content {
  margin-top: 10px;
}
.weui-toast.weui-toast_text {
  min-height: 0;
}
.weui-toast_text .weui-toast__content {
  margin: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 15px;
}
.weui-toast__content {
  font-size: 16px;
}
.weui-loading_toast .weui-toast__content {
  margin-top: 0;
}
.weui-toast_success .weui-icon_toast:before {
  content: "\EA08";
}
.weui-toast_cancel .weui-icon_toast:before {
  content: "\EA0D";
}
.weui-toast_forbidden .weui-icon_toast.weui-icon-success-no-circle:before {
  content: "\EA0B";
  color: #F76260;
}

.tabs-wrapper[data-v-d0f18c80] {
  width: 100%;
  height: 0.44rem;
  background: #fff;
  margin-bottom: 1px;
}
.tabs-wrapper .tabs-content[data-v-d0f18c80] {
  position: relative;
}
.tabs-wrapper .tabs-header[data-v-d0f18c80] {
  position: relative;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #D7DCE6;
  z-index: 1;
}
.tabs-wrapper .header-list[data-v-d0f18c80] {
  display: -ms-flexbox;
  display: flex;
  line-height: 0.44rem;
}
.tabs-wrapper .header-list-item[data-v-d0f18c80] {
  -ms-flex: 1;
      flex: 1;
  display: block;
  text-align: center;
}
.tabs-wrapper .header-list-item button[data-v-d0f18c80] {
  font-size: 0.16rem;
}
.tabs-wrapper .active button[data-v-d0f18c80] {
  color: #1E78C8;
  font-weight: 600;
}
.tabs-wrapper .active-item[data-v-d0f18c80] {
  position: absolute;
  bottom: -2px;
  height: 2px;
  background: #1E78C8;
  transition: left 0.3s ease-out;
}
.list-wrapper[data-v-1461cee0] {
  width: 100%;
}
.card-wrapper[data-v-5980b2d2] {
  padding: 0.08rem 0.16rem;
}
.card-wrapper .card-content[data-v-5980b2d2] {
  border-radius: 5px;
  background: white;
  padding: 0.08rem;
}
.card-wrapper .card-content .card-header[data-v-5980b2d2] {
  border-bottom: 1px solid #ececec;
}
.card-wrapper .card-content .card-body[data-v-5980b2d2] {
  min-height: 0.48rem;
}
.hor-layout-content[data-v-44ef326e] {
  margin: 0.08rem 0;
  display: -ms-flexbox;
  display: flex;
}
.hor-layout-content .left[data-v-44ef326e] {
  text-align: left;
}
.hor-layout-content .right[data-v-44ef326e] {
  text-align: right;
}
.text-color-wrapper[data-v-4d104d85] {
  font-size: 0.14rem;
}
.text-bg-wrapper[data-v-37ea17b9] {
  padding: 0.045rem;
  color: white;
  border-radius: 0.03rem;
  font-size: 0.14rem;
}




























































@charset "UTF-8";
.bscroll {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
}

/*滚动条宽度*/
.bscroll-vertical-scrollbar {
  width: 4px !important;
}
.pulldown-container.loading {
  position: static;
}
.pulldown-container {
  position: absolute;
  width: 100%;
  line-height: 60px;
  top: -50px;
  text-align: center;
}
.pulldown-container .pull-down-content {
  margin-top: 10px;
  width: 150px;
  height: 40px;
  margin-left: auto;
  margin-right: auto;
}
.pulldown-container .pull-down-content img {
  width: 40px;
  height: 40px;
  float: left;
}
.pulldown-container .pull-down-content .text {
  float: left;
  line-height: 40px;
  height: 40px;
  font-size: 14px;
  padding-left: 12px;
  color: #959595;
}
.pullup-container {
  position: absolute;
  width: 100%;
  height: 40px;
  bottom: -40px;
  text-align: center;
}
.pullup-container.loading {
  position: static;
}
.vux-spinner {
  stroke: #444;
  fill: #444;
  vertical-align: middle;
  display: inline-block;
  width: 28px;
  height: 28px;
}
.vux-spinner svg {
  width: 28px;
  height: 28px;
}
.vux-spinner.vux-spinner-inverse {
  stroke: #fff;
  fill: #fff;
}
.vux-spinner-android {
  stroke: #4b8bf4;
}
.vux-spinner-ios, .vux-spinner-ios-small {
  stroke: #69717d;
}
.vux-spinner-spiral .stop1 {
  stop-color: #fff;
  stop-opacity: 0;
}
.vux-spinner-spiral.vux-spinner-inverse .stop1 {
  stop-color: #000;
}
.vux-spinner-spiral.vux-spinner-inverse .stop2 {
  stop-color: #fff;
}

@charset "UTF-8";
/**
 * $Desc css全局变量，通过定义样式
 */
.expense-add[data-v-3fd7da46] {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 5vh;
  width: 50px;
  height: 50px;
  z-index: 50;
}
.expense-add .expense-add-item[data-v-3fd7da46] {
  display: block;
  height: 100%;
  width: 100%;
}
.expense-add .expense-add-item img[data-v-3fd7da46] {
  margin-top: 17px;
  height: 26px;
  width: 26px;
  transition: all cubic-bezier(0.1, 0.7, 0.1, 1) 350ms;
}
.expense-add .expense-add-item.open img[data-v-3fd7da46] {
  transform: rotate(45deg);
}
.expense-add .expense-add-item.close img[data-v-3fd7da46] {
  transform: rotate(0deg);
}
.expense-add .expense-list[data-v-3fd7da46] {
  display: block;
  position: fixed;
  bottom: 60px;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
}
.expense-add .expense-list .triangle-bottom[data-v-3fd7da46] {
  position: absolute;
  width: 100%;
  height: 18px;
  bottom: 0;
  overflow: hidden;
}
.expense-add .expense-list .triangle-bottom .rhombus[data-v-3fd7da46] {
  height: 100%;
  width: 100%;
  position: absolute;
  -webkit-transform: matrix(0.25, -0.433, 0.25, 0.433, 0, 0);
}
.expense-add .expense-list .triangle-bottom .rhombus.r120[data-v-3fd7da46] {
  border-radius: 0;
  border-bottom-left-radius: 15px;
  background: black;
  opacity: 0.8;
  display: block;
  z-index: 50;
  -webkit-transform: matrix(0.25, -0.433, 0.25, 0.433, 0, 0);
}
.expense-add .expense-list .triangle-bottom .triangle[data-v-3fd7da46] {
  width: 36px;
  height: 36px;
  margin-left: auto;
  margin-right: auto;
  margin-top: -20px;
  position: relative;
}
.expense-add .expense-list .expense-list-content[data-v-3fd7da46] {
  width: 150px;
  margin-left: auto;
  margin-right: auto;
  padding: 5px 15px;
  border-radius: 8px;
  background: black;
  opacity: 0.8;
  color: white;
  margin-bottom: 18px;
}
.expense-add .expense-list .expense-list-content.expense-list-scroll[data-v-3fd7da46] {
  height: 300px;
}
.expense-add .expense-list .expense-list-content .expense-list-item[data-v-3fd7da46] {
  border-bottom: 1px solid #6a6a6a;
  padding: 11px 0 11px 0;
  text-align: center;
  font-size: 15px;
  color: #ffffff;
}
.expense-add .expense-list .expense-list-content .expense-list-item.no-border[data-v-3fd7da46] {
  border-bottom: none;
}
.simple-toast {
  font-size: 0.16rem;
}
.simple-toast .mask {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(174, 174, 174, 0.5);
}
.simple-toast .toast-top {
  top: 15vh;
}
.simple-toast .toast-bottom {
  top: auto;
  bottom: 15vh;
}
.simple-toast .toast-middle {
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.simple-toast .vux-slide-from-top-enter, .simple-toast .vux-slide-from-top-leave-active {
  opacity: 0;
  transform: translateX(-50%) translateY(-100%) !important;
}
.simple-toast .vux-slide-from-bottom-enter, .simple-toast .vux-slide-from-bottom-leave-active {
  opacity: 0;
  transform: translateX(-50%) translateY(100%) !important;
}
.simple-toast .vux-slide-from-top-enter-active,
.simple-toast .vux-slide-from-top-leave-active,
.simple-toast .vux-slide-from-bottom-enter-active,
.simple-toast .vux-slide-from-bottom-leave-active {
  transition: all 300ms cubic-bezier(0.36, 0.66, 0.04, 1);
}
.simple-toast .toast {
  margin: 0;
  position: fixed;
  left: 50%;
  width: 150vw;
  transform: translateX(-50%);
  text-align: center;
  background-color: transparent;
  z-index: 1001;
}
.simple-toast .toast-content {
  display: inline-block;
  margin: 0 auto;
  background-color: rgba(68, 68, 68, 0.9);
  color: #fff;
  padding: 0.05rem 0.24rem;
  border-radius: 10px;
  text-align: justify;
  font-size: 0.15rem;
  max-width: 70vw;
}
.simple-toast .toast-content .toast-title {
  text-align: center;
}
.thc-body {
  position: fixed;
  z-index: 1000;
  font-size: 0.16rem;
  text-align: center;
  height: 30px;
  line-height: 30px;
  width: 88px;
  border-radius: 0.03rem;
  color: #fff;
  background-color: rgba(68, 68, 68, 0.9);
}
.warning-bubble[data-v-0ef2c9be] {
  opacity: 0.9;
  position: absolute;
  left: 0.15rem;
  background: #1E78C8;
  box-shadow: 0 0 0.06rem 0 rgba(0, 0, 0, 0.42);
  border-radius: 0.1rem;
  color: #fff;
  font-size: 0.14rem;
  padding: 0.06rem 0.12rem;
  word-break: break-word;
  max-width: 70vw;
}
@charset "UTF-8";
/**
 * $Desc css全局变量，通过定义样式
 */
/*
* mixin集中存储文件
*/
.improved-confirm .weui-dialog {
  width: 70vw;
  border-radius: 10px;
  overflow: hidden;
}
.improved-confirm .weui_dialog {
  width: 70vw;
  border-radius: 10px;
  overflow: hidden;
}
.improved-confirm .ic-head {
  color: black;
  padding: 0.11rem 0.16rem 0.19rem;
  font-size: 0.165rem;
  background: white;
  padding-bottom: 0;
}
.improved-confirm .ic-head .ic-title {
  word-wrap: break-word;
}
.improved-confirm .ic-body {
  color: black;
  padding: 0.11rem 0.16rem 0.19rem;
  background: white;
  font-size: 0.14rem;
}
.improved-confirm .ic-foot {
  margin-top: 0;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.improved-confirm .ic-foot:before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  border-top: 1px solid #d9d9d9;
  color: #d9d9d9;
  transform-origin: 0 0;
  transform: scaleY(0.5);
  z-index: 1;
}
.improved-confirm .ic-btn {
  color: #1B9EFF;
  background-color: #ffffff;
  display: inline-block;
  -ms-flex-positive: 1;
      flex-grow: 1;
  width: 50%;
  letter-spacing: 0.1em;
  padding: 0.11rem 0px;
  font-size: 0.14rem;
}
.improved-confirm .ic-btn.left {
  position: relative;
}
.improved-confirm .ic-btn.left:after {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 1px;
  border-right: 1px solid #d9d9d9;
  color: #d9d9d9;
  transform-origin: 0 100%;
  transform: scaleX(0.5);
}/* Document
 * ========================================================================== */

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

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

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

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

:where(h1) {
  font-size: 2em;
  margin-block-end: 0.67em;
  margin-block-start: 0.67em;
}

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

/**
 * Remove the margin on nested lists in Chrome, Edge, and Safari.
 */

:where(dl, ol, ul) :where(dl, ol, ul) {
  margin-block-end: 0;
  margin-block-start: 0;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Correct the inheritance of border color in Firefox.
 */

:where(hr) {
  box-sizing: content-box; /* 1 */
  color: inherit; /* 2 */
  height: 0; /* 1 */
}

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

/**
 * Add the correct text decoration in Safari.
 */

:where(abbr[title]) {
  text-decoration: underline;
  text-decoration: underline dotted;
}

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

:where(b, strong) {
  font-weight: bolder;
}

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

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

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

:where(small) {
  font-size: 80%;
}

/* Tabular data
 * ========================================================================== */

/**
 * 1. Correct table border color in Chrome, Edge, and Safari.
 * 2. Remove text indentation from table contents in Chrome, Edge, and Safari.
 */

:where(table) {
  border-color: currentColor; /* 1 */
  text-indent: 0; /* 2 */
}

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

/**
 * Remove the margin on controls in Safari.
 */

:where(button, input, select) {
  margin: 0;
}

/**
 * Remove the inheritance of text transform in Firefox.
 */

:where(button) {
  text-transform: none;
}

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

:where(button, input:is([type="button" i], [type="reset" i], [type="submit" i])) {
  -webkit-appearance: button;
}

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

:where(progress) {
  vertical-align: baseline;
}

/**
 * Remove the inheritance of text transform in Firefox.
 */

:where(select) {
  text-transform: none;
}

/**
 * Remove the margin in Firefox and Safari.
 */

:where(textarea) {
  margin: 0;
}

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

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

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

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */

::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

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

::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

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

/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */

:where(button, input:is([type="button" i], [type="color" i], [type="reset" i], [type="submit" i]))::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */

:where(button, input:is([type="button" i], [type="color" i], [type="reset" i], [type="submit" i]))::-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove the additional :invalid styles in Firefox.
 */

:where(:-moz-ui-invalid) {
  box-shadow: none;
}

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

/*
 * Add the correct styles in Safari.
 */

:where(dialog) {
  background-color: white;
  border: solid;
  color: black;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
}

:where(dialog:not([open])) {
  display: none;
}

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

:where(summary) {
  display: list-item;
}
@charset "UTF-8";
.nut-cell {
  display: block;
  padding: 0 10px;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  outline: none;
}
.nut-cell.nut-cell-link:active {
  background-color: #f6f6f6 !important;
}
.nut-cell .nut-cell-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  background-image: linear-gradient(rgba(218, 218, 218, 0.5), rgba(218, 218, 218, 0.5));
  background-size: 100% 1px;
  background-repeat: no-repeat;
}
.nut-cell .nut-cell-left {
  flex: 1;
  flex-direction: column;
}
.nut-cell .nut-cell-title {
  display: block;
  line-height: 1.5;
  font-size: 14px;
  color: #2d2d2d;
}
.nut-cell .nut-cell-sub-title {
  display: block;
  line-height: 1;
  font-size: 12px;
  color: #848484;
  margin-top: 5px;
}
.nut-cell .nut-cell-sub-title:empty {
  display: none;
}
.nut-cell .nut-cell-right {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #848484;
}
.nut-cell .nut-cell-icon {
  display: flex;
  align-items: center;
}
.nut-cell .nut-cell-icon img {
  height: 14px;
  margin-left: 10px;
}
.nut-cell:first-of-type {
  background-image: linear-gradient(rgba(218, 218, 218, 0.5), rgba(218, 218, 218, 0.5));
  background-size: 100% 1px;
  background-repeat: no-repeat;
}
.nut-cell:first-of-type .nut-cell-box {
  background-image: none;
}
.nut-cell:last-of-type {
  background-image: linear-gradient(rgba(218, 218, 218, 0.5), rgba(218, 218, 218, 0.5));
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: bottom;
}
.nut-cell:only-of-type {
  background: linear-gradient(rgba(218, 218, 218, 0.5), rgba(218, 218, 218, 0.5)) bottom, linear-gradient(rgba(218, 218, 218, 0.5), rgba(218, 218, 218, 0.5)) top;
  background-size: 100% 1px;
  background-repeat: no-repeat;
}

@keyframes nutFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes nutFadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.nutFade-enter-active,
.nutFadeIn,
.nutFade-leave-active,
.nutFadeOut {
  animation-duration: 0.25s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.nutFade-enter-active,
.nutFadeIn {
  animation-name: nutFadeIn;
}

.nutFade-leave-active,
.nutFadeOut {
  animation-name: nutFadeOut;
}

@keyframes nutEaseIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes nutEaseOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.9);
  }
}
.nutEase-enter-active,
.nutEaseIn,
.nutEase-leave-active,
.nutEaseOut {
  animation-duration: 0.25s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.nutEase-enter-active,
.nutEaseIn {
  animation-name: nutEaseIn;
}

.nutEase-leave-active,
.nutEaseOut {
  animation-name: nutEaseOut;
}

body.dialog-open {
  position: fixed;
}

.nut-dialog-wrapper {
  position: relative;
  z-index: 9998;
}

.nut-dialog-box {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #848484;
}

.nut-dialog-mask,
.nut-dialog-box {
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.nut-dialog-mask {
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
}

.nut-dialog {
  position: relative;
  width: 86%;
  max-height: 70vh;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.nut-dialog-title {
  display: block;
  line-height: 1.5;
  color: #2d2d2d;
  font-size: 16px;
  text-align: center;
  flex-shrink: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-bottom: 8px;
}

.nut-dialog-close {
  position: absolute;
  right: 0;
  top: 0;
  width: 30px;
  height: 30px;
  font-size: 20px;
  text-align: center;
  text-decoration: none;
  background: url("data:image/svg+xml, %3Csvg width='30' height='30' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='rgb(132,132,132)' fill-rule='evenodd'%3E%3Cpath d='M.44 2.56A1.5 1.5 0 1 1 2.56.44l27 27a1.5 1.5 0 1 1-2.12 2.12L15 17.123 2.56 29.56A1.5 1.5 0 1 1 .44 27.44L12.878 15 .44 2.56zM27.44.44a1.5 1.5 0 1 1 2.12 2.12l-9 9a1.5 1.5 0 1 1-2.12-2.12l9-9z'/%3E%3C/g%3E%3C/svg%3E") no-repeat center;
  background-size: 13px 13px;
}
.nut-dialog-close img {
  height: 13px;
}

.nut-dialog-image-wrapper .nut-dialog {
  width: auto;
  max-width: 80%;
  max-height: 75%;
  background: transparent;
  border-radius: none;
  display: inline-block;
  overflow: visible;
}
.nut-dialog-image-wrapper .nut-dialog-close {
  position: absolute;
  right: 0;
  top: -40px;
  width: 25px;
  height: 25px;
  font-size: 20px;
  text-align: center;
  text-decoration: none;
  border: 2px solid #fff;
  border-radius: 50%;
  background: url("data:image/svg+xml, %3Csvg width='30' height='30' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='rgb(255,255,255)' fill-rule='evenodd'%3E%3Cpath d='M.44 2.56A1.5 1.5 0 1 1 2.56.44l27 27a1.5 1.5 0 1 1-2.12 2.12L15 17.123 2.56 29.56A1.5 1.5 0 1 1 .44 27.44L12.878 15 .44 2.56zM27.44.44a1.5 1.5 0 1 1 2.12 2.12l-9 9a1.5 1.5 0 1 1-2.12-2.12l9-9z'/%3E%3C/g%3E%3C/svg%3E") no-repeat center;
  background-size: 13px 13px;
}
.nut-dialog-image-wrapper .nut-dialog-close img {
  height: 13px;
}
.nut-dialog-image-wrapper .nut-dialog-image-wrapper .nut-dialog {
  width: auto;
  max-width: 80%;
  max-height: 75%;
  background: transparent;
  border-radius: none;
  display: inline-block;
  overflow: visible;
}
.nut-dialog-image-wrapper .nut-dialog-image-wrapper .nut-dialog-close {
  position: absolute;
  right: 0;
  top: -40px;
  width: 25px;
  height: 25px;
  font-size: 20px;
  text-align: center;
  text-decoration: none;
  border: 2px solid #fff;
  border-radius: 50%;
  background: url("data:image/svg+xml, %3Csvg width='30' height='30' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='rgb(255,255,255)' fill-rule='evenodd'%3E%3Cpath d='M.44 2.56A1.5 1.5 0 1 1 2.56.44l27 27a1.5 1.5 0 1 1-2.12 2.12L15 17.123 2.56 29.56A1.5 1.5 0 1 1 .44 27.44L12.878 15 .44 2.56zM27.44.44a1.5 1.5 0 1 1 2.12 2.12l-9 9a1.5 1.5 0 1 1-2.12-2.12l9-9z'/%3E%3C/g%3E%3C/svg%3E") no-repeat center;
  background-size: 13px 13px;
}
.nut-dialog-image-wrapper .nut-dialog-image-wrapper .nut-dialog-close img {
  height: 13px;
}

.nut-dialog-link {
  display: inline-block;
}

.nut-dialog-image {
  max-width: 100%;
  max-height: 100%;
  vertical-align: bottom;
}

.nut-dialog-body {
  box-sizing: border-box;
  padding: 30px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 0 1 auto;
  overflow: auto;
}

.nut-dialog-content {
  flex: 1;
  justify-content: center;
  overflow: auto;
  font-size: 14px;
  word-break: break-all;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
}

.nut-dialog-footer {
  height: 50px;
  width: 100%;
  line-height: 50px;
  display: flex;
  flex-shrink: 0;
  border-radius: 0 0 5px 5px;
  overflow: hidden;
  flex-direction: row;
}

.nut-dialog-btn {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  flex: 1;
  font-size: 14px;
  border: none;
  background: transparent;
  appearance: none;
  outline: none;
  user-select: none;
}
.nut-dialog-btn.disabled {
  background: #dadada;
  background-origin: border-box;
  color: #f6f6f6;
}
.nut-dialog-btn:only-child {
  border-radius: 0 0 5px 5px;
  background: transparent;
  color: #f0250f;
  border-top: 1px solid #f6f6f6;
}

.nut-dialog-ok {
  border-radius: 0 0 5px 0;
  background: linear-gradient(315deg, #ff4f18 0%, #f20000 100%);
  border-top: 1px solid #f6f6f6;
  background-origin: border-box;
  color: #fff;
  margin-right: -1px;
}
.nut-dialog-ok:active {
  background: linear-gradient(315deg, rgb(228, 54.2857142857, 0) 0%, #bf0000 100%);
}

.nut-dialog-cancel {
  border-radius: 0 0 0 5px;
  border-top: 1px solid #f6f6f6;
  background: #fff;
  background-origin: border-box;
}
.nut-dialog-cancel:active {
  border-top: 1px solid #ccc;
  background: #ccc;
}

.nut-icon {
  list-style: none;
  display: inline-block;
  width: 20px;
  height: 20px;
  color: #2d2d2d;
}
.nut-icon svg {
  vertical-align: top;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
.nutRotate-enter-active,
.nutRotateIn,
.nutRotate-leave-active,
.nutRotateOut {
  animation-duration: 0.25s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.nutRotate-enter-active,
.nutRotateIn {
  animation-name: nutRotateIn;
}

.nutRotate-leave-active,
.nutRotateOut {
  animation-name: nutRotateOut;
}

.nut-toast {
  position: fixed;
  left: 0;
  bottom: 150px;
  width: 100%;
  text-align: center;
  pointer-events: none;
  z-index: 9999;
  font-family: PingHei, "Lucida Grande", "Lucida Sans Unicode", STHeiti, Helvetica, Arial, Verdana, "sans-serif", "PingHei-light", SimHei, "Droid Sans";
}
.nut-toast.nut-toast-small .nut-toast-inner {
  font-size: 12px;
}
.nut-toast.nut-toast-large .nut-toast-inner {
  font-size: 16px;
}
.nut-toast.nut-toast-cover {
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  height: 100%;
}
.nut-toast .nut-toast-inner {
  position: relative;
  display: inline-block;
  font-size: 14px;
  max-width: 65%;
  text-align: center;
  line-height: 1.5;
  padding: 10px 30px;
  word-break: break-all;
  background: rgba(46, 46, 46, 0.8);
  border-radius: 7px;
  color: #fff;
}
.nut-toast.nut-toast-has-icon .nut-toast-inner {
  padding: 70px 50px 30px;
}
.nut-toast.nut-toast-has-icon .nut-toast-icon-wrapper {
  position: absolute;
  left: 0;
  top: 20px;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nut-toast.nut-toast-has-icon .nut-toast-icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-size: 100%;
}
.nut-toast.nut-toast-has-icon .nut-toast-icon.success {
  background-image: url("data:image/svg+xml,%3Csvg width='48' height='46' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd' %3E%3Cpath d='M8 0h18c11.046 0 20 8.954 20 20v18a8 8 0 0 1-8 8H20C8.954 46 0 37.046 0 26V8a8 8 0 0 1 8-8z' fill='rgb(255,255,255)'/%3E%3Cpath d='M43.562 3L22.01 23.803l-4.855-4.557a2.934 2.934 0 0 0-4.147.132l-1.324 1.41a1 1 0 0 0 .045 1.414l9.047 8.49a2 2 0 0 0 2.763-.025L47.741 7.12 43.562 3z' fill='rgb(44,42,53)'/%3E%3C/g%3E%3C/svg%3E");
}
.nut-toast.nut-toast-has-icon .nut-toast-icon.fail {
  background-image: url("data:image/svg+xml,%3Csvg width='46' height='46' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M8 0h18c11.046 0 20 8.954 20 20v18a8 8 0 0 1-8 8H20C8.954 46 0 37.046 0 26V8a8 8 0 0 1 8-8z' fill='rgb(255,255,255)'/%3E%3Cg fill='rgb(44,42,53)'%3E%3Cpath d='M13.6 15.722l1.415-1.414a2 2 0 0 1 2.828 0L33.4 29.864a1 1 0 0 1 0 1.414l-1.414 1.414a2 2 0 0 1-2.828 0L13.6 17.136a1 1 0 0 1 0-1.414z'/%3E%3Cpath d='M33.4 15.722l-1.415-1.414a2 2 0 0 0-2.828 0L13.6 29.864a1 1 0 0 0 0 1.414l1.414 1.414a2 2 0 0 0 2.828 0L33.4 17.136a1 1 0 0 0 0-1.414z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.nut-toast.nut-toast-has-icon .nut-toast-icon.warn {
  background-image: url("data:image/svg+xml,%3Csvg width='46' height='46' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M8 0h18c11.046 0 20 8.954 20 20v18a8 8 0 0 1-8 8H20C8.954 46 0 37.046 0 26V8a8 8 0 0 1 8-8z' fill='rgb(255,255,255)'/%3E%3Cpath d='M23 23V12' stroke='rgb(44,42,53)' stroke-width='6' stroke-linecap='round'/%3E%3Cpath d='M21 30h3a2 2 0 0 1 2 2v3a1 1 0 0 1-1 1h-3a2 2 0 0 1-2-2v-3a1 1 0 0 1 1-1z' fill='rgb(44,42,53)'/%3E%3C/g%3E%3C/svg%3E");
}
.nut-toast.nut-toast-has-icon .nut-toast-icon.loading {
  background: url("data:image/svg+xml, %3Csvg class='icon' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='rgb(230,230,230)' d='M874.667 533.333h-192c-12.8 0-21.334-8.533-21.334-21.333 0-12.8 8.534-21.333 21.334-21.333h192c12.8 0 21.333 8.533 21.333 21.333 0 12.8-8.533 21.333-21.333 21.333zM648.533 407.467C640 416 627.2 416 618.667 407.467c-8.534-8.534-8.534-21.334 0-29.867L755.2 241.067c8.533-8.534 21.333-8.534 29.867 0 8.533 8.533 8.533 21.333 0 29.866L648.533 407.467zM512 896c-12.8 0-21.333-8.533-21.333-21.333v-192c0-12.8 8.533-21.334 21.333-21.334s21.333 8.534 21.333 21.334v192c0 12.8-8.533 21.333-21.333 21.333zm0-533.333c-12.8 0-21.333-8.534-21.333-21.334v-192c0-12.8 8.533-21.333 21.333-21.333s21.333 8.533 21.333 21.333v192c0 12.8-8.533 21.334-21.333 21.334zM270.933 782.933c-8.533 8.534-21.333 8.534-29.866 0s-8.534-21.333 0-29.866L377.6 616.533c8.533-8.533 21.333-8.533 29.867 0 8.533 8.534 8.533 21.334 0 29.867L270.933 782.933zm104.534-375.466L238.933 270.933c-8.533-8.533-8.533-21.333 0-29.866s21.334-8.534 29.867 0L405.333 377.6c8.534 8.533 8.534 21.333 0 29.867-6.4 6.4-21.333 6.4-29.866 0zM362.667 512c0 12.8-8.534 21.333-21.334 21.333h-192C136.533 533.333 128 524.8 128 512c0-12.8 8.533-21.333 21.333-21.333h192c12.8 0 21.334 8.533 21.334 21.333zm285.866 104.533l136.534 136.534c8.533 8.533 8.533 21.333 0 29.866-8.534 8.534-21.334 8.534-29.867 0L618.667 646.4c-8.534-8.533-8.534-21.333 0-29.867 6.4-6.4 21.333-6.4 29.866 0z'/%3E%3C/svg%3E") no-repeat;
  background-size: cover;
}
.nut-toast.nut-toast-center {
  top: 50%;
  transform: translateY(-50%);
}
.nut-toast.nut-loading .nut-toast-inner {
  padding: 25px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.nut-toast.nut-loading .nut-toast-icon-wrapper {
  position: static;
  height: 30px;
}
.nut-toast.nut-loading .nut-toast-text:not(:empty) {
  margin-top: 10px;
  margin-bottom: -10px;
}
.nut-toast.nut-loading .nut-toast-icon {
  width: 40px;
  height: 40px;
}
.nut-toast.nut-loading .nut-toast-icon.nut-toast-icon-rotate {
  animation: rotation 2s linear infinite;
}

.toastfade-enter-active {
  transition: opacity 0.1s;
}

.toastfade-leave-active {
  transition: opacity 0.3s;
}

.toastfade-enter,
.toastfade-leave-active {
  opacity: 0;
}

@keyframes nutFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes nutFadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.nutFade-enter-active,
.nutFadeIn,
.nutFade-leave-active,
.nutFadeOut {
  animation-duration: 0.25s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.nutFade-enter-active,
.nutFadeIn {
  animation-name: nutFadeIn;
}

.nutFade-leave-active,
.nutFadeOut {
  animation-name: nutFadeOut;
}

@keyframes nutSlideUpIn {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes nutSlideUpOut {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.nutSlideUp-enter-active,
.nutSlideUpIn,
.nutSlideUp-leave-active,
.nutSlideUpOut {
  animation-duration: 0.25s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.nutSlideUp-enter-active,
.nutSlideUpIn {
  animation-name: nutSlideUpIn;
}

.nutSlideUp-leave-active,
.nutSlideUpOut {
  animation-name: nutSlideUpOut;
}

.nut-actionsheet-mask {
  position: fixed;
  z-index: 9998;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.nut-actionsheet-panel {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-height: 80%;
  overflow: auto;
  z-index: 10001;
  background-color: #f6f6f6;
}

.nut-actionsheet-modal {
  padding: 10px;
  margin: 0;
  text-align: center;
  background-color: #fff;
  border-bottom: 1px solid #f6f6f6;
}
.nut-actionsheet-modal .nut-actionsheet-title,
.nut-actionsheet-modal .nut-actionsheet-sub-title {
  padding: 5px 0;
}
.nut-actionsheet-modal .nut-actionsheet-title {
  font-size: 14px;
  color: #2d2d2d;
}
.nut-actionsheet-modal .nut-actionsheet-sub-title {
  font-size: 12px;
  color: #2d2d2d;
  margin-inline-start: 0px;
}

.nut-actionsheet-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nut-actionsheet-cancel,
.nut-actionsheet-item {
  height: 24px;
  padding: 10px;
  line-height: 24px;
  font-size: 14px;
  color: #2d2d2d;
  text-align: center;
  background-color: #fff;
}

.nut-actionsheet-item {
  border-bottom: 1px solid #f6f6f6;
}

.nut-actionsheet-item-active {
  color: #f0250f;
}

.nut-actionsheet-item-disabled {
  color: #e1e1e1;
}

.nut-actionsheet-cancel {
  margin-top: 5px;
  border-top: 1px solid #f6f6f6;
}

.nut-tab {
  position: relative;
  border: 1px solid #eee;
  padding: 10px;
  font-size: 12px;
  background: #eee;
}

.nut-tab-horizontal {
  display: flex;
  flex-direction: row;
  position: relative;
}

.close-btn {
  position: absolute;
  width: 17px;
  height: 17px;
  text-align: center;
  line-height: 14px;
  font-size: 16px;
  background: #999;
  font-weight: normal;
  color: #fff;
  right: 0px;
  top: 0px;
  border-radius: 50%;
}

.nut-tab-horizontal .close-btn {
  position: absolute;
  width: 17px;
  height: 17px;
  text-align: center;
  line-height: 14px;
  font-size: 16px;
  background: #999;
  font-weight: normal;
  color: #fff;
  right: 0px;
  top: 0px;
  border-radius: 50%;
}

.nut-tab-title {
  border-bottom: 1px solid #ededed;
  width: 100%;
  display: flex;
  height: 50px;
  line-height: 48px;
  box-sizing: border-box;
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
}
.nut-tab-title::-webkit-scrollbar {
  display: none;
}

.nut-tab-title-smooth {
  scroll-behavior: smooth;
}

.nav-bar {
  position: absolute;
  height: 2px;
  bottom: 0px;
  left: 0px;
  z-index: 2;
  background: red;
  transition: all 0.3s ease-in-out;
}

.nut-tab-title-leftnav {
  border-right: 1px solid #ededed;
  scroll-behavior: smooth;
  width: 100px;
  display: flex;
  background: #fff;
  flex-direction: column;
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
}
.nut-tab-title-leftnav::-webkit-scrollbar {
  display: none;
}
.nut-tab-title-leftnav .nav-bar-left {
  position: absolute;
  width: 2px;
  right: 0px;
  top: 0px;
  z-index: 2;
  background: #eee;
  transition: all 0.3s ease-in-out;
}
.nut-tab-title-leftnav .nut-title-nav {
  border: 0;
  border-left: 1px solid #f5f7fa;
}
.nut-tab-title-leftnav .nut-tab-active {
  background: #fff;
}
.nut-tab-title-leftnav .nut-tab-active a {
  color: red;
}

.nut-tab-title-rightnav {
  background: #fff;
  scroll-behavior: smooth;
  border-left: 1px solid #ededed;
  width: 100px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
  box-sizing: border-box;
}
.nut-tab-title-rightnav::-webkit-scrollbar {
  display: none;
}
.nut-tab-title-rightnav .nav-bar-right {
  position: absolute;
  width: 2px;
  left: 0px;
  top: 0px;
  z-index: 2;
  background: #eee;
  transition: all 0.3s ease-in-out;
}

.nut-tab-link {
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  text-decoration: none;
  line-height: 1;
  width: 100%;
  height: 100%;
}

.nut-tab-title-bottomnav {
  border: 1px solid #fff;
  scroll-behavior: smooth;
  border-top: 1px solid #ededed;
  width: 100%;
  display: flex;
  height: 50px;
  line-height: 49px;
  box-sizing: border-box;
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
}
.nut-tab-title-bottomnav::-webkit-scrollbar {
  display: none;
}
.nut-tab-title-bottomnav .nav-bar-bottom {
  position: absolute;
  height: 2px;
  left: 0px;
  top: 0px;
  z-index: 2;
  background: #eee;
  transition: all 0.3s ease-in-out;
}

.nut-title-nav-list {
  flex: 1;
  position: relative;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  display: flex;
  background: #fff;
  box-sizing: border-box;
}

.nut-title-nav-leftnav {
  flex: 1;
  display: flex;
  padding-left: 5px;
  align-items: center;
  position: relative;
}

.nut-title-nav-rightnav {
  flex: 1;
  display: flex;
  padding-right: 5px;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}

.nut-title-nav-scroll {
  min-width: 100px;
  position: relative;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  display: flex;
  background: #fff;
  box-sizing: border-box;
}

.nut-title-vertical-scroll {
  min-height: 55px;
  position: relative;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  display: flex;
  background: #fff;
  box-sizing: border-box;
}

.nut-tab-icon {
  display: inline-block;
  margin-right: 5px;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.nut-tab-active {
  background: #fff;
  border: 0;
}
.nut-tab-active a {
  color: red;
}

.nut-tab-item {
  height: 200px;
  border: 1px solid #fff;
  background: #fff;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
}
.nut-tab-item .hide {
  display: none;
}

.nut-tab-disable {
  background: #e1e1e1 !important;
}

.tabbar-nav-word {
  font-size: 12px;
}

.nut-tabbar {
  border: 0px;
  border-bottom: 1px solid #eee;
  border-top: 1px solid #eee;
  width: 100%;
  display: flex;
  height: 70px;
  box-sizing: border-box;
  background: #fff;
  margin-top: 20px;
}
.nut-tabbar:last-child {
  border-right: 0;
}

.bottom {
  position: fixed;
  bottom: 0px;
  left: 0px;
  z-index: 888;
}

.tabbar-nav {
  flex: 1;
  text-align: center;
  text-decoration: none;
  color: #848484;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card {
  border-right: 1px solid #eee;
}

.curr {
  color: #f0250f;
}

.icon-box {
  padding: 0px;
  display: inline-block;
  position: relative;
}
.icon-box .tips {
  position: absolute;
  width: 20px;
  height: 20px;
  text-align: center;
  border: 1px solid #f0250f;
  border-radius: 50%;
  top: -10px;
  right: -5px;
  background: red;
  box-shadow: 0 0 0 1px #fff;
  transform: translateX(60%);
  font-size: 12px;
  color: #fff;
}
.icon-box .num {
  line-height: 20px;
}

.icon-box .icon {
  margin: 0 auto;
  width: 30px;
  height: 30px;
  display: block;
  background-size: 100% 100%;
  background-position: center center;
}

.icon-box .tabs-nav-word {
  font-size: 12px;
  line-height: 1;
}

.icon-box .big-word {
  font-size: 16px;
  line-height: 1;
}

@keyframes nutSlideUpIn {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes nutSlideUpOut {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.nutSlideUp-enter-active,
.nutSlideUpIn,
.nutSlideUp-leave-active,
.nutSlideUpOut {
  animation-duration: 0.25s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.nutSlideUp-enter-active,
.nutSlideUpIn {
  animation-name: nutSlideUpIn;
}

.nutSlideUp-leave-active,
.nutSlideUpOut {
  animation-name: nutSlideUpOut;
}

@-webkit-keyframes nutSlideRightIn {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes nutSlideRightOut {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.nutSlideRight-enter-active,
.nutSlideRightIn,
.nutSlideRight-leave-active,
.nutSlideRightOut {
  animation-duration: 0.25s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.nutSlideRight-enter-active,
.nutSlideRightIn {
  animation-name: nutSlideRightIn;
}

.nutSlideRight-leave-active,
.nutSlideRightOut {
  animation-name: nutSlideRightOut;
}

.nut-calendar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #fff;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  padding-top: 72px;
  overflow: hidden;
  z-index: 1000001;
}

.nut-calendar-control {
  position: absolute;
  left: 0;
  top: 0;
  height: 70px;
  width: 100%;
  text-align: center;
  background-color: #fff;
  z-index: 1;
}
.nut-calendar-control .nut-calendar-cancel-btn,
.nut-calendar-control .nut-calendar-confirm-btn {
  width: 60px;
  color: #f0250f;
  position: absolute;
  top: 0;
  line-height: 40px;
}
.nut-calendar-control .nut-calendar-confirm-btn {
  right: 0;
}
.nut-calendar-control .nut-calendar-cancel-btn {
  left: 0;
}
.nut-calendar-control .nut-calendar-title {
  margin: 0 60px;
  line-height: 40px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nut-calendar-control .nut-calendar-week {
  display: flex;
  height: 30px;
  text-align: center;
  line-height: 30px;
}
.nut-calendar-control .nut-calendar-week span {
  flex: 1;
}
.nut-calendar-control .nut-calendar-week span:first-child, .nut-calendar-control .nut-calendar-week span:last-child {
  color: #f0250f;
}

.nut-calendar-months {
  width: 100%;
  flex: 1;
}
.nut-calendar-months .nut-calendar-months-panel {
  padding-bottom: 10px;
  position: relative;
  width: 100%;
  height: auto;
}
.nut-calendar-months .nut-calendar-loading-tip {
  height: 50px;
  line-height: 50px;
  text-align: center;
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  color: #848484;
  font-size: 12px;
}
.nut-calendar-months .nut-calendar-month-title {
  height: 30px;
  line-height: 30px;
  text-align: center;
  background-color: #f6f6f6;
}
.nut-calendar-months .nut-calendar-month-con {
  overflow: hidden;
}
.nut-calendar-months .nut-calendar-month-con .nut-calendar-month-day {
  float: left;
  width: 14.28%;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.nut-calendar-months .nut-calendar-month-con .nut-calendar-month-day-active {
  background-color: #f0250f;
  color: #fff;
}
.nut-calendar-months .nut-calendar-month-con .nut-calendar-month-day-disabled {
  color: #dadada;
}
.nut-calendar-months .nut-calendar-month-con .nut-calendar-month-day-disabled span {
  color: #dadada;
}
.nut-calendar-months .nut-calendar-month-con .nut-calendar-month-day-choose {
  background-color: rgb(252, 211.4, 207);
  color: #fff;
}
.nut-calendar-months .nut-calendar-month-con .nut-calendar-month-day span {
  padding: 3px 0;
}
.nut-calendar-months .nut-calendar-month-con .nut-calendar-month-day .nut-calendar-day-tip {
  font-size: 12px;
}

@keyframes nutFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes nutFadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.nutFade-enter-active,
.nutFadeIn,
.nutFade-leave-active,
.nutFadeOut {
  animation-duration: 0.25s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.nutFade-enter-active,
.nutFadeIn {
  animation-name: nutFadeIn;
}

.nutFade-leave-active,
.nutFadeOut {
  animation-name: nutFadeOut;
}

@keyframes nutSlideUpIn {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes nutSlideUpOut {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.nutSlideUp-enter-active,
.nutSlideUpIn,
.nutSlideUp-leave-active,
.nutSlideUpOut {
  animation-duration: 0.25s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.nutSlideUp-enter-active,
.nutSlideUpIn {
  animation-name: nutSlideUpIn;
}

.nutSlideUp-leave-active,
.nutSlideUpOut {
  animation-name: nutSlideUpOut;
}

.nut-actionsheet-mask {
  position: fixed;
  z-index: 9998;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.nut-actionsheet-panel {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-height: 80%;
  overflow: auto;
  z-index: 10001;
  background-color: #f6f6f6;
}

.nut-actionsheet-modal {
  padding: 10px;
  margin: 0;
  text-align: center;
  background-color: #fff;
  border-bottom: 1px solid #f6f6f6;
}
.nut-actionsheet-modal .nut-actionsheet-title,
.nut-actionsheet-modal .nut-actionsheet-sub-title {
  padding: 5px 0;
}
.nut-actionsheet-modal .nut-actionsheet-title {
  font-size: 14px;
  color: #2d2d2d;
}
.nut-actionsheet-modal .nut-actionsheet-sub-title {
  font-size: 12px;
  color: #2d2d2d;
  margin-inline-start: 0px;
}

.nut-actionsheet-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nut-actionsheet-cancel,
.nut-actionsheet-item {
  height: 24px;
  padding: 10px;
  line-height: 24px;
  font-size: 14px;
  color: #2d2d2d;
  text-align: center;
  background-color: #fff;
}

.nut-actionsheet-item {
  border-bottom: 1px solid #f6f6f6;
}

.nut-actionsheet-item-active {
  color: #f0250f;
}

.nut-actionsheet-item-disabled {
  color: #e1e1e1;
}

.nut-actionsheet-cancel {
  margin-top: 5px;
  border-top: 1px solid #f6f6f6;
}

.nut-picker {
  background-color: #fff;
  width: 100%;
}

.nut-picker-control {
  display: flex;
  height: 40px;
  border-bottom: 1px solid #f6f6f6;
  text-align: center;
  line-height: 40px;
  font-size: 14px;
}
.nut-picker-control .nut-picker-cancel-btn,
.nut-picker-control .nut-picker-confirm-btn {
  width: 60px;
  color: #f0250f;
}
.nut-picker-control .nut-picker-title {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nut-picker-panel {
  height: 252px;
  display: flex;
}

.nut-picker-list {
  flex: 1;
  position: relative;
  height: 252px;
  overflow: hidden;
  text-align: center;
}
.nut-picker-list .nut-picker-list-panel {
  transform-style: preserve-3d;
}
.nut-picker-list .nut-picker-mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: top, bottom;
  background-size: 100% 108px;
  background-repeat: no-repeat;
  z-index: 3;
}
.nut-picker-list .nut-picker-indicator {
  position: absolute;
  top: 108px;
  width: 100%;
  height: 34px;
  border-top: 1px solid #dadada;
  border-bottom: 1px solid #dadada;
  z-index: 3;
}
.nut-picker-list .nut-picker-content,
.nut-picker-list .nut-picker-roller {
  position: absolute;
  top: 108px;
  width: 100%;
  height: 36px;
}
.nut-picker-list .nut-picker-content {
  background: #fff;
  z-index: 2;
  overflow: hidden;
}
.nut-picker-list .nut-picker-item,
.nut-picker-list .nut-picker-roller-item {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 36px;
  line-height: 36px;
  color: #2d2d2d;
  font-size: 14px;
  text-align: center;
}
.nut-picker-list .nut-picker-item {
  font-size: 15px;
  background: #fff;
}
.nut-picker-list .nut-picker-roller {
  z-index: 1;
  transform-style: preserve-3d;
}
.nut-picker-list .nut-picker-roller .nut-picker-roller-item {
  backface-visibility: hidden;
  position: absolute;
  top: 0;
  width: 100%;
  color: #848484;
}
.nut-picker-list .nut-picker-roller .nut-picker-roller-item-hidden {
  visibility: hidden;
  opacity: 0;
}

.nut-picker-placeholder {
  height: 1px;
}

.nut-navbar {
  height: 40px;
  line-height: 40px;
  background-color: #fff;
  position: relative;
}
.nut-navbar .nav-left {
  position: absolute;
  left: 15px;
  top: 50%;
  height: 40px;
  line-height: 40px;
  margin-top: -20px;
  font-size: 14px;
}
.nut-navbar .nav-left .back {
  float: left;
  margin-right: 8px;
}
.nut-navbar .nav-left .back .back-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml, %3Csvg width='19' height='36' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.552 35.569a1.5 1.5 0 0 1-2.121-.017c-5.952-6.05-9.905-10.1-15.857-16.15a2 2 0 0 1 0-2.804c5.952-6.05 9.905-10.1 15.857-16.15a1.5 1.5 0 1 1 2.138 2.104C12.847 8.368 9.125 12.184 3.403 18c5.722 5.816 9.444 9.632 15.166 15.448a1.5 1.5 0 0 1-.017 2.121z' fill='rgb(158,158,158)' fill-rule='evenodd'/%3E%3C/svg%3E") no-repeat;
  background-size: contain;
  vertical-align: middle;
}
.nut-navbar .nav-center .nav-title {
  width: auto;
  margin: 0 80px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
}
.nut-navbar .nav-right {
  position: absolute;
  right: 15px;
  top: 50%;
  height: 40px;
  line-height: 40px;
  margin-top: -20px;
  font-size: 14px;
}
.nut-navbar .nav-right .more {
  float: right;
  margin-left: 8px;
}
.nut-navbar .nav-right .more .more-icon:after {
  content: "\2022\2022\2022";
  font-size: 16px;
}

.nut-noticebar {
  display: flex;
  height: 40px;
  padding: 0 16px;
  font-size: 14px;
  line-height: 24px;
  position: relative;
  align-items: center;
  color: #848484;
  background-color: rgb(251, 248, 220);
  color: rgb(211, 125, 66);
}
.nut-noticebar.wrapable {
  height: auto;
  padding: 8px 16px;
}
.nut-noticebar.wrapable .wrap {
  height: auto;
}
.nut-noticebar.wrapable .wrap .content {
  position: relative;
  white-space: normal;
  word-wrap: break-word;
}
.nut-noticebar a {
  text-decoration: none;
  color: rgb(211, 125, 66);
}
.nut-noticebar .withicon {
  position: relative;
  padding-right: 40px;
}
.nut-noticebar .left-icon {
  height: 16px;
  min-width: 16px;
  margin-right: 5px;
  box-sizing: border-box;
  background-size: 100% 100%;
}
.nut-noticebar .right-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  box-sizing: border-box;
  padding-left: 5px;
}
.nut-noticebar .wrap {
  flex: 1;
  height: 24px;
  overflow: hidden;
  position: relative;
}
.nut-noticebar .content {
  position: absolute;
  white-space: nowrap;
}
.nut-noticebar .content.nut-ellipsis {
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nut-noticebar .play {
  animation: nut-notice-bar-play linear both running;
}
.nut-noticebar .play-infinite {
  animation: nut-notice-bar-play-infinite linear infinite both running;
}
.nut-noticebar .play-vertical {
  animation: nut-notice-bar-play-vertical linear infinite both running;
}

@keyframes nut-notice-bar-play {
  to {
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes nut-notice-bar-play-infinite {
  to {
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes nut-notice-bar-play-vertical {
  to {
    transform: translateY(40px);
  }
}
.nut-noticebar-vertical {
  position: relative;
  display: flex;
  justify-content: space-between;
  height: 40px;
  padding: 0 16px;
  border-radius: 4px;
  box-sizing: border-box;
  overflow: hidden;
}
.nut-noticebar-vertical .horseLamp_list {
  display: block;
  flex: 1;
}
.nut-noticebar-vertical .horseLamp_list .horseLamp_list_item {
  display: flex;
  align-items: center;
  height: 40px;
  font-size: 16px;
}
.nut-noticebar-vertical .go {
  align-self: center;
}

.nut-switch {
  position: relative;
  width: auto;
  display: inline-block !important;
  background: #fff;
  border-radius: 1000px;
  vertical-align: bottom;
  box-sizing: content-box;
  border: 2px solid #dadada;
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.nut-switch .nut-switch-label {
  position: relative;
  width: auto;
  left: 0;
  margin-left: 20px;
  margin-right: 3px;
  padding: 0 2px 0 2px !important;
  text-align: center !important;
  color: #999 !important;
  font-style: normal !important;
  font-size: 12px;
}
.nut-switch .nut-switch-btn {
  position: absolute;
  left: 0;
  background: #dadada;
  border: 2px solid #fff;
  border-radius: 50%;
  box-sizing: border-box;
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.nut-switch.nut-switch-active {
  border-color: #f0250f;
}
.nut-switch.nut-switch-active .nut-switch-label {
  left: 4px;
  margin-left: 0px;
  color: red !important;
  margin-right: 22px;
}
.nut-switch.nut-switch-active .nut-switch-btn {
  background-color: #f0250f;
}
.nut-switch.nut-switch-disabled {
  opacity: 0.6;
}

.nut-switch-small {
  height: 14px;
  min-width: 30px;
}
.nut-switch-small .nut-switch-label {
  font-size: 10px;
  top: -2px;
  margin-left: -25px;
}
.nut-switch-small .nut-switch-btn {
  height: 14px;
  width: 14px;
}
.nut-switch-small.nut-switch-active .nut-switch-btn {
  left: 100%;
  margin-left: -15px;
}

.nut-switch-base {
  height: 20px;
  line-height: 20px;
  min-width: 38px;
}
.nut-switch-base .nut-switch-btn {
  height: 20px;
  width: 22px;
}
.nut-switch-base.nut-switch-active .nut-switch-btn {
  left: 100%;
  margin-left: -21px;
}

.nut-switch-large {
  height: 28px;
  line-height: 28px;
  min-width: 58px;
  font-size: 14px;
}
.nut-switch-large .nut-switch-label {
  margin-right: 8px;
  left: 6px;
}
.nut-switch-large .nut-switch-btn {
  height: 28px;
  min-width: 28px;
}
.nut-switch-large.nut-switch-active .nut-switch-label {
  margin-right: 30px;
}
.nut-switch-large.nut-switch-active .nut-switch-btn {
  left: 100%;
  margin-left: -28px;
}

.nut-slider {
  display: flex;
  align-items: center;
  height: 30px;
  margin: 0 10px;
}
.nut-slider .nut-slider-box {
  flex: 1;
  position: relative;
  height: 2px;
  background-color: #f0250f;
}
.nut-slider .nut-slider-Handle {
  position: absolute;
  top: 50%;
  left: 0;
  user-select: none;
  transform: translate(-50%, -50%);
  height: 20px;
  width: 20px;
  border: solid 2px #f0250f;
  border-radius: 50%;
  box-sizing: border-box;
  box-shadow: none;
  transition: box-shadow, border-width 0.5s ease-in;
  background-color: #ffffff;
}
.nut-slider .nut-slider-Handle.nut-slider-ani {
  border-width: 8px;
  box-shadow: 0 0 0 4px rgba(239.28, 40.34, 18.78, 0.5);
  transition-timing-function: ease-out;
}
.nut-slider .nut-slider-Handle.nut-slider-ani .nut-slider-label {
  opacity: 1;
  transform: translate(-50%, -160%);
}
.nut-slider .nut-slider-label {
  pointer-events: none;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: opacity, transform 0.2s linear;
  transform: translate(-50%, -100%);
  font-size: 12px;
  padding: 5px;
  background-color: #f0250f;
  color: #ffffff;
  border-radius: 4px;
  z-index: 9999;
}
.nut-slider .nut-slider-label.nut-slider-label-always {
  opacity: 1;
  transform: translate(-50%, -160%);
}
.nut-slider .nut-slider-label::after {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -6px);
  height: 12px;
  width: 12px;
  content: "\25BC";
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  text-align: center;
  color: #f0250f;
}
.nut-slider .nut-slider-left-text {
  margin-right: 15px;
}
.nut-slider .nut-slider-right-text {
  margin-left: 15px;
}

.nut-range {
  display: flex;
  align-items: center;
  height: 30px;
  margin: 0 10px;
}
.nut-range .nut-range-box {
  flex: 1;
  position: relative;
  height: 3px;
  border-radius: 5px;
  background: rgba(240, 37, 15, 0.3);
}
.nut-range .nut-range-area {
  position: absolute;
  top: 0px;
  height: 3px;
  z-index: 123;
  background: #f0250f;
}
.nut-range .nut-range-label {
  pointer-events: none;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  background: #f0250f;
  transition: opacity, transform 0.2s linear;
  transform: translate(-50%, -100%);
  font-size: 12px;
  padding: 5px;
  color: #ffffff;
  border-radius: 4px;
  z-index: 9999;
}
.nut-range .nut-range-label.nut-range-label-always {
  opacity: 1;
  transform: translate(-50%, -160%);
}
.nut-range .nut-range-label .nut-range-after {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -6px);
  height: 12px;
  width: 12px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  text-align: center;
  color: #f0250f;
}
.nut-range .nut-range-left-text {
  margin-right: 15px;
}
.nut-range .nut-range-right-text {
  margin-left: 15px;
}
.nut-range .nut-range-Handle {
  position: absolute;
  top: 50%;
  left: 0;
  user-select: none;
  transform: translate(-50%, -50%);
  height: 20px;
  width: 20px;
  border-radius: 50%;
  box-sizing: border-box;
  box-shadow: none;
  border: 2px solid #f0250f;
  transition: box-shadow, border-width 0.5s ease-in;
  background-color: #ffffff;
  z-index: 124;
}
.nut-range .nut-range-Handle.nut-range-ani {
  border-width: 8px !important;
  transition-timing-function: ease-out;
}
.nut-range .nut-range-Handle.nut-range-ani .nut-range-label {
  opacity: 1;
  background: #f0250f;
  transform: translate(-50%, -160%);
}

.nut-picker {
  background-color: #fff;
  width: 100%;
}

.nut-picker-control {
  display: flex;
  height: 40px;
  border-bottom: 1px solid #f6f6f6;
  text-align: center;
  line-height: 40px;
  font-size: 14px;
}
.nut-picker-control .nut-picker-cancel-btn,
.nut-picker-control .nut-picker-confirm-btn {
  width: 60px;
  color: #f0250f;
}
.nut-picker-control .nut-picker-title {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nut-picker-panel {
  height: 252px;
  display: flex;
}

.nut-picker-list {
  flex: 1;
  position: relative;
  height: 252px;
  overflow: hidden;
  text-align: center;
}
.nut-picker-list .nut-picker-list-panel {
  transform-style: preserve-3d;
}
.nut-picker-list .nut-picker-mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: top, bottom;
  background-size: 100% 108px;
  background-repeat: no-repeat;
  z-index: 3;
}
.nut-picker-list .nut-picker-indicator {
  position: absolute;
  top: 108px;
  width: 100%;
  height: 34px;
  border-top: 1px solid #dadada;
  border-bottom: 1px solid #dadada;
  z-index: 3;
}
.nut-picker-list .nut-picker-content,
.nut-picker-list .nut-picker-roller {
  position: absolute;
  top: 108px;
  width: 100%;
  height: 36px;
}
.nut-picker-list .nut-picker-content {
  background: #fff;
  z-index: 2;
  overflow: hidden;
}
.nut-picker-list .nut-picker-item,
.nut-picker-list .nut-picker-roller-item {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 36px;
  line-height: 36px;
  color: #2d2d2d;
  font-size: 14px;
  text-align: center;
}
.nut-picker-list .nut-picker-item {
  font-size: 15px;
  background: #fff;
}
.nut-picker-list .nut-picker-roller {
  z-index: 1;
  transform-style: preserve-3d;
}
.nut-picker-list .nut-picker-roller .nut-picker-roller-item {
  backface-visibility: hidden;
  position: absolute;
  top: 0;
  width: 100%;
  color: #848484;
}
.nut-picker-list .nut-picker-roller .nut-picker-roller-item-hidden {
  visibility: hidden;
  opacity: 0;
}

.nut-picker-placeholder {
  height: 1px;
}

.nut-progress {
  position: relative;
  display: flex;
}
.nut-progress .nut-progress-outer {
  flex: 1;
  background-color: #f3f3f3;
  border-radius: 100px;
  overflow: hidden;
  height: 12px;
}
.nut-progress .nut-progress-outer .nut-progress-inner {
  width: 30%;
  height: 100%;
  background-color: #f0250f;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: relative;
}
.nut-progress .nut-progress-outer .nut-progress-inner .nut-progress-text {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}
.nut-progress .nut-progress-outer .nut-active:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 10px;
  animation: progressActive 2s ease-in-out infinite;
}
@keyframes progressActive {
  0% {
    background: rgba(255, 255, 255, 0.1);
    width: 0;
  }
  20% {
    background: rgba(255, 255, 255, 0.5);
    width: 0;
  }
  to {
    background: rgba(255, 255, 255, 0);
    width: 100%;
  }
}
.nut-progress .nut-progress-outer.nut-progress-small {
  height: 12px;
}
.nut-progress .nut-progress-outer.nut-progress-small .nut-progress-text {
  font-size: 12px;
  line-height: 12px;
}
.nut-progress .nut-progress-outer.nut-progress-base {
  height: 16px;
}
.nut-progress .nut-progress-outer.nut-progress-base .nut-progress-text {
  font-size: 12px;
  line-height: 16px;
}
.nut-progress .nut-progress-outer.nut-progress-large {
  height: 20px;
}
.nut-progress .nut-progress-outer.nut-progress-large .nut-progress-text {
  font-size: 20px;
  line-height: 20px;
}
.nut-progress .nut-progress-outer-part {
  width: 90%;
}
.nut-progress .nut-progress-text {
  padding: 0 5px;
  font-size: 12px;
  line-height: 1;
}
.nut-progress .nut-icon-success,
.nut-progress .nut-icon-fail {
  width: 10px;
  height: 10px;
  display: inline-block;
}
.nut-progress .nut-icon-success {
  background: url(./static/img/success.1ddd788.png) no-repeat;
  background-size: cover;
}
.nut-progress .nut-icon-fail {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAcCAYAAAByDd+UAAAAAXNSR0IArs4c6QAAAlpJREFUSA29VjFPVEEQntkcGBrvEpoTirtXIFBSmEBBjIU9iVT8ARoLY21xhb/FAjDQaWIlhEBiCC1aeFDIXWMCdHq6w3wr+9h33LvbJ5fb5GVnZ+eb782+fTPDFDFOpyoLQrRCVpaFZZqEpxyM5ZyFf5DhPSbaqZ9fHA9yp3b546xaXrUsb0VoNt/qdoeZvhrhN7X25datNiv1JDytlRP5Je80qsWsedxKnR7yA16rn102uxF3CJvVylNi+16jmuw2LrLWaH+SmBdJ++JziMsQgkzIflKDsdDoHnKHyTwPSVNCd4y/5UtMZApq4SX0yB8NehlEyuP8xB+v8QD3zSKOkZk/1qdnangge3zejADg2+87QtzGAhdkm4+OOnjUybZ31G+Gb3DAxhHi6vcDhHsa1R+/DmWvy5s9h3E/deR/lucsRq9HOwsuo+GuxACGYQMug3Q1DGdRPpRLM5HmxhENcJk0EY+CVJN++h+Ogk85xJCWmEJkVuZS+1BOlX0EllYJ9UxIHvcxy2xZklffq5UJKC3Z9czmgAW4SiieelOfDbANtzWx25ehIlpWLqOJeCcacGOoCfmEmL4VximXQVuASh0LZuKNpHU1n6y/nlfch2iccoDL3VK0BdFAI7uw5UbDKvl+LM5z6In+G83qw4OYioHjZDZrxtrSX+ZNEal5H3mzkhwm7asl7KeERQpwnuNeen3B3gXYVWTtQRSEOjes0UFf46s9nGYyDXoP9CB4q/syusi6+pk7hFA4Uu1BcO7/Swos+piwefK+0m/oFeE8skY4JIU8zFb/GpFg9zc7W1jaAAAAAElFTkSuQmCC) no-repeat;
  background-size: cover;
}

.nut-price {
  font-size: 12px;
  display: inline;
}
.nut-price .price-symbol {
  font-size: 12px;
}
.nut-price .price-big {
  font-size: 16px;
}
.nut-price .price-small {
  font-size: 12px;
}

.nut-col {
  float: left;
  box-sizing: border-box;
  word-break: break-all;
}

.nut-col-offset-1 {
  margin-left: 4.1666666667%;
}

.nut-col-1 {
  width: 4.1666666667%;
}

.nut-col-offset-2 {
  margin-left: 8.3333333333%;
}

.nut-col-2 {
  width: 8.3333333333%;
}

.nut-col-offset-3 {
  margin-left: 12.5%;
}

.nut-col-3 {
  width: 12.5%;
}

.nut-col-offset-4 {
  margin-left: 16.6666666667%;
}

.nut-col-4 {
  width: 16.6666666667%;
}

.nut-col-offset-5 {
  margin-left: 20.8333333333%;
}

.nut-col-5 {
  width: 20.8333333333%;
}

.nut-col-offset-6 {
  margin-left: 25%;
}

.nut-col-6 {
  width: 25%;
}

.nut-col-offset-7 {
  margin-left: 29.1666666667%;
}

.nut-col-7 {
  width: 29.1666666667%;
}

.nut-col-offset-8 {
  margin-left: 33.3333333333%;
}

.nut-col-8 {
  width: 33.3333333333%;
}

.nut-col-offset-9 {
  margin-left: 37.5%;
}

.nut-col-9 {
  width: 37.5%;
}

.nut-col-offset-10 {
  margin-left: 41.6666666667%;
}

.nut-col-10 {
  width: 41.6666666667%;
}

.nut-col-offset-11 {
  margin-left: 45.8333333333%;
}

.nut-col-11 {
  width: 45.8333333333%;
}

.nut-col-offset-12 {
  margin-left: 50%;
}

.nut-col-12 {
  width: 50%;
}

.nut-col-offset-13 {
  margin-left: 54.1666666667%;
}

.nut-col-13 {
  width: 54.1666666667%;
}

.nut-col-offset-14 {
  margin-left: 58.3333333333%;
}

.nut-col-14 {
  width: 58.3333333333%;
}

.nut-col-offset-15 {
  margin-left: 62.5%;
}

.nut-col-15 {
  width: 62.5%;
}

.nut-col-offset-16 {
  margin-left: 66.6666666667%;
}

.nut-col-16 {
  width: 66.6666666667%;
}

.nut-col-offset-17 {
  margin-left: 70.8333333333%;
}

.nut-col-17 {
  width: 70.8333333333%;
}

.nut-col-offset-18 {
  margin-left: 75%;
}

.nut-col-18 {
  width: 75%;
}

.nut-col-offset-19 {
  margin-left: 79.1666666667%;
}

.nut-col-19 {
  width: 79.1666666667%;
}

.nut-col-offset-20 {
  margin-left: 83.3333333333%;
}

.nut-col-20 {
  width: 83.3333333333%;
}

.nut-col-offset-21 {
  margin-left: 87.5%;
}

.nut-col-21 {
  width: 87.5%;
}

.nut-col-offset-22 {
  margin-left: 91.6666666667%;
}

.nut-col-22 {
  width: 91.6666666667%;
}

.nut-col-offset-23 {
  margin-left: 95.8333333333%;
}

.nut-col-23 {
  width: 95.8333333333%;
}

.nut-col-offset-24 {
  margin-left: 100%;
}

.nut-col-24 {
  width: 100%;
}

.nut-row:after {
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  content: "";
}

.nut-row-flex {
  display: flex;
}
.nut-row-flex:after {
  display: none;
}
.nut-row-flex .nut-col {
  float: none;
}

.nut-row-justify-center {
  justify-content: center;
}

.nut-row-justify-end {
  justify-content: flex-end;
}

.nut-row-justify-space-between {
  justify-content: space-between;
  align-items: center;
}

.nut-row-justify-space-around {
  justify-content: space-around;
}

.nut-row-align-flex-start {
  align-items: flex-start;
}

.nut-row-align-center {
  align-items: center;
}

.nut-row-align-flex-end {
  align-items: flex-end;
}

.nut-row-flex-wrap {
  flex-wrap: wrap;
}

.nut-row-flex-nowrap {
  flex-wrap: nowrap;
}

.nut-row-flex-reverse {
  flex-wrap: wrap-reverse;
}

.nut-col {
  float: left;
  box-sizing: border-box;
  word-break: break-all;
}

.nut-col-offset-1 {
  margin-left: 4.1666666667%;
}

.nut-col-1 {
  width: 4.1666666667%;
}

.nut-col-offset-2 {
  margin-left: 8.3333333333%;
}

.nut-col-2 {
  width: 8.3333333333%;
}

.nut-col-offset-3 {
  margin-left: 12.5%;
}

.nut-col-3 {
  width: 12.5%;
}

.nut-col-offset-4 {
  margin-left: 16.6666666667%;
}

.nut-col-4 {
  width: 16.6666666667%;
}

.nut-col-offset-5 {
  margin-left: 20.8333333333%;
}

.nut-col-5 {
  width: 20.8333333333%;
}

.nut-col-offset-6 {
  margin-left: 25%;
}

.nut-col-6 {
  width: 25%;
}

.nut-col-offset-7 {
  margin-left: 29.1666666667%;
}

.nut-col-7 {
  width: 29.1666666667%;
}

.nut-col-offset-8 {
  margin-left: 33.3333333333%;
}

.nut-col-8 {
  width: 33.3333333333%;
}

.nut-col-offset-9 {
  margin-left: 37.5%;
}

.nut-col-9 {
  width: 37.5%;
}

.nut-col-offset-10 {
  margin-left: 41.6666666667%;
}

.nut-col-10 {
  width: 41.6666666667%;
}

.nut-col-offset-11 {
  margin-left: 45.8333333333%;
}

.nut-col-11 {
  width: 45.8333333333%;
}

.nut-col-offset-12 {
  margin-left: 50%;
}

.nut-col-12 {
  width: 50%;
}

.nut-col-offset-13 {
  margin-left: 54.1666666667%;
}

.nut-col-13 {
  width: 54.1666666667%;
}

.nut-col-offset-14 {
  margin-left: 58.3333333333%;
}

.nut-col-14 {
  width: 58.3333333333%;
}

.nut-col-offset-15 {
  margin-left: 62.5%;
}

.nut-col-15 {
  width: 62.5%;
}

.nut-col-offset-16 {
  margin-left: 66.6666666667%;
}

.nut-col-16 {
  width: 66.6666666667%;
}

.nut-col-offset-17 {
  margin-left: 70.8333333333%;
}

.nut-col-17 {
  width: 70.8333333333%;
}

.nut-col-offset-18 {
  margin-left: 75%;
}

.nut-col-18 {
  width: 75%;
}

.nut-col-offset-19 {
  margin-left: 79.1666666667%;
}

.nut-col-19 {
  width: 79.1666666667%;
}

.nut-col-offset-20 {
  margin-left: 83.3333333333%;
}

.nut-col-20 {
  width: 83.3333333333%;
}

.nut-col-offset-21 {
  margin-left: 87.5%;
}

.nut-col-21 {
  width: 87.5%;
}

.nut-col-offset-22 {
  margin-left: 91.6666666667%;
}

.nut-col-22 {
  width: 91.6666666667%;
}

.nut-col-offset-23 {
  margin-left: 95.8333333333%;
}

.nut-col-23 {
  width: 95.8333333333%;
}

.nut-col-offset-24 {
  margin-left: 100%;
}

.nut-col-24 {
  width: 100%;
}

.nut-row:after {
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  content: "";
}

.nut-row-flex {
  display: flex;
}
.nut-row-flex:after {
  display: none;
}
.nut-row-flex .nut-col {
  float: none;
}

.nut-row-justify-center {
  justify-content: center;
}

.nut-row-justify-end {
  justify-content: flex-end;
}

.nut-row-justify-space-between {
  justify-content: space-between;
  align-items: center;
}

.nut-row-justify-space-around {
  justify-content: space-around;
}

.nut-row-align-flex-start {
  align-items: flex-start;
}

.nut-row-align-center {
  align-items: center;
}

.nut-row-align-flex-end {
  align-items: flex-end;
}

.nut-row-flex-wrap {
  flex-wrap: wrap;
}

.nut-row-flex-nowrap {
  flex-wrap: nowrap;
}

.nut-row-flex-reverse {
  flex-wrap: wrap-reverse;
}

.clearfix {
  zoom: 1;
}

.clearfix:after {
  display: block;
  height: 0;
  clear: both;
  content: "";
  visibility: hidden;
}

.nut-step {
  position: relative;
  font-size: 14px;
  color: #999;
}
.nut-step .nut-step-line {
  position: absolute;
  top: 0;
  left: 14px;
  height: 100%;
  width: 1px;
}
.nut-step .nut-step-index {
  position: relative;
  z-index: 99;
  float: left;
  width: 26px;
  height: 26px;
  font-size: 14px;
  line-height: 26px;
  text-align: center;
  border-radius: 50%;
}
.nut-step .nut-step-main {
  padding-left: 40px;
}
.nut-step .nut-step-main .nut-step-title {
  line-height: 28px;
  font-weight: 600;
}
.nut-step .nut-step-main .nut-step-content {
  padding-bottom: 10px;
  line-height: 20px;
  font-size: 12px;
}
.nut-step.nut-step-last .nut-step-line {
  display: none;
}
.nut-step.nut-step-status-wait .nut-step-line {
  background: #ccc;
}
.nut-step.nut-step-status-wait .nut-step-index {
  color: #999;
  border: 1px solid #ccc;
  background: #ffffff;
}
.nut-step.nut-step-status-finish .nut-step-line {
  background: rgb(120, 146, 7.5);
}
.nut-step.nut-step-status-finish .nut-step-index {
  border: 1px solid rgb(120, 146, 7.5);
  background: #ffffff;
  color: rgb(120, 146, 7.5);
}
.nut-step.nut-step-status-process .nut-step-line {
  background: #ccc;
}
.nut-step.nut-step-status-process .nut-step-main {
  color: #666;
}
.nut-step.nut-step-status-process .nut-step-index {
  border: 1px solid rgb(120, 146, 7.5);
  background: rgb(120, 146, 7.5);
  color: #ffffff;
}
.nut-step.nut-step-status-error .nut-step-line {
  background: #ccc;
}
.nut-step.nut-step-status-error .nut-step-main {
  color: #f0250f;
}
.nut-step.nut-step-status-error .nut-step-index {
  border: 1px solid #f0250f;
  background: #ffffff;
  color: #f0250f;
}

.nut-button {
  cursor: pointer;
  height: 40px;
  padding: 0 40px;
  outline: none;
  font-size: 14px;
  color: #fff;
  background: linear-gradient(315deg, #ff4f18 0%, #f20000 100%);
  border: none;
  box-sizing: border-box;
}
.nut-button[disabled] {
  cursor: not-allowed;
  background: #dadada;
  color: #f6f6f6;
}
.nut-button .txt-icon {
  vertical-align: text-top;
  width: 16px;
  height: 16px;
  margin-right: 5px;
  color: #f0250f;
}
.nut-button.red {
  background: #fff;
  border: 1px solid #f0250f;
  color: #f0250f;
}
.nut-button.gray {
  background: #f6f6f6;
  color: #2d2d2d;
}
.nut-button.light {
  color: #2d2d2d;
  background: #fff;
  border: 1px solid #dadada;
}
.nut-button.lightred {
  background: rgba(240, 37, 15, 0.05);
  color: #2d2d2d;
  border: none;
}
.nut-button.primary {
  background: #f0250f;
  color: #fff;
}
.nut-button.default {
  background: #fff;
  color: #2d2d2d;
  border: 1px solid #ababab;
}
.nut-button.actived {
  background: rgba(240, 37, 15, 0.05);
  color: #f0250f;
  border: 1px solid #f0250f;
}
.nut-button.dashed {
  background: #fff;
  color: #2d2d2d;
  border: 1px dashed #dadada;
}
.nut-button.block {
  width: 100%;
  border-radius: 0;
}
.nut-button.small {
  height: 30px;
  padding: 0 15px;
  font-size: 12px;
}
.nut-button.no-txt-small {
  width: 30px;
  padding: 0;
}
.nut-button.no-txt-small .txt-icon {
  margin: 0;
}
.nut-button.no-txt {
  width: 40px;
  padding: 0;
}
.nut-button.no-txt .txt-icon {
  margin: 0;
}
.nut-button.circle {
  border-radius: 50px;
}

.nut-badge {
  position: relative;
  display: inline-block;
}
.nut-badge sup {
  position: absolute;
  height: 18px;
  min-width: 8px;
  line-height: 18px;
  padding: 0 5px;
  background-color: #fff;
  text-align: center;
  border: 1px solid #f0250f;
  color: #f0250f;
  font-size: 10px;
  border-radius: 10px;
  z-index: 9998;
}
.nut-badge .nut-badge__content {
  transform: translateY(-50%) translateX(100%);
}
.nut-badge .is-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  right: 5px;
  border-radius: 10px;
  background: #f0250f;
}

.nut-rate .nut-rate-item {
  display: inline-block;
  vertical-align: bottom;
  width: 30px;
  height: 30px;
  margin-right: 15px;
  background: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='16' height='16' viewBox='0 0 16 16'%3E %3Cpath fill='rgb(240, 37, 15)' d='M16 6.204l-5.528-0.803-2.472-5.009-2.472 5.009-5.528 0.803 4 3.899-0.944 5.505 4.944-2.599 4.944 2.599-0.944-5.505 4-3.899zM8 11.773l-3.492 1.836 0.667-3.888-2.825-2.753 3.904-0.567 1.746-3.537 1.746 3.537 3.904 0.567-2.825 2.753 0.667 3.888-3.492-1.836z'%3E%3C/path%3E %3C/svg%3E") center no-repeat;
  background-size: cover;
}
.nut-rate .nut-rate-item:last-child {
  margin-right: 0;
}
.nut-rate .nut-rate-item.nut-rate-active {
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='16' height='16' viewBox='0 0 16 16'%3E %3Cpath fill='rgb(240, 37, 15)' d='M16 6.204l-5.528-0.803-2.472-5.009-2.472 5.009-5.528 0.803 4 3.899-0.944 5.505 4.944-2.599 4.944 2.599-0.944-5.505 4-3.899z'%3E%3C/path%3E %3C/svg%3E");
}

.nut-swiper {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.nut-swiper .nut-swiper-wrap {
  display: flex;
  display: -webkit-flex;
  width: 100%;
  height: 100%;
  transition: all 0ms ease;
  -webkit-transition: all 0ms ease;
}
.nut-swiper .nut-swiper-slide {
  overflow: hidden;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  width: 100%;
  height: 100%;
  cursor: default;
  position: relative;
}
@keyframes nut-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
.nut-swiper .nut-swiper-slide .nut-lazy.img {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.nut-swiper .nut-swiper-slide .nut-lazy.preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  animation: nut-preloader-spin 1s infinite linear;
  box-sizing: border-box;
  border: 4px solid #fff;
  border-radius: 50%;
  border-top-color: transparent;
}
.nut-swiper.horizontal .nut-swiper-wrap {
  flex-direction: row;
  -webkit-flex-direction: row;
}
.nut-swiper.vertical .nut-swiper-wrap {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.nut-swiper .nut-swiper-pagination {
  position: absolute;
}
.nut-swiper .nut-swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #000;
  opacity: 0.2;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}
.nut-swiper .nut-swiper-pagination .swiper-pagination-bullet.active {
  background-color: #007aff;
  opacity: 1;
}
.nut-swiper.vertical .nut-swiper-pagination {
  right: 10px;
  top: 50%;
  transform: translate3d(0, -50%, 0);
  -webkit-transform: translate3d(0, -50%, 0);
}
.nut-swiper.vertical .nut-swiper-pagination .swiper-pagination-bullet {
  display: block;
  margin: 6px 0;
}
.nut-swiper.horizontal .nut-swiper-pagination {
  bottom: 10px;
  width: 100%;
  text-align: center;
}
.nut-swiper.horizontal .nut-swiper-pagination .swiper-pagination-bullet {
  display: inline-block;
  margin: 0 3px;
}
.nut-swiper img {
  pointer-events: none;
}

.nut-menu .nut-menu-mask {
  position: fixed;
  z-index: 9998;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.nut-menu .nut-menu-panel {
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  color: #2d2d2d;
  overflow: hidden;
  background-color: #fff;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  z-index: 9998;
}
.nut-menu .nut-menu-panel .menu-simple ul,
.nut-menu .nut-menu-panel .menu-multiple-style1 ul,
.nut-menu .nut-menu-panel .menu-multiple-style2 ul,
.nut-menu .nut-menu-panel .menu-multiple-style3 ul {
  position: relative;
  padding: 0;
  margin: 0;
  min-height: 200px;
  max-height: 300px;
  list-style: none;
  overflow-y: auto;
}
.nut-menu .nut-menu-panel .menu-simple ul li,
.nut-menu .nut-menu-panel .menu-multiple-style1 ul li,
.nut-menu .nut-menu-panel .menu-multiple-style2 ul li,
.nut-menu .nut-menu-panel .menu-multiple-style3 ul li {
  position: relative;
  width: 100%;
  height: 45px;
  line-height: 45px;
  padding: 0 0 0 10px;
  font-size: 14px;
  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nut-menu .nut-menu-panel .menu-simple ul li.selected,
.nut-menu .nut-menu-panel .menu-multiple-style1 ul li.selected,
.nut-menu .nut-menu-panel .menu-multiple-style2 ul li.selected,
.nut-menu .nut-menu-panel .menu-multiple-style3 ul li.selected {
  color: #f0250f;
}
.nut-menu .nut-menu-panel .menu-simple ul li:before,
.nut-menu .nut-menu-panel .menu-multiple-style1 ul li:before,
.nut-menu .nut-menu-panel .menu-multiple-style2 ul li:before,
.nut-menu .nut-menu-panel .menu-multiple-style3 ul li:before {
  content: " ";
  height: 1px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
  background-color: #e5e5e5;
  transform: scaleY(0.5);
  transform-origin: 50% 100%;
}
.nut-menu .nut-menu-panel .menu-simple ul li.col2,
.nut-menu .nut-menu-panel .menu-multiple-style1 ul li.col2,
.nut-menu .nut-menu-panel .menu-multiple-style2 ul li.col2,
.nut-menu .nut-menu-panel .menu-multiple-style3 ul li.col2 {
  float: left;
  width: 50%;
}
.nut-menu .nut-menu-panel .menu-simple ul li.col2:nth-child(2n):after,
.nut-menu .nut-menu-panel .menu-multiple-style1 ul li.col2:nth-child(2n):after,
.nut-menu .nut-menu-panel .menu-multiple-style2 ul li.col2:nth-child(2n):after,
.nut-menu .nut-menu-panel .menu-multiple-style3 ul li.col2:nth-child(2n):after {
  content: " ";
  position: absolute;
  z-index: 1;
  pointer-events: none;
  background-color: #e5e5e5;
  width: 1px;
  left: 0;
  top: 13px;
  bottom: 13px;
  transform: scaleX(0.5);
  transform-origin: 0 50%;
}
.nut-menu .nut-menu-panel .menu-simple ul li.col3,
.nut-menu .nut-menu-panel .menu-multiple-style1 ul li.col3,
.nut-menu .nut-menu-panel .menu-multiple-style2 ul li.col3,
.nut-menu .nut-menu-panel .menu-multiple-style3 ul li.col3 {
  float: left;
  width: 33.33%;
}
.nut-menu .nut-menu-panel .menu-simple ul li.col3:not(:nth-child(3n+1)):after,
.nut-menu .nut-menu-panel .menu-multiple-style1 ul li.col3:not(:nth-child(3n+1)):after,
.nut-menu .nut-menu-panel .menu-multiple-style2 ul li.col3:not(:nth-child(3n+1)):after,
.nut-menu .nut-menu-panel .menu-multiple-style3 ul li.col3:not(:nth-child(3n+1)):after {
  content: " ";
  position: absolute;
  z-index: 1;
  pointer-events: none;
  background-color: #e5e5e5;
  width: 1px;
  left: 0;
  top: 13px;
  bottom: 13px;
  transform: scaleX(0.5);
  transform-origin: 0 50%;
}
.nut-menu .nut-menu-panel .menu-simple .nut-buttongroup .nut-button,
.nut-menu .nut-menu-panel .menu-multiple-style1 .nut-buttongroup .nut-button,
.nut-menu .nut-menu-panel .menu-multiple-style2 .nut-buttongroup .nut-button,
.nut-menu .nut-menu-panel .menu-multiple-style3 .nut-buttongroup .nut-button {
  -webkit-appearance: none;
}
.nut-menu .nut-menu-panel .menu-simple li.selected span {
  position: absolute;
  top: 10px;
  right: 10px;
}
.nut-menu .nut-menu-panel .menu-multiple-style1 li .nut-checkbox {
  margin-right: 10px;
  vertical-align: middle;
}
.nut-menu .nut-menu-panel .menu-multiple-style1 li label {
  vertical-align: middle;
}
.nut-menu .nut-menu-panel .menu-multiple-style2 ul li {
  padding: 0 10px 0 10px;
  margin-bottom: 10px;
  text-align: center;
  border-radius: 4px;
}
.nut-menu .nut-menu-panel .menu-multiple-style2 ul li:before {
  height: 0 !important;
}
.nut-menu .nut-menu-panel .menu-multiple-style2 ul li.selected a {
  background-color: #fdf0f0;
  color: #f0250f;
}
.nut-menu .nut-menu-panel .menu-multiple-style2 ul li a {
  display: inline-block;
  width: 100%;
  height: 100%;
  color: #2d2d2d;
  text-decoration: none;
  background-color: #f6f6f6;
}
.nut-menu .nut-menu-panel .menu-multiple-style3 li label {
  padding-left: 5px;
  border-left: 3px solid transparent;
}
.nut-menu .nut-menu-panel .menu-multiple-style3 li.selected label {
  border-left: 3px solid #f0250f;
}

.nut-stepper {
  border: 1px solid #dedede;
}
.nut-stepper .nut-stepper-fake,
.nut-stepper .nut-stepper-fake- {
  background: #fff;
}
.nut-stepper .nut-stepper-fake div,
.nut-stepper .nut-stepper-fake- div {
  background: #fff;
}
.nut-stepper span:first-child {
  border-right: 1px solid #dedede;
}
.nut-stepper span:last-child {
  border-left: 1px solid #dedede;
}

.nut-stepper-simple span {
  font-weight: bold;
}
.nut-stepper-simple input {
  background: #f6f6f6;
}
.nut-stepper-simple .nut-stepper-fake,
.nut-stepper-simple .nut-stepper-fake- {
  background: #f6f6f6;
}
.nut-stepper-simple .nut-stepper-fake div,
.nut-stepper-simple .nut-stepper-fake- div {
  background: #f6f6f6;
}

.nut-stepper,
.nut-stepper-simple {
  width: 100px;
  height: 30px;
  line-height: 30px;
  display: flex;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.nut-stepper .nut-stepper-none-transition,
.nut-stepper-simple .nut-stepper-none-transition {
  transition: none;
}
.nut-stepper .nut-stepper-transition,
.nut-stepper-simple .nut-stepper-transition {
  transition: all 0.4s;
}
.nut-stepper .nut-stepper-fake,
.nut-stepper .nut-stepper-fake-,
.nut-stepper-simple .nut-stepper-fake,
.nut-stepper-simple .nut-stepper-fake- {
  position: absolute;
  top: 0;
  left: 25%;
  right: 25%;
  bottom: 0;
  text-align: center;
  font-size: 13px;
}
.nut-stepper span,
.nut-stepper-simple span {
  color: #666;
  width: 25%;
  text-align: center;
  cursor: pointer;
  padding: 0;
  box-sizing: border-box;
  -webkit-user-select: none;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nut-stepper span svg,
.nut-stepper-simple span svg {
  vertical-align: top;
  width: 11px;
  fill: #333;
}
.nut-stepper input,
.nut-stepper-simple input {
  border: none;
  width: 50%;
  text-align: center;
  border-radius: 0;
  padding: 0;
  appearance: none;
  box-sizing: border-box;
  outline: none;
  font-family: initial;
  color: #333;
}
.nut-stepper .nut-stepper-grey,
.nut-stepper-simple .nut-stepper-grey {
  color: #ececee;
}
.nut-stepper .nut-stepper-grey svg,
.nut-stepper-simple .nut-stepper-grey svg {
  vertical-align: top;
  fill: #cecece !important;
}

.nut-buttongroup {
  display: flex;
  width: 100%;
}
.nut-buttongroup.circle {
  border-radius: 50px;
}
.nut-buttongroup.circle .nut-button:nth-child(1) {
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}
.nut-buttongroup.circle .nut-button:nth-last-child(1) {
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}
.nut-buttongroup.menu {
  height: 50px;
  font-size: 12px;
}
.nut-buttongroup .nut-button {
  flex: 1;
  -webkit-flex: 1;
  border: 1px solid transparent;
}

@keyframes nutPulse {
  0% {
    width: 100%;
    height: 100%;
    opacity: 0.5;
  }
  100% {
    width: 180%;
    height: 180%;
    opacity: 0;
  }
}
.nut-searchbar {
  display: flex;
  flex-flow: row;
}
.nut-searchbar .search-input {
  flex: 1;
  padding-left: 10px;
  background-color: #f6f6f6;
  border-radius: 20px;
  overflow: hidden;
}
.nut-searchbar .search-input form {
  display: flex;
  align-items: center;
  position: relative;
  margin-right: 10px;
}
.nut-searchbar .search-input form .close-icon {
  display: none;
}
.nut-searchbar .search-input form .close-icon.show {
  display: inline-flex;
}
.nut-searchbar .search-input i {
  display: inline-block;
}
.nut-searchbar .search-input input {
  min-width: 80%;
  flex: 1;
  padding: 10px 0;
  margin-left: 10px;
  background-color: #f6f6f6;
  border-color: transparent;
  outline: none;
}
.nut-searchbar .search-input input::-webkit-search-cancel-button {
  display: none;
}
.nut-searchbar .search-input.focus {
  box-shadow: 0px 0px 5px 0px #f6f6f6;
}
.nut-searchbar .search-input.nut-search-ani {
  animation: nutPulse 0.25s;
}
.nut-searchbar .btn-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  color: #2d2d2d;
}
.nut-searchbar a {
  text-decoration: none;
}
.nut-searchbar .nut-icon {
  vertical-align: middle;
}

.nut-imagepicker {
  display: block;
}
.nut-imagepicker .img-list {
  display: inline-block;
}
.nut-imagepicker .img-list .img-item {
  display: inline-block;
  margin: 0 0 5px 0;
}
.nut-imagepicker .img-list .img-item a {
  display: inline-block;
  width: 100%;
  height: 100%;
}
.nut-imagepicker .img-list .img-item a img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  transition: all 5s ease-in-out;
}
.nut-imagepicker .img-list .img-item:last-child {
  margin-right: 0;
}
.nut-imagepicker .img-list .add-icon {
  display: inline-block;
  position: relative;
  border: 1px dashed #f0250f;
  border-radius: 6px;
  box-sizing: border-box;
  cursor: pointer;
}
.nut-imagepicker .img-list .add-icon i {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  color: #f0250f;
}
.nut-imagepicker .img-list .add-icon i svg {
  vertical-align: top;
  fill: currentColor;
}
.nut-imagepicker .img-list .add-icon input[type=file] {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  top: 0;
  left: 0;
}

@keyframes nutPulse {
  0% {
    width: 100%;
    height: 100%;
    opacity: 0.5;
  }
  100% {
    width: 180%;
    height: 180%;
    opacity: 0;
  }
}
.nut-radio {
  margin-right: 10px;
}
.nut-radio .nut-radio-label {
  pointer-events: none;
  vertical-align: middle;
}
.nut-radio input {
  position: relative;
  -webkit-appearance: none;
  border: 1px solid #dadada;
  border-radius: 50%;
  background-size: cover;
  outline: 0;
  opacity: 1;
  vertical-align: middle;
  margin-top: 0px;
}
.nut-radio input::after {
  position: absolute;
  left: 50%;
  top: 50%;
  content: "";
  width: 0;
  height: 0;
  transform: translate(-50%, -50%);
  background: #f0250f;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
}
.nut-radio input:checked {
  background-image: url("data:image/svg+xml, %3Csvg width='20' height='15' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 8l2.5-2.5 5 4.5 10-9.5L20 3 8 15H7z' fill='%23FFFFFF' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-color: #f0250f;
  background-repeat: no-repeat;
  background-position: center;
  border-color: #f0250f;
  background-size: 60%;
  box-shadow: 0 4px 6px 0 rgba(240, 37, 15, 0.15);
}
.nut-radio input:checked:not(:disabled).nut-radio-ani::after {
  animation: nutPulse 0.25s;
}
.nut-radio input:disabled {
  background-color: #dadada;
  border-color: #f6f6f6;
  box-shadow: none;
}
.nut-radio input:disabled:checked {
  background-image: url("data:image/svg+xml, %3Csvg width='20' height='15' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 8l2.5-2.5 5 4.5 10-9.5L20 3 8 15H7z' fill='%23999999' fill-rule='evenodd'/%3E%3C/svg%3E");
}
.nut-radio.nut-radio-size-base input {
  width: 19px;
  height: 19px;
}
.nut-radio.nut-radio-size-base .nut-radio-label {
  font-size: 14px;
}
.nut-radio.nut-radio-size-small input {
  width: 16px;
  height: 16px;
}
.nut-radio.nut-radio-size-small .nut-radio-label {
  font-size: 12px;
}
.nut-radio.nut-radio-size-large input {
  width: 22px;
  height: 22px;
}
.nut-radio.nut-radio-size-large .nut-radio-label {
  font-size: 16px;
}

@keyframes nutPulse {
  0% {
    width: 100%;
    height: 100%;
    opacity: 0.5;
  }
  100% {
    width: 180%;
    height: 180%;
    opacity: 0;
  }
}
.nut-checkbox {
  margin-right: 10px;
}
.nut-checkbox .nut-checkbox-label {
  pointer-events: none;
  vertical-align: middle;
}
.nut-checkbox input {
  position: relative;
  -webkit-appearance: none;
  border: 1px solid #dadada;
  border-radius: 1%;
  background-size: cover;
  outline: 0;
  opacity: 1;
  vertical-align: middle;
  margin-top: 0;
}
.nut-checkbox input::after {
  position: absolute;
  left: 50%;
  top: 50%;
  content: "";
  width: 0;
  height: 0;
  transform: translate(-50%, -50%);
  background: #f0250f;
  border-radius: 1%;
  opacity: 0;
  pointer-events: none;
}
.nut-checkbox input:checked {
  background-color: #fff;
  background-image: url("data:image/svg+xml, %3Csvg width='20' height='15' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 8l2.5-2.5 5 4.5 10-9.5L20 3 8 15H7z' fill='%23FFFFFF' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-color: #f0250f;
  background-repeat: no-repeat;
  background-position: center;
  border-color: #f0250f;
  background-size: 60%;
  box-shadow: 0 4px 6px 0 rgba(240, 37, 15, 0.15);
}
.nut-checkbox input:checked:not(:disabled).nut-checkbox-ani::after {
  animation: nutPulse 0.25s;
}
.nut-checkbox input:disabled {
  background-color: #dadada;
  border-color: #f6f6f6;
  box-shadow: none;
}
.nut-checkbox input:disabled:checked {
  background-color: #fff;
  background-image: url("data:image/svg+xml, %3Csvg width='20' height='15' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 8l2.5-2.5 5 4.5 10-9.5L20 3 8 15H7z' fill='%23999999' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-color: #dadada;
}
.nut-checkbox.nut-checkbox-size-base input {
  width: 19px;
  height: 19px;
}
.nut-checkbox.nut-checkbox-size-base .nut-checkbox-label {
  font-size: 14px;
}
.nut-checkbox.nut-checkbox-size-small input {
  width: 16px;
  height: 16px;
}
.nut-checkbox.nut-checkbox-size-small .nut-checkbox-label {
  font-size: 12px;
}
.nut-checkbox.nut-checkbox-size-large input {
  width: 22px;
  height: 22px;
}
.nut-checkbox.nut-checkbox-size-large .nut-checkbox-label {
  font-size: 16px;
}

.nut-checkboxgroup {
  padding: 10px 0;
}
.nut-checkboxgroup .checkbox-item {
  height: 30px;
  display: flex;
  align-items: center;
  margin-right: 20px;
  padding: 3px 0;
}
.nut-checkboxgroup .checkbox-item .nut-checkbox,
.nut-checkboxgroup .checkbox-item label {
  display: inline-block;
  margin: 0;
  vertical-align: middle;
}
.nut-checkboxgroup .checkbox-item label {
  padding-left: 5px;
}
.nut-checkboxgroup.vertical {
  display: flex;
  align-items: center;
}

@keyframes popupEnter {
  from {
    transform: translate3d(0, 100%, 0);
    -webkit-transform: translate3d(0, 100%, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
  }
}
@keyframes popupLeave {
  from {
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(0, 100%, 0);
    -webkit-transform: translate3d(0, 100%, 0);
  }
}
.popup-leave-active {
  animation: popupLeave 0.3s;
}

.popup-enter-active {
  animation: popupEnter 0.3s;
}

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

.fade-enter,
.fade-leave-active {
  opacity: 0;
}

ul,
li,
input,
a {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

/* ios默认文本框阴影 */
input[type=text],
textarea {
  -webkit-appearance: none;
}

/* 低版本安卓文本框层级问题 */
input:focus {
  -webkit-user-modify: read-write-plaintext-only;
}

ol,
ul {
  list-style: none;
}

.nut-short-pwd {
  color: #232326;
  font-size: 14px;
}
.nut-short-pwd .nut-mask {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
}
.nut-short-pwd .nut-layer {
  background-color: #f3f5f7;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
}
.nut-short-pwd .nut-layer .nut-title {
  line-height: 50px;
  text-align: center;
  border-bottom: 1px solid #f1f2f4;
  font-size: 16px;
}
.nut-short-pwd .nut-layer .nut-close {
  height: 19px;
  width: 19px;
  display: inline-block;
  background: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' fill='rgb(210,210,210)' viewBox='0 0 30 30'%3E%3Cg fill-rule='evenodd'%3E%3Cpath d='M.44 2.56A1.5 1.5 0 1 1 2.56.44l27 27a1.5 1.5 0 1 1-2.12 2.12L15 17.123 2.56 29.56A1.5 1.5 0 1 1 .44 27.44L12.878 15 .44 2.56zM27.44.44a1.5 1.5 0 1 1 2.12 2.12l-9 9a1.5 1.5 0 1 1-2.12-2.12l9-9z'/%3E%3C/g%3E%3C/svg%3E") 0 0 no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: 15px;
  left: 15px;
}
.nut-short-pwd .nut-layer .nut-input-w {
  padding: 30px 0 45px 0;
  text-align: center;
  position: relative;
}
.nut-short-pwd .nut-layer .nut-input-w .nut-fake-list {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAoQAAACMCAMAAADSpUg5AAAAdVBMVEUAAADLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8v////4+PnOzs739/jm6Ozq6urX19fw8fPq6+7z9Pbt7vH19vfo6u3j4+Pf39/09PTv8PHu7u7c3NzT09OW1o/CAAAAE3RSTlMAEd2WPPu6WyPLdeOpCO+EQjbYfSIF/QAAAxhJREFUeNrs1tFugkAQRuEplgWVRu0QBGpbQO37P2IvyUaJV/6oOd8bzOZkZwwAAAAAHku+KpafCXBPy7DZ2pRdSLvTUJXAPQ3Hukkyu2qT1g5IDH3I7VLRlw6odOvLChe9A0J18max7OyAVFdY5GPdOqDVbOOPkGUMuVOIIgxHB9TS6CpMHZA7ZzbK/xyQ61Y22jUOyNULG70TIW4jQrweIsTsZorwULpG2bpIKxqpOviUZx1ppgi/VC9Z7V3k98cl2m9X2Vc+hQiJcBoREuF1RPjPLh0TAADAMAzy73pnn8UBaEDCIKGESUIJg4QSjoQSNgkl/EkoYZBQwiShhEFCCUdCCZuEEv4klDBIKGGSUMIgoYQjoYRNQgl/EkoYJJQwSShhkFDCkVDCJqGEPwklDBJKmCSUMEgo4Ugo4bFLxwQAADAMg/y73rmncQAaaBJKuEkoYZBQwiShhEFCCZ+EEjYJJdwklDBIKGGSUMIgoYRPQgmbhBJuEkoYJJQwSShhkFDCJ6GETUIJNwklDBJKmCSUMEgo4ZNQwiahhJuEEgYJJUwSShgklPBJKGGTUMJNQgmDhBImCSUMEkr4JJSwSSjhJqGEQUIJk4QSBgklfBJK2CSUcJNQwiChhElCCYOEEj4JJWwSSrhJKGGQUMIkoYRBQgmfhBI2CSXcJJQwSHjs0jEBAAAMwyD/rnf2WRyABiRMEkoYJJRwJJSwSSjhT0IJg4QSJgklDBJKOBJK2CSU8CehhEFCCZOEEgYJJRwJJWwSSviTUMIgoYRJQgmDhBKOhBI2CSX8SShhkFDCJKGEQUIJR0IJr/16W0EQiqIouk9xvJVW7BNEVmi3///EHlPT6MWtxBzfMGGxhhHhz84XtRFKNXIOauJ0VCtl0EF/ECFAhJgRIsTkiBCTa0WYPBUwV23kLfcKmKtjaUivClh7JtKQVQoYu6bS5IqggK06lpasVsDUIZWOiEGGqXuRSIdLqRCGSr+VDy6quciwUq120idePUr+CUYXbpVfOumXx+uF3wOj8kWUOfkqd8CYBAAAAABm5wVGxqJatB7HLgAAAABJRU5ErkJggg==) 0 0 no-repeat;
  background-size: 100% 100%;
  height: 70px;
  width: 322px;
  display: inline-block;
}
.nut-short-pwd .nut-layer .nut-input-w .nut-fake-list ul {
  padding-top: 11px;
}
.nut-short-pwd .nut-layer .nut-input-w .nut-fake-list li {
  float: left;
  margin-left: 7px;
}
.nut-short-pwd .nut-layer .nut-input-w .nut-fake-list input {
  height: 45px;
  width: 45px;
  border: 0;
  background: none;
  text-align: center;
  font-size: 16px;
}
.nut-short-pwd .nut-layer .nut-input-w .nut-real-input {
  z-index: 10001;
  position: absolute;
  width: 317.5px;
  top: 30px;
  margin-left: -100%;
  height: 70px;
  opacity: 0;
  width: 200%;
}
.nut-short-pwd .nut-layer-center {
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  -webkit-transform: translate3d(-50%, -50%, 0);
  width: 90%;
  height: 225px;
  border-radius: 6px;
}
.nut-short-pwd .nut-forget {
  text-align: right;
  line-height: 30px;
  padding-right: 33px;
  font-size: 13px;
}
.nut-short-pwd .nut-forget a {
  color: #666;
}
.nut-short-pwd .nut-forget a:before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill-rule='evenodd'%3E%3Cpath d='M.5 12c0 6.351 5.149 11.5 11.5 11.5S23.5 18.351 23.5 12 18.351.5 12 .5.5 5.649.5 12z' stroke='rgb(12,12,12)' fill-opacity='0'/%3E%3Cpath  fill='rgb(12,12,12)' d='M10.909 4.364h2.182v2.182h-2.182zM10.909 8.727h2.182v10.909h-2.182z'/%3E%3C/g%3E%3C/svg%3E") no-repeat;
  background-size: 100% 100%;
  vertical-align: middle;
  margin: -4px 5px 0 0;
}
.nut-short-pwd .nut-fake-cursor {
  position: absolute;
  top: 50px;
  left: 55px;
  display: block;
}

.nut-dis-scroll {
  overflow: hidden;
  height: 100%;
  width: 100%;
}

@media screen and (max-width: 320px) {
  .nut-short-pwd .nut-layer .nut-input-w .nut-fake-list {
    width: 320px;
  }
  .nut-short-pwd .nut-layer-center .nut-input-w .nut-fake-list {
    width: 280px;
  }
  .nut-short-pwd .nut-layer .nut-input-w .nut-fake-list li {
    margin-left: 4px;
  }
  .nut-short-pwd .nut-layer .nut-input-w .nut-fake-list li input {
    width: 42px;
  }
}
.vue-skeleton-loading {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9998;
  font-size: 12px;
  background: #fff;
}
@keyframes backpos {
  from {
    background-position-x: -200px;
  }
  to {
    background-position-x: calc(200px + 100%);
  }
}
.vue-skeleton-loading .skeleton-bac-animation {
  position: absolute;
  z-index: auto;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 80%);
  background-size: 30% 100%;
  background-repeat: no-repeat;
  -webkit-animation: backpos 0.9s ease-in-out 0s infinite;
  animation: backpos 0.9s ease-in-out 0s infinite;
}
.vue-skeleton-loading .skeleton-bac-content {
  overflow: hidden;
}

.vue-skeleton-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vue-skeleton-row {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.vue-skeleton-square-wrap {
  justify-content: center;
  display: flex;
  flex-direction: column;
}
.vue-skeleton-square-wrap .vue-skeleton-square {
  width: 100%;
}

@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
.nutRotate-enter-active,
.nutRotateIn,
.nutRotate-leave-active,
.nutRotateOut {
  animation-duration: 0.25s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.nutRotate-enter-active,
.nutRotateIn {
  animation-name: nutRotateIn;
}

.nutRotate-leave-active,
.nutRotateOut {
  animation-name: nutRotateOut;
}

.nut-scroller {
  display: flex;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.nut-hor-scroll {
  height: 100%;
  width: 100%;
  overflow: hidden;
  touch-action: none;
}
.nut-hor-scroll .nut-hor-list {
  height: 100%;
  width: auto;
  display: inline-flex;
}
.nut-hor-scroll .nut-hor-control {
  height: 100%;
}

.nut-vert-scroll {
  flex: 1;
  overflow: hidden;
}
.nut-vert-scroll .nut-vert-list {
  width: 100%;
  touch-action: none;
  position: relative;
}
.nut-vert-scroll .nut-vert-pulldown {
  position: absolute;
  top: -50px;
  width: 100%;
}
.nut-vert-scroll .nut-vert-loadmore,
.nut-vert-scroll .nut-vert-pulldown,
.nut-vert-scroll .nut-vert-unloadmore {
  height: 50px;
  text-align: center;
  line-height: 50px;
  font-size: 12px;
  color: #999;
}
.nut-vert-scroll .nut-vert-loadmore .nut-vert-pulldown-status,
.nut-vert-scroll .nut-vert-loadmore .nut-vert-loadmore-status,
.nut-vert-scroll .nut-vert-pulldown .nut-vert-pulldown-status,
.nut-vert-scroll .nut-vert-pulldown .nut-vert-loadmore-status,
.nut-vert-scroll .nut-vert-unloadmore .nut-vert-pulldown-status,
.nut-vert-scroll .nut-vert-unloadmore .nut-vert-loadmore-status {
  height: 50px;
}
.nut-vert-scroll .nut-vert-loadmore .nut-vert-loading,
.nut-vert-scroll .nut-vert-pulldown .nut-vert-loading,
.nut-vert-scroll .nut-vert-unloadmore .nut-vert-loading {
  height: 20px;
  width: 20px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADoAAAA6CAMAAADWZboaAAAAP1BMVEUAAAD0KA/xJhHxJA7yJA7xJA7xJA7xJA7xJA7wJA7xJA7xJA7xJA7xJA7xJA7xJA3xJA7xJA7xJA7xJA7xJA5JCyllAAAAFXRSTlMACxdEI3NalDdn3LyvLstPoveIgOl7Sm+EAAABiklEQVRIx9XS0W7kIAxAUWyDwckAIfD/37owUyndbbMJrtSq92UeoiMbGHMWRqKciSKamSw5v23b462d7T0HVIc76NrbGK8h+153vgozi9u39ZW7wOSfSYB3pyY3JqdV4ByiG86FTw6xrSmlx+mZ4757X8PJPo/Uo5OPe4/MaTwGy6dfOvz/VeAY7OGjrPvOcHH9PqXFf9i21krmMrcsi/vnhg55bfPfr1Irm1v5bqM5ElcF7lFYl2WF46DOOTA3w/TuuNBlMLeTvjIeQ8XcD9LS9mOoNRPl1t7GBufYTLW29jotP4dOjk2mhyJi5oKltfG2UYTMZL4VN6aL2FnKpTzGjwjMUiyl9b1F2Ey3lILjlvI8XUshY5lpnm6l8KBhnvpSxETmOE/3UpySjo6Fv5UiMykp5JyNsk5BSUPOqL2nnKP2sERklHWq3pgoaDf+nWPVfwsK6rcNIVilxW7xB6wNMVqtjXqLnVrQWbAj+IJFHcanRQAlxhH0xiJza7/owIrpMOBrsK4L9wckTA/GBoy0fQAAAABJRU5ErkJggg==) no-repeat 0 0;
  background-size: 100%;
  animation: rotation 2s linear infinite;
}
.nut-vert-scroll .nut-vert-loadmore .nut-vert-loading-txt,
.nut-vert-scroll .nut-vert-pulldown .nut-vert-loading-txt,
.nut-vert-scroll .nut-vert-unloadmore .nut-vert-loading-txt {
  height: 50px;
  padding-left: 5px;
}
.nut-vert-scroll .nut-vert-loadmore .nut-vert-loading,
.nut-vert-scroll .nut-vert-loadmore .nut-vert-loading-txt,
.nut-vert-scroll .nut-vert-pulldown .nut-vert-loading,
.nut-vert-scroll .nut-vert-pulldown .nut-vert-loading-txt,
.nut-vert-scroll .nut-vert-unloadmore .nut-vert-loading,
.nut-vert-scroll .nut-vert-unloadmore .nut-vert-loading-txt {
  display: inline-block;
  vertical-align: middle;
}

.nut-backtop {
  display: none;
  line-height: 0;
  position: fixed;
  cursor: pointer;
  bottom: 20px;
  right: 10px;
  z-index: 1111;
}
.nut-backtop.show {
  display: block;
}
.nut-backtop-main {
  transition: all 0.2s ease-in-out;
  width: 38px;
  height: 38px;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 31 39'%3E%3Cg fill-rule='evenodd'%3E%3Cpath d='M1.41 0C.63 0 0 .672 0 1.5S.63 3 1.41 3h28.18C30.37 3 31 2.328 31 1.5S30.369 0 29.59 0H1.41zM17 7.5a1.5 1.5 0 0 0-3 0v30a1.5 1.5 0 1 0 3 0v-30zM8.44 12.44l-8 8a1.5 1.5 0 1 0 2.12 2.12l8-8a1.5 1.5 0 1 0-2.12-2.12z'/%3E%3Cpath d='M16.56 6.44l14 14a1.5 1.5 0 1 1-2.12 2.12l-14-14a1.5 1.5 0 1 1 2.12-2.12z'/%3E%3C/g%3E%3C/svg%3E") no-repeat center;
  background-size: 20px 20px;
  border-radius: 50%;
  border: 2px solid rgba(180, 180, 180, 0.5);
  box-shadow: 0px 0px 2px 3px rgba(220, 220, 220, 0.1);
}
.nut-backtop i {
  color: #fff;
  font-size: 24px;
  padding: 8px 12px;
  line-height: 0;
}

.nut-infiniteloading .bottom-tips {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e6e6e6;
  font-size: 12px;
}
.nut-infiniteloading .bottom-tips .loading-txt {
  padding-left: 5px;
}
.nut-infiniteloading .bottom-tips .loading-hint {
  display: inline-block;
  height: 12px;
  width: 12px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADoAAAA6CAMAAADWZboaAAAAP1BMVEUAAAD0KA/xJhHxJA7yJA7xJA7xJA7xJA7xJA7wJA7xJA7xJA7xJA7xJA7xJA7xJA3xJA7xJA7xJA7xJA7xJA5JCyllAAAAFXRSTlMACxdEI3NalDdn3LyvLstPoveIgOl7Sm+EAAABiklEQVRIx9XS0W7kIAxAUWyDwckAIfD/37owUyndbbMJrtSq92UeoiMbGHMWRqKciSKamSw5v23b462d7T0HVIc76NrbGK8h+153vgozi9u39ZW7wOSfSYB3pyY3JqdV4ByiG86FTw6xrSmlx+mZ4757X8PJPo/Uo5OPe4/MaTwGy6dfOvz/VeAY7OGjrPvOcHH9PqXFf9i21krmMrcsi/vnhg55bfPfr1Irm1v5bqM5ElcF7lFYl2WF46DOOTA3w/TuuNBlMLeTvjIeQ8XcD9LS9mOoNRPl1t7GBufYTLW29jotP4dOjk2mhyJi5oKltfG2UYTMZL4VN6aL2FnKpTzGjwjMUiyl9b1F2Ey3lILjlvI8XUshY5lpnm6l8KBhnvpSxETmOE/3UpySjo6Fv5UiMykp5JyNsk5BSUPOqL2nnKP2sERklHWq3pgoaDf+nWPVfwsK6rcNIVilxW7xB6wNMVqtjXqLnVrQWbAj+IJFHcanRQAlxhH0xiJza7/owIrpMOBrsK4L9wckTA/GBoy0fQAAAABJRU5ErkJggg==) no-repeat 0 0;
  background-size: 100% 100%;
  animation: rotate 1s infinite;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.nut-infiniteloading .bottom-tips .tips-txt {
  position: relative;
}
.nut-infiniteloading .bottom-tips .tips-txt:after, .nut-infiniteloading .bottom-tips .tips-txt:before {
  content: "";
  height: 1px;
  width: 20px;
  background-color: #e6e6e6;
  position: absolute;
  top: 50%;
  margin-top: -0.5px;
}
.nut-infiniteloading .bottom-tips .tips-txt:before {
  left: -25px;
}
.nut-infiniteloading .bottom-tips .tips-txt:after {
  right: -25px;
}

.nut-uploader {
  position: relative;
  display: inline-block;
}
.nut-uploader .uploader {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 14px;
}

.nut-textinput {
  display: flex;
  align-items: center;
  position: relative;
}
.nut-textinput-label {
  line-height: 1.5;
  font-size: 14px;
  color: #2d2d2d;
}
.nut-textinput input {
  flex: 1;
  height: 40px;
  appearance: none;
  font-size: 14px;
  box-sizing: border-box;
  border-radius: 4px;
  border: 1px solid #dddfe6;
  background-color: "#FFFFFF";
  padding: 0 30px 0 10px;
}
.nut-textinput input::-webkit-input-placeholder {
  color: #c1c4cb;
  font-style: normal;
}
.nut-textinput input::-webkit-search-cancel-button {
  display: none;
}
.nut-textinput .nut-textinput-clear {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  height: 20px;
  width: 20px;
}
.nut-textinput .nut-textinput-clear svg {
  vertical-align: top;
  fill: #999999;
}

.nut-textinput-disabled input {
  background-color: #f5f7fa;
  border-color: #e5e7ed;
  color: #999999;
}
.nut-textinput-disabled input::-webkit-input-placeholder {
  color: #d1d3d9;
}
.nut-textinput-disabled input::-webkit-search-cancel-button {
  display: none;
}

.nut-avatar {
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center center;
  display: inline-block;
  position: relative;
  margin-right: 10px;
}
.nut-avatar .icon {
  width: 50%;
  height: 50%;
  background-size: 100% 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.nut-avatar .text {
  display: inline-block;
  width: 100%;
  height: 100%;
  text-align: center;
  overflow: hidden;
}

.avatar-large {
  width: 40px;
  height: 40px;
  line-height: 40px;
}

.avatar-small {
  width: 24px;
  height: 24px;
  line-height: 24px;
}

.avatar-normal {
  width: 32px;
  height: 32px;
  line-height: 32px;
}

.avatar-round {
  border-radius: 50%;
}

.avatar-square {
  border-radius: 5px;
}

.lazyloadDemo img {
  width: 100%;
  background-color: #ddd;
}
.lazyloadDemo > div {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background-size: 100% 100%;
  background-color: #ddd;
}
.lazyloadDemo img[lazy=loading] {
  /*your style here*/
}
.lazyloadDemo img[lazy=error] {
  /*your style here*/
}
.lazyloadDemo img[lazy=loaded] {
  /*your style here*/
}

.nut-textbox {
  background: #fff;
}
.nut-textbox .txt-area {
  border: 1px solid #ececee;
  padding: 5px 20px 5px 10px;
  position: relative;
}
.nut-textbox .txt-area.num-none {
  padding: 10px 20px;
}
.nut-textbox .txt-area textarea {
  resize: none;
  width: 100%;
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
  background: transparent;
  display: block;
}
.nut-textbox .txt-area span {
  color: #666;
  position: absolute;
  right: 10px;
  bottom: 5px;
  font-size: 12px;
}
.nut-textbox .txt-area.error {
  border: 1px solid #e2231a;
}
.nut-textbox .txt-area.error span {
  color: #e2231a;
}
.nut-textbox .txt-area.disabled {
  background-color: #f5f7fa !important;
  border-color: #e5e7ed;
  color: #999;
}

.nut-elevator {
  position: relative;
  width: 100%;
}

.nut-main {
  overflow: scroll;
  background: #fff;
}
.nut-main::-webkit-scrollbar {
  display: none;
}

.nut-elevator-ul {
  width: 100%;
  padding: 0px;
  margin: 0px;
}

.nut-list-title {
  list-style-type: none;
  width: 100%;
}

.nut-list-h {
  font-weight: normal;
  height: 30px;
  line-height: 30px;
  padding-left: 20px;
  background: #f6f6f6;
  margin: 0px;
  font-size: 14px;
  color: #323233;
}

.nut-people-list {
  padding: 0px;
  padding-left: 20px;
}

.nut-list-name {
  font-size: 14px;
  color: #323233;
  list-style-type: none;
  height: 44px;
  line-height: 44px;
  position: relative;
}
.nut-list-name:after {
  position: absolute;
  box-sizing: border-box;
  content: " ";
  pointer-events: none;
  right: 0;
  bottom: 0;
  left: 16px;
  border-bottom: 1px solid #ebedf0;
  -webkit-transform: scaleY(0.5);
  transform: scaleY(0.5);
}
.nut-list-name:last-child:after {
  border-bottom: 0px;
}

.nut-elevator-nav {
  text-align: center;
  width: 50px;
  font-size: 12px;
  position: fixed;
  top: 50%;
  right: 0px;
  transform: translate(0, -50%);
  padding: 0px;
  z-index: 100;
}
.nut-elevator-nav .nut-nav-list {
  list-style-type: none;
  height: 40px;
  line-height: 40px;
}
.nut-elevator-nav .nut-nav-curr {
  color: rgb(7, 193, 96);
}

.nut-big-box {
  width: 26px;
  height: 26px;
  background: #000;
  opacity: 0.7;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  line-height: 26px;
  color: #fff;
  font-family: bold;
}

.popup-fade-enter-active {
  animation: nut-fade-in;
}

.popup-fade-leave-active {
  animation: nut-fade-out;
}

.popup-slide-center-enter-active {
  animation: nut-fade-in;
}
.popup-slide-center-leave-active {
  animation: nut-fade-out;
}
.popup-slide-top-enter, .popup-slide-top-leave-active {
  transform: translate(0, -100%);
}
.popup-slide-right-enter, .popup-slide-right-leave-active {
  transform: translate(100%, 0);
}
.popup-slide-bottom-enter, .popup-slide-bottom-leave-active {
  transform: translate(0, 100%);
}
.popup-slide-left-enter, .popup-slide-left-leave-active {
  transform: translate(-100%, 0);
}

.popup-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.popup-bottom {
  bottom: 0;
  left: 0;
  width: 100%;
}
.popup-bottom.round {
  border-radius: 20px 20px 0 0;
}

.popup-right {
  top: 0;
  right: 0;
}
.popup-right.round {
  border-radius: 20px 0 0 20px;
}

.popup-left {
  top: 0;
  left: 0;
}
.popup-left.round {
  border-radius: 0 20px 20px 0;
}

.popup-top {
  top: 0;
  left: 0;
  width: 100%;
}
.popup-top.round {
  border-radius: 0 0 20px 20px;
}

.popup-box {
  position: fixed;
  max-height: 100%;
  overflow-y: auto;
  background-color: #fff;
  transition: transform 0.3s;
  -webkit-overflow-scrolling: touch;
}

@keyframes nut-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes nut-fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.nut-overflow-hidden {
  overflow: hidden !important;
}

.nutui-popup__close-icon {
  position: absolute;
  z-index: 1;
  color: #969799;
  font-size: 18px;
  cursor: pointer;
}
.nutui-popup__close-icon:active {
  opacity: 0.7;
}
.nutui-popup__close-icon--top-left {
  top: 16px;
  left: 16px;
}
.nutui-popup__close-icon--top-right {
  top: 16px;
  right: 16px;
}
.nutui-popup__close-icon--bottom-left {
  bottom: 16px;
  left: 16px;
}
.nutui-popup__close-icon--bottom-right {
  right: 16px;
  bottom: 16px;
}

.popup-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

@keyframes nut-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes nut-fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.nut-leftslip {
  position: relative;
  overflow: hidden;
}
.nut-leftslip:first-child .nut-slip-main {
  border-top: 1px solid #d8d8d8;
}
.nut-leftslip .slip-main {
  padding: 15px 10px;
  position: relative;
  overflow: hidden;
  display: flex;
  background: #fff;
}
.nut-leftslip .nut-leftslip-item {
  transition: all 0.6s ease;
}
.nut-leftslip .delbtn {
  position: absolute;
  right: -52px;
  top: 0;
  min-width: 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ff4949;
  color: #fff;
  padding: 0 5px;
  font-size: 14px;
}
.nut-leftslip .delbtn span {
  display: flex;
  position: absolute;
  right: 0;
  width: 50px;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.nut-leftslip .nut-delet-btn {
  position: absolute;
  right: -50px;
  top: 0;
  min-width: 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ff4949;
  color: #fff;
  padding: 0 5px;
  font-size: 14px;
}
.nut-leftslip .slipbtns {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
}
.nut-leftslip .slipbtns a {
  display: flex;
  width: 40px;
  background: #ff4949;
  color: #fff;
  height: 100%;
  padding: 0 5px;
  font-size: 14px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.nut-coupon {
  position: relative;
  width: 133px;
  min-height: 76px;
  padding: 7px 12px;
  text-align: center;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-sizing: border-box;
}
.nut-coupon-info {
  position: relative;
  display: flex;
  width: 100%;
}
.nut-coupon-imgbox {
  margin-right: 5px;
}
.nut-coupon-img {
  display: block;
  width: 44px;
  height: 44px;
}
.nut-coupon-desc {
  width: 100%;
  text-align: left;
}
.nut-coupon-discount {
  font-weight: bold;
  font-size: 24px;
  color: #e8220e;
  white-space: nowrap;
}
.nut-coupon-discount .rmb {
  font-size: 14px;
}
.nut-coupon-quota {
  margin-bottom: 4px;
  font-weight: bold;
  font-size: 12px;
  color: #e8220e;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nut-coupon-limitStr {
  margin-bottom: 7px;
  font-size: 12px;
  color: #8c8c8c;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nut-coupon-btn {
  width: 100%;
  height: 22px;
  line-height: 24px;
  font-size: 14px;
  text-align: center;
  color: rgb(232, 34, 14);
  background: rgb(253, 237, 236);
  border: 1px solid rgb(232, 34, 14);
  border-radius: 10px;
}
.nut-coupon-1 .nut-coupon-info {
  justify-content: center;
}
.nut-coupon-1 .nut-coupon-quota {
  text-align: center;
  font-size: 17px;
}
.nut-coupon-use .nut-coupon-btn {
  color: #fff;
  background: #f2140c;
  border-color: #f2140c;
}
.nut-coupon-ban:after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 2;
}
.nut-coupon-ban .nut-coupon-btn {
  color: #fff;
  background: #999;
  border-color: #999;
}

.nut-tabselect .nut-tab {
  background: none;
  border: none;
  padding: 0;
}
.nut-tabselect .nav-bar {
  display: none;
}
.nut-tabselect .nut-tab-item {
  padding: 0;
}
.nut-tabselect .nut-tab-link {
  font-size: 14px;
}
.nut-tabselect .nut-tab-title {
  border: none;
  height: auto;
  line-height: auto;
  padding-left: 18px;
}
.nut-tabselect .nut-tab-title .nut-title-nav-list {
  flex: none;
  padding: 0 13px;
  height: 30px;
  line-height: 30px;
  border: 1px solid #333;
  border-radius: 15px;
  margin-right: 15px;
}
.nut-tabselect .nut-tab-title .nut-title-nav-list a {
  color: #333;
}
.nut-tabselect .nut-tab-title .nut-tab-active {
  border-color: #e2231a;
  background: #fcedeb;
}
.nut-tabselect .nut-tab-title .nut-tab-active a {
  color: #e2231a;
}
.nut-tabselect .nut-tab-inner .nut-tab-title-leftnav {
  min-width: 158px;
}
.nut-tabselect .nut-tab-inner .nut-title-nav {
  min-height: 40px;
  line-height: 40px;
  background: #f4f4f4;
  padding-left: 18px;
}
.nut-tabselect .nut-tab-inner .nut-tab-active {
  background: #fff;
}
.nut-tabselect .nut-tab-inner .nut-tab-link {
  line-height: inherit;
  font-size: 14px;
}
.nut-tabselect .nut-tab-inner .nut-tab-item {
  padding: 0 10px 0 17px;
}
.nut-tabselect .nut-tab-inner .nut-tab-panel {
  max-height: 280px;
  overflow-y: auto;
}
.nut-tabselect .nut-tab-title-leftnav {
  border: none;
  max-height: 280px;
  overflow-y: auto;
  overflow-x: hidden;
}
.nut-tabselect .nut-tab-title-leftnav .nut-title-nav {
  border: none;
}
.nut-tabselect .nut-tabselect-main-title {
  margin: 12px 0 8px 18px;
  font-size: 18px;
  line-height: 25px;
  color: #000;
  font-weight: bold;
}
.nut-tabselect .nut-tabselect-sub-title {
  margin: 22px 0 11px 18px;
  line-height: 20px;
  color: #666;
  font-size: 14px;
}
.nut-tabselect .nut-tab-panel li {
  height: 29px;
  line-height: 29px;
  color: #333;
  border: 1px solid #999999;
  padding-left: 15px;
  margin-bottom: 10px;
  border-radius: 2px;
  cursor: pointer;
}
.nut-tabselect .nut-tab-panel li.nut-tab-panel-list-active {
  color: #e2231a;
  border: 1px solid #e2231a;
  background: #fcedeb;
}
.nut-tabselect .popup-bottom.round {
  border-radius: 12px 12px 0px 0px;
}
.nut-tabselect .nut-tabselect-btn {
  display: flex;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 18px;
}
.nut-tabselect .nut-tabselect-btn a {
  flex: 1;
  height: 30px;
  line-height: 30px;
  background: linear-gradient(135deg, rgb(242, 20, 12) 0%, rgb(242, 39, 12) 70%, rgb(242, 77, 12) 100%);
  border-radius: 15px;
  color: #fff;
  text-align: center;
}

.nut-luckdraw {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.nut-luckdraw .drawTable-name {
  position: absolute;
  left: 10px;
  top: 20px;
  width: calc(100% - 20px);
  font-size: 12px;
  text-align: center;
  color: #ff5722;
}
.nut-luckdraw .drawTable-img {
  position: absolute;
  /*要居中就要50% - 宽度 / 2*/
  left: calc(50% - 15px);
  top: 60px;
  width: 30px;
  height: 30px;
}
.nut-luckdraw .drawTable-img img {
  display: inline-block;
  width: 100%;
  height: 100%;
}
.nut-luckdraw .lucktable {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.nut-luckdraw .prize {
  position: absolute;
  left: 25%;
  top: 0;
  width: 50%;
  height: 50%;
}
.nut-luckdraw .prize .item {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform-origin: center bottom;
}

.pointer {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-43.75%, -50%);
}

.nut-video {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
}
.nut-video .nut-videoplayer {
  width: 100%;
  background: #000;
}
.nut-video .playing-mask {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 60px;
}
.nut-video .playing-mask.custom-touch {
  bottom: 0;
}
.nut-video video {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.nut-video .nut-video-play-btn {
  width: 80px;
  height: 50px;
  margin-top: -25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background-color: rgba(0, 0, 0, 0.45);
  color: #fff;
  transition: border-color 0.4s, outline 0.4s, background-color 0.4s;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -40px;
  padding: 0;
  cursor: pointer;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.5);
  font-size: 30px;
  border-radius: 20%;
}
.nut-video .nut-video-play-btn:before {
  content: "";
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADQAAAA+CAMAAABTPci/AAAAb1BMVEUAAAACAgL///////////////////////////////////+urq4uLi7+/v6zs7OLi4v9/f3Hx8dubm79/f39/f3z8/P5+fn9/f38/Pz4+Pipqans7Oz8/Pz29vbx8fHi4uLX19fq6urg4ODT09P5+flRzniSAAAAJXRSTlMAA6GcmZWlno+RjBYHixgNhRsJgn9PbYh7XhNBdFlHMyc6LCNmyQGEbAAAAdlJREFUSMe11tly4jAQRuHgDdnBYBazw8xk8v7POMI/1Jm0iORUKs31Vy0dMOWX78xk8nWi+SKZrVYzqfHo9Xo4nOZiY83yvW2a9vxnwRmTZta3fhq3O/xlWQodzwNqGre/HlmWuNFeyKtm+7aSSqNG4/x0/VJnTKENxtWOICkkI9YQJIEwdV2uFSSOjPEfBYkjh7kpP+3FBrEIMuzR7AmSRN5oivpdQeJI13mYsig6G8Qi1sgMU55/KUiI1uZCoCJ3BDGo9iYgQnm+IYhBWsN1MPm0VJAADYbBDGra9gQBsccYoSxXEIuCNRiPsqxUkE8Q5IGksvXpFgRkiRBkmCrf/vbLHqgryWYXyUhVrvfLLIobr7KL7/ERPT8axk/xBrImRNV9riBdKG1CNMJwvHlnjAimuiOFABURw6Ka5PNdYfc8JVO+3AEhMPZoO/2MQJE9d1Qc+MGCME9ItufRAMXv4/rXCQYkYvYQQMQi2wDVnRasAbVk+9+YADHEGhMgRKGxAUIkYp44AqSRDAE+RxAhAiQQhAARNDWpHX/DccSenAAR1HzIRoCxqCoJkEDZwxAghY6buyBAGs0uMgQYo5bnW4A1AcapfrvtCTD2FXuxEPm5l3nYyw/PP4V4LkWCqx4LAAAAAElFTkSuQmCC) no-repeat center;
  width: 30px;
  height: 30px;
  display: inline-block;
  background-size: contain;
}
.nut-video .nut-video-controller {
  position: absolute;
  display: flex;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  height: 35px;
  width: 100%;
  z-index: 11111111;
  align-items: center;
  opacity: 0;
  transition: all 1s;
}
.nut-video .nut-video-controller.show-control {
  opacity: 1;
}
.nut-video .nut-video-controller.hide-control {
  opacity: 0;
}
.nut-video .nut-video-controller .control-play-btn {
  width: 18px;
  height: 18px;
  background-image: -webkit-image-set(url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjZmZmZmZmIiBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxwYXRoIGQ9Ik04IDV2MTRsMTEtN3oiLz4KICAgIDxwYXRoIGQ9Ik0wIDBoMjR2MjRIMHoiIGZpbGw9Im5vbmUiLz4KPC9zdmc+Cg==) 1x);
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 10px;
}
.nut-video .nut-video-controller .control-play-btn.puase {
  background-image: -webkit-image-set(url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjZmZmZmZmIiBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxwYXRoIGQ9Ik02IDE5aDRWNUg2djE0em04LTE0djE0aDRWNWgtNHoiLz4KICAgIDxwYXRoIGQ9Ik0wIDBoMjR2MjRIMHoiIGZpbGw9Im5vbmUiLz4KPC9zdmc+Cg==) 1x);
  background-repeat: no-repeat;
  background-position: center;
}
.nut-video .nut-video-controller .duration-time,
.nut-video .nut-video-controller .current-time {
  color: #fff;
  padding: 0 5px;
  font-size: 10px;
}
.nut-video .nut-video-controller .progress-container {
  position: relative;
  display: inline-block;
  height: 100%;
  width: 100%;
  margin: 0 5px;
  transition: all 0.2s ease-in;
  flex: 1;
}
.nut-video .nut-video-controller .progress-container .progress {
  position: absolute;
  top: 50%;
  width: 100%;
  height: 2px;
  margin-top: -0.05rem;
  background: rgba(255, 255, 255, 0.5);
}
.nut-video .nut-video-controller .progress-container .buffered {
  background: rgba(255, 255, 255, 0.8);
  height: 2px;
}
.nut-video .nut-video-controller .progress-container .video-ball {
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 0;
  border-radius: 50%;
}
.nut-video .nut-video-controller .progress-container .video-ball div {
  width: 10px;
  height: 10px;
  background: #fff;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.2);
  margin: 0 -5px;
  border-radius: 50%;
}
.nut-video .nut-video-controller .progress-container .video-ball:hover {
  width: 15px;
  height: 15px;
}
.nut-video .nut-video-controller .fullscreen-icon {
  width: 40px;
  height: 35px;
  background-image: -webkit-image-set(url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjZmZmZmZmIiBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxwYXRoIGQ9Ik0wIDBoMjR2MjRIMHoiIGZpbGw9Im5vbmUiLz4KICAgIDxwYXRoIGQ9Ik03IDE0SDV2NWg1di0ySDd2LTN6bS0yLTRoMlY3aDNWNUg1djV6bTEyIDdoLTN2Mmg1di01aC0ydjN6TTE0IDV2MmgzdjNoMlY1aC01eiIvPgo8L3N2Zz4K) 1x);
  background-repeat: no-repeat;
  background-position: center;
}
.nut-video .nut-video-controller .fullscreen-icon.full2 {
  background-image: -webkit-image-set(url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjZmZmZmZmIiBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxwYXRoIGQ9Ik0wIDBoMjR2MjRIMHoiIGZpbGw9Im5vbmUiLz4KICAgIDxwYXRoIGQ9Ik01IDE2aDN2M2gydi01SDV2MnptMy04SDV2Mmg1VjVIOHYzem02IDExaDJ2LTNoM3YtMmgtNXY1em0yLTExVjVoLTJ2NWg1VjhoLTN6Ii8+Cjwvc3ZnPgo=) 1x);
  background-repeat: no-repeat;
  background-position: center;
}
.nut-video .nut-video-controller .volume {
  width: 30px;
  height: 30px;
  background-image: -webkit-image-set(url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjZmZmZmZmIiBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxwYXRoIGQ9Ik0zIDl2Nmg0bDUgNVY0TDcgOUgzem0xMy41IDNjMC0xLjc3LTEuMDItMy4yOS0yLjUtNC4wM3Y4LjA1YzEuNDgtLjczIDIuNS0yLjI1IDIuNS00LjAyek0xNCAzLjIzdjIuMDZjMi44OS44NiA1IDMuNTQgNSA2Ljcxcy0yLjExIDUuODUtNSA2LjcxdjIuMDZjNC4wMS0uOTEgNy00LjQ5IDctOC43N3MtMi45OS03Ljg2LTctOC43N3oiLz4KICAgIDxwYXRoIGQ9Ik0wIDBoMjR2MjRIMHoiIGZpbGw9Im5vbmUiLz4KPC9zdmc+Cg==) 1x);
  background-repeat: no-repeat;
  background-position: center;
}
.nut-video .nut-video-controller .volume.muted {
  background-image: -webkit-image-set(url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjZmZmZmZmIiBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxwYXRoIGQ9Ik0xNi41IDEyYzAtMS43Ny0xLjAyLTMuMjktMi41LTQuMDN2Mi4yMWwyLjQ1IDIuNDVjLjAzLS4yLjA1LS40MS4wNS0uNjN6bTIuNSAwYzAgLjk0LS4yIDEuODItLjU0IDIuNjRsMS41MSAxLjUxQzIwLjYzIDE0LjkxIDIxIDEzLjUgMjEgMTJjMC00LjI4LTIuOTktNy44Ni03LTguNzd2Mi4wNmMyLjg5Ljg2IDUgMy41NCA1IDYuNzF6TTQuMjcgM0wzIDQuMjcgNy43MyA5SDN2Nmg0bDUgNXYtNi43M2w0LjI1IDQuMjVjLS42Ny41Mi0xLjQyLjkzLTIuMjUgMS4xOHYyLjA2YzEuMzgtLjMxIDIuNjMtLjk1IDMuNjktMS44MUwxOS43MyAyMSAyMSAxOS43M2wtOS05TDQuMjcgM3pNMTIgNEw5LjkxIDYuMDkgMTIgOC4xOFY0eiIvPgogICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPgo8L3N2Zz4K) 1x);
  background-repeat: no-repeat;
  background-position: center;
}
.nut-video .nut-video-error {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 111111;
  background: #000;
  color: #fff;
  text-align: center;
}
.nut-video .nut-video-error p {
  color: #fff;
}

.nut-signature .nut-signature-inner {
  height: 10rem;
  margin-bottom: 1rem;
  border: 1px solid #dadada;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nut-signature .nut-signature-unsopport {
  font-size: 14px;
}

.nut-circleprogress {
  position: relative;
}
.nut-circleprogress .nut-circleprogress-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.nut-timeline .nut-timelineitem {
  position: relative;
  font-size: 12px;
}
.nut-timeline .nut-timelineitem .timelineitem-list-box {
  padding: 0 18px 0 0px;
  color: #333;
}
.nut-timeline .nut-timelineitem .timelineitem-list-box .timelineitem-list {
  position: relative;
  display: flex;
}
.nut-timeline .nut-timelineitem .timelineitem-list-box .timelineitem-list .timelineitem-left {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.nut-timeline .nut-timelineitem .timelineitem-list-box .timelineitem-list .timelineitem-left .timelineitem-point {
  position: relative;
  width: 9px;
}
.nut-timeline .nut-timelineitem .timelineitem-list-box .timelineitem-list .timelineitem-left .timelineitem-point .point-icon {
  width: 7px;
  height: 7px;
  border: 1px solid #f00;
  border-radius: 50%;
}
.nut-timeline .nut-timelineitem .timelineitem-list-box .timelineitem-list .timelineitem-left .timelineitem-point .point-icon.circle-icon {
  background: #f00;
}
.nut-timeline .nut-timelineitem .timelineitem-list-box .timelineitem-list .timelineitem-left .timelineitem-point .point-icon.hollow-icon {
  background: transparent;
}
.nut-timeline .nut-timelineitem .timelineitem-list-box .timelineitem-list .timelineitem-left .timelineitem-point .custom-icon {
  position: absolute;
  left: 50%;
  margin-left: -20px;
  width: 40px;
  height: auto;
  overflow: hidden;
  background: transparent;
  text-align: center;
}
.nut-timeline .nut-timelineitem .timelineitem-list-box .timelineitem-list .timelineitem-left .timelineitem-line {
  width: 1px;
  height: 100%;
  background: #c2c2c2;
}
.nut-timeline .nut-timelineitem .timelineitem-list-box .timelineitem-list .timelineitem-right {
  padding-bottom: 20px;
}
.nut-timeline .nut-timelineitem .timelineitem-list-box .timelineitem-list .timelineitem-right .timelineitem-title {
  margin-bottom: 8px;
  padding-left: 13px;
  line-height: 13px;
  position: relative;
}
.nut-timeline .nut-timelineitem .timelineitem-list-box .timelineitem-list .timelineitem-right .timelineitem-title .time {
  font-size: 12px;
  color: #666;
}
.nut-timeline .nut-timelineitem .timelineitem-list-box .timelineitem-list .timelineitem-right .timelineitem-content {
  padding-left: 13px;
}
.nut-timeline .nut-timelineitem:last-child .timelineitem-line {
  height: 0 !important;
}

.nut-subsidenavbar {
  display: grid;
  float: left;
  width: 100%;
  position: relative;
}
.nut-subsidenavbar .item-title {
  display: block;
  width: 100%;
  height: 40px;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  box-sizing: border-box;
  border-bottom: 1px solid #f6f6f6;
  color: #2d2d2d;
  font-size: 16px;
  background-color: #f6f6f6;
}
.nut-subsidenavbar .item-title .sidenavbar-title {
  line-height: 40px;
  color: #2d2d2d;
}
.nut-subsidenavbar .sidenavbar-icon {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.nut-subsidenavbar .sidenavbar-icon i {
  transition: transform 0.25s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.nut-subsidenavbar .sidenavbar-icon i.up {
  transform: rotate(-180deg);
}
.nut-subsidenavbar .sub-sidenavbar-list {
  width: 100%;
}

.nut-icon {
  list-style: none;
  display: inline-block;
  width: 20px;
  height: 20px;
  color: #2d2d2d;
}
.nut-icon svg {
  vertical-align: top;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.nut-sidenavbaritem {
  height: 40px;
  line-height: 40px;
}
.nut-sidenavbaritem .item-title {
  color: #2d2d2d;
  background-color: #fff;
}

.nut-sidenavbar {
  height: 100%;
  overflow: auto;
}
.nut-sidenavbar .sidenavbar-content {
  position: relative;
  background-color: #fff;
}
.nut-sidenavbar .sidenavbar-content .sidenavbar-list {
  width: 100%;
}

.nut-subsidenavbar {
  display: grid;
  float: left;
  width: 100%;
  position: relative;
}
.nut-subsidenavbar .item-title {
  display: block;
  width: 100%;
  height: 40px;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  box-sizing: border-box;
  border-bottom: 1px solid #f6f6f6;
  color: #2d2d2d;
  font-size: 16px;
  background-color: #f6f6f6;
}
.nut-subsidenavbar .item-title .sidenavbar-title {
  line-height: 40px;
  color: #2d2d2d;
}
.nut-subsidenavbar .sidenavbar-icon {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.nut-subsidenavbar .sidenavbar-icon i {
  transition: transform 0.25s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.nut-subsidenavbar .sidenavbar-icon i.up {
  transform: rotate(-180deg);
}
.nut-subsidenavbar .sub-sidenavbar-list {
  width: 100%;
}

.nut-sidenavbaritem {
  height: 40px;
  line-height: 40px;
}
.nut-sidenavbaritem .item-title {
  color: #2d2d2d;
  background-color: #fff;
}

.nut-drag {
  position: fixed;
  display: inline-block;
  z-index: 9997 !important;
  width: fit-content;
  height: fit-content;
}

.nut-address .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding: 0 20px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  line-height: 20px;
}
.nut-address .title svg {
  width: 20px;
  height: 20px;
}
.nut-address .title .arrow {
  display: inline-block;
  width: 20px;
  height: 20px;
}
.nut-address .title .arrow svg {
  width: 20px;
  height: 20px;
}
.nut-address .custom-address .region-tab {
  position: relative;
  margin-top: 32px;
  padding: 0 20px;
  display: flex;
  font-size: 13px;
  color: #1d1e1e;
}
.nut-address .custom-address .region-tab .tab-item {
  margin-right: 30px;
}
.nut-address .custom-address .region-tab .tab-item.active {
  font-weight: bold;
}
.nut-address .custom-address .region-tab .tab-item span {
  display: inline-block;
  max-width: 100px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nut-address .custom-address .region-tab .region-tab-line {
  position: absolute;
  bottom: -10px;
  left: 20px;
  display: inline-block;
  margin-top: 5px;
  width: 26px;
  height: 3px;
  background: linear-gradient(90deg, rgb(245, 80, 58) 0%, rgb(250, 209, 203) 100%);
  transition: 0.2s all linear;
}
.nut-address .custom-address .region-con {
  margin: 20px 20px 0;
}
.nut-address .custom-address .region-con .region-group {
  padding-top: 15px;
  height: 270px;
  overflow-y: auto;
}
.nut-address .custom-address .region-con .region-group .region-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 12px;
  color: #333;
}
.nut-address .custom-address .region-con .region-group .region-item.active {
  font-weight: bold;
}
.nut-address .custom-address .region-con .region-group .region-item .nut-icon {
  margin-right: 6px;
  width: 13px;
  height: 13px;
}
.nut-address .exist-address {
  margin-top: 15px;
}
.nut-address .exist-address .exist-address-group {
  padding: 15px 20px 0;
  height: 279px;
  overflow-y: scroll;
}
.nut-address .exist-address .exist-address-group .exist-ul .exist-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 12px;
  line-height: 14px;
  color: rgb(51, 51, 51);
}
.nut-address .exist-address .exist-address-group .exist-ul .exist-item.active {
  font-weight: bold;
}
.nut-address .exist-address .exist-address-group .exist-ul .exist-item svg {
  margin-right: 9px;
  width: 13px;
  height: 13px;
}
.nut-address .exist-address .exist-address-group .exist-ul .exist-item span {
  display: inline-block;
  flex: 1;
}
.nut-address .exist-address .choose-other {
  width: 100%;
  height: 54px;
  padding: 6px 0px 0;
  border-top: 1px solid #f2f2f2;
}
.nut-address .exist-address .choose-other .btn {
  width: 90%;
  height: 42px;
  line-height: 42px;
  margin: auto;
  text-align: center;
  background: linear-gradient(135deg, rgb(242, 20, 12) 0%, rgb(242, 39, 12) 70%, rgb(242, 77, 12) 100%);
  border-radius: 21px;
  font-size: 15px;
  color: rgb(255, 255, 255);
}
.nut-address .nut-icon {
  display: flex;
  align-items: center;
}
.nut-address .nut-icon svg {
  margin-top: -1px;
}

.nut-notify {
  box-sizing: border-box;
  padding: 8px 16px;
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  white-space: pre-wrap;
  text-align: center;
  word-wrap: break-word;
}
.nut-notify--primary {
  background-color: #1989fa;
}
.nut-notify--success {
  background-color: #07c160;
}
.nut-notify--danger {
  background-color: #ee0a24;
}
.nut-notify--warning {
  background-color: #ff976a;
}

.nut-countup {
  display: inline-block;
  width: 100%;
  padding: 5px;
  color: #000;
  font-weight: bold;
}
.nut-countup .run-number {
  padding: 0;
  width: 100%;
  overflow: hidden;
  text-align: center;
  font-weight: bold;
  position: relative;
}
.nut-countup .run-number li {
  position: absolute;
  transition: none;
  list-style: none;
}
.nut-countup .run-number li span {
  display: block;
}
.nut-countup .pointstyl {
  position: absolute;
  display: block;
}
.nut-countup .run-number-machine-img {
  overflow: hidden;
}
.nut-countup .run-number-machine-img li {
  float: left;
  background-position: center 0;
  background-repeat: repeat-y;
  background-attachment: scroll;
}
.nut-countup .run-number-img {
  position: relative;
}
.nut-countup .run-number-img li {
  position: absolute;
  transition: none;
  display: inline-block;
  background-position: 0 0;
  background-repeat: no-repeat;
}

.nut-fixednav {
  height: 50px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 0;
  width: 300px;
}
.nut-fixednav.active.left .fixed-btn img {
  transform: rotate(180deg);
}
.nut-fixednav.active.left .fixed-list {
  left: 0;
}
.nut-fixednav.active .fixed-btn img {
  transform: rotate(0deg);
}
.nut-fixednav.active .fixed-list {
  right: 0;
}
.nut-fixednav .fixed-btn {
  box-sizing: border-box;
  position: absolute;
  right: 0;
  z-index: 2;
  width: 50px;
  padding-left: 5px;
  height: 50px;
  background: linear-gradient(135deg, rgb(242, 20, 12) 0%, rgb(242, 39, 12) 70%, rgb(242, 77, 12) 100%);
  border-radius: 25px 0px 0px 25px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nut-fixednav .fixed-btn > img {
  margin-right: 5px;
  width: 4px;
  height: 10px;
  flex-shrink: 0;
  transition: all 0.3s;
  transform: rotate(180deg);
}
.nut-fixednav .fixed-btn > span {
  width: 24px;
  line-height: 13px;
  font-size: 10px;
  color: #fff;
  flex-shrink: 0;
}
.nut-fixednav ul.fixed-list {
  position: absolute;
  right: -100%;
  transition: all 0.5s;
  z-index: 1;
  flex-shrink: 0;
  height: 44px;
  background: #fff;
  display: flex;
  justify-content: space-between;
  border-radius: 25px 0px 0px 25px;
  box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.2);
  padding-left: 20px;
  padding-right: 50px;
}
.nut-fixednav ul.fixed-list li {
  position: relative;
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 40px;
  flex-shrink: 0;
}
.nut-fixednav ul.fixed-list li > img {
  width: 20px;
  height: 20px;
  margin-bottom: 2px;
}
.nut-fixednav ul.fixed-list li span {
  font-size: 10px;
  color: #333;
}
.nut-fixednav ul.fixed-list li b {
  position: absolute;
  right: 0;
  top: 1px;
  height: 14px;
  line-height: 14px;
  font-size: 10px;
  padding: 0 3px;
  color: #f0250f;
  background: #fff;
  border: 1px solid #f0250f;
  border-radius: 7px;
  text-align: center;
  min-width: 12px;
}
.nut-fixednav.left .fixed-btn {
  flex-direction: row-reverse;
  right: auto;
  left: 0;
  border-radius: 0 25px 25px 0;
}
.nut-fixednav.left .fixed-btn > img {
  transform: rotate(0deg);
}
.nut-fixednav.left ul.fixed-list {
  left: -100%;
  right: auto;
  border-radius: 0px 25px 25px 0px;
  padding-left: 50px;
  padding-right: 20px;
}

.nut-numberkeyboard {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  padding-bottom: 22px;
  background-color: #f2f3f5;
  user-select: none;
}
.nut-numberkeyboard .number-board-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: content-box;
  height: 34px;
  padding-top: 6px;
  color: #646566;
  font-size: 16px;
}
.nut-numberkeyboard .number-board-header .tit {
  display: inline-block;
}
.nut-numberkeyboard .number-board-header .keyboard-close {
  position: absolute;
  display: block;
  right: 0;
  padding: 0 16px;
  color: #576b95;
  font-size: 14px;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.nut-numberkeyboard .number-board-body {
  display: flex;
  padding: 6px 0 0 6px;
}
.nut-numberkeyboard .number-board-body .number-board {
  display: flex;
  flex: 3;
  flex-wrap: wrap;
}
.nut-numberkeyboard .number-board-body .key-board-wrapper {
  position: relative;
  flex: 1;
  flex-basis: 33%;
  box-sizing: border-box;
  padding: 0 6px 6px 0;
}
.nut-numberkeyboard .number-board-body .key-board-wrapper .key {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  font-size: 28px;
  line-height: 1.5;
  background-color: #fff;
  border-radius: 8px;
  cursor: pointer;
}
.nut-numberkeyboard .number-board-body .key-board-wrapper .active {
  background-color: #ebedf0;
}
.nut-numberkeyboard .number-board-body .key-board-wrapper img {
  width: 30px;
  height: 24px;
}
.nut-numberkeyboard .number-board-body .key-board-wrapper-large {
  flex-basis: 66%;
}
.nut-numberkeyboard .number-board-body .number-board-sidebar {
  display: flex;
  flex: 1;
  flex-direction: column;
}
.nut-numberkeyboard .number-board-body .number-board-sidebar .key-board-wrapper .key {
  position: absolute;
  top: 0;
  right: 6px;
  bottom: 6px;
  left: 0;
  height: auto;
}
.nut-numberkeyboard .number-board-body .number-board-sidebar .key-board-wrapper .finish {
  font-size: 16px;
  color: #fff;
  background-color: #1989fa;
}
.nut-numberkeyboard .number-board-body .number-board-sidebar .key-board-wrapper .activeFinsh {
  background-color: #0570db;
}

.nut-board-slide-up-enter-active {
  animation: nut-board-slide-up-enter 0.3s both ease-out;
}
.nut-board-slide-up-leave-active {
  animation: nut-board-slide-up-leave 0.3s both ease-in;
}

@keyframes nut-board-slide-up-enter {
  from {
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes nut-board-slide-up-leave {
  to {
    transform: translate3d(0, 100%, 0);
  }
}
.nut-collapse-item {
  position: relative;
}
.nut-collapse-item .collapse-item::after {
  position: absolute;
  box-sizing: border-box;
  content: " ";
  pointer-events: none;
  right: 16px;
  bottom: 0;
  left: 16px;
  border-bottom: 1px solid #ebedf0;
  -webkit-transform: scaleY(0.5);
  transform: scaleY(0.5);
}
.nut-collapse-item .collapse-item {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 10px 16px;
  color: #323233;
  font-size: 14px;
  line-height: 24px;
  background-color: #fff;
  box-sizing: border-box;
}
.nut-collapse-item .collapse-item .collapse-icon {
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -10px;
  right: 16px;
  width: 20px;
  height: 20px;
  line-height: 24px;
  background-image: url(https://img10.360buyimg.com/imagetools/jfs/t1/111306/10/17422/341/5f58aa0eEe9218dd6/28d76a42db334e31.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transition: transform 0.3s;
}
.nut-collapse-item .collapse-item .col-expanded {
  transform: rotate(-180deg);
}
.nut-collapse-item .collapse-item .subTitle {
  position: absolute;
  top: 50%;
  right: 40px;
  margin-top: -12px;
  color: #969799;
}
.nut-collapse-item .collapse-wrapper {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-in-out;
}
.nut-collapse-item .collapse-wrapper .collapse-content {
  padding: 12px 16px;
  color: #969799;
  font-size: 14px;
  line-height: 1.5;
  background-color: #fff;
}
.nut-collapse-item .nut-collapse-item-disabled {
  color: #c8c9cc;
  cursor: not-allowed;
  pointer-events: none;
}
.nut-collapse-item .nut-collapse-item-disabled .collapse-icon-disabled {
  background-image: url(https://img12.360buyimg.com/imagetools/jfs/t1/150037/5/8088/344/5f5b0bf2E214aac54/ec3e64ce3fc46200.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.nut-collapse-item .nut-collapse-item-left .collapse-item {
  padding: 10px 16px 10px 50px;
}
.nut-collapse-item .nut-collapse-item-left .collapse-item .collapse-icon {
  left: 20px;
}
.nut-collapse-item .nut-collapse-item-left .collapse-item .subTitle {
  right: 16px;
}

.adjust-position {
  margin-top: -20px;
  margin-bottom: -20px;
}

.header-wrap {
  position: relative;
  height: 710px;
}
.header-wrap .img-header {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.cube-item {
  height: 90px;
  width: 88px;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  transform: translateZ(0);
}
.cube-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  border-radius: 0 0 26px 26px;
}
.cube-item-box {
  height: 63px;
  width: 100%;
  text-align: center;
  position: absolute;
  background: #fff;
  border-radius: 26px 26px 11px 11px;
  transform: translateZ(0);
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
.cube-item .sub-name {
  width: 100%;
  position: absolute;
  top: 63px;
  padding: 0 10px;
  box-sizing: border-box;
  color: #fff;
  font-size: 14px;
  text-align: center;
  line-height: 27px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transform: translateZ(0);
}
.cube-item .sub-image {
  display: block;
  width: 60px;
  height: 60px;
  margin: 0 auto;
  background-color: #fff;
  background-position: center;
  background-size: 100%;
  transform: translateY(6px);
}
.cube-item .sub-desc {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 77px;
  box-sizing: border-box;
  height: 15px;
  color: #fff;
  border-radius: 6px;
  font-size: 12px;
  text-align: center;
  position: absolute;
  bottom: 29px;
  left: 50%;
  transform-origin: 0 center;
  transform: translate3d(-50%, 0, 1px);
}
.cube-item .sub-desc span {
  width: 100%;
  display: block;
  line-height: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.cube-item--pic::before {
  background: url("https://img12.360buyimg.com/imagetools/jfs/t1/184083/34/6101/38841/60b065caEaaf7c5d0/eec4cd260f46d9f0.png") no-repeat center/100%;
  height: 100%;
}
.cube-item--pic .cube-item-box {
  display: none;
}
.cube-item--pic .sub-desc {
  display: none;
}
.cube-item--pic .sub-name {
  display: none;
}
.cube-item--act::before {
  background: url("https://img11.360buyimg.com/imagetools/jfs/t1/195605/17/5252/39357/60b065caEe0aa4c7e/04a341f4e51c6a9b.png") no-repeat center/100%;
}
.cube-item--act .sub-desc {
  background: #ff5c17;
}
.cube-item--rank::before {
  background: url("https://img14.360buyimg.com/imagetools/jfs/t1/183388/37/6207/39741/60b065caEea1440a1/8860c63660fc9ac4.png") no-repeat center/100%;
}
.cube-item--rank .sub-desc {
  background: #1f95fb;
}
.cube-item--shop::before {
  background: url("https://img12.360buyimg.com/imagetools/jfs/t1/184083/34/6101/38841/60b065caEaaf7c5d0/eec4cd260f46d9f0.png") no-repeat center/100%;
}
.cube-item--shop .sub-desc {
  background: #ffd01f;
}
.cube-item--shop .sub-desc span {
  color: #000;
}
.cube-item--lbs::before {
  background: url("https://img10.360buyimg.com/imagetools/jfs/t1/129094/23/18726/38672/60b065caEb849e8cb/da761e3ebae5bc84.png") no-repeat center/100%;
}
.cube-item--lbs .sub-desc {
  background: #ffd01f;
}
.cube-item--lbs .sub-desc span {
  color: #000;
}
.cube-item--unread {
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  animation: show 2s infinite;
}
.cube-item--special {
  background-size: cover;
  background-repeat: no-repeat;
}
.cube-item--special:before {
  display: none;
}
.cube-item--special .cube-item-box {
  display: none;
}
.cube-item--special .sub-desc {
  display: none;
}
@keyframes show {
  0% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  }
  100% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  }
}
.cube-wrapper--inited .cube-col .cube-item .sub-image {
  animation: cube-image 0.2s cubic-bezier(0.33, 0, 0.67, 1) 1s forwards;
}

@keyframes cube-image {
  0% {
    transform: translateY(13px);
  }
  66% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}

.cube {
  width: 100%;
  z-index: 10;
}
.cube-container {
  width: 100%;
  padding: 15px 0;
  box-sizing: border-box;
  height: 100%;
  overflow: hidden;
}
.cube-wrapper {
  width: 100%;
  white-space: nowrap;
  perspective: 500px;
  animation-play-state: paused;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
}
.cube-col {
  display: inline-block;
  width: 25%;
  box-sizing: border-box;
  transition: inherit;
}
.cube-col--anime:nth-child(5) .cube-item-wrap {
  animation: cube5 560ms cubic-bezier(0.33, 0, 0.67, 1) 1s both;
}
@keyframes cube5 {
  0% {
    animation-timing-function: cubic-bezier(0.33, 0, 0.67, 1);
    transform: translate3d(733px, 0, 0);
  }
  57% {
    animation-timing-function: cubic-bezier(0.33, 0, 0.67, 1);
    transform: translate3d(-30px, 0, 0);
  }
  58% {
    animation-timing-function: cubic-bezier(0.17, 0, 0.67, 1);
    transform: translate3d(-30px, 0, 0);
  }
  100% {
    animation-timing-function: cubic-bezier(0.17, 0, 0.67, 1);
    transform: translate3d(0, 0, 0);
  }
}
.cube-col--anime:nth-child(6) .cube-item-wrap {
  animation: cube6 560ms cubic-bezier(0.33, 0, 0.83, 1) 1.08s both;
}
@keyframes cube6 {
  0% {
    animation-timing-function: cubic-bezier(0.33, 0, 0.83, 1);
    transform: translate3d(554px, 0, 0);
  }
  57% {
    animation-timing-function: cubic-bezier(0.33, 0, 0.83, 1);
    transform: translate3d(-20px, 0, 0);
  }
  58% {
    animation-timing-function: cubic-bezier(0.17, 0, 0.67, 1);
    transform: translate3d(-20px, 0, 0);
  }
  100% {
    animation-timing-function: cubic-bezier(0.17, 0, 0.67, 1);
    transform: translate3d(0, 0, 0);
  }
}
.cube-col--anime:nth-child(7) .cube-item-wrap {
  animation: cube7 560ms cubic-bezier(0.33, 0, 0.83, 1) 1.16s both;
}
@keyframes cube7 {
  0% {
    animation-timing-function: cubic-bezier(0.33, 0, 0.83, 1);
    transform: translate3d(378px, 0, 0);
  }
  57% {
    animation-timing-function: cubic-bezier(0.33, 0, 0.83, 1);
    transform: translate3d(-20px, 0, 0);
  }
  58% {
    animation-timing-function: cubic-bezier(0.17, 0, 0.67, 1);
    transform: translate3d(-20px, 0, 0);
  }
  100% {
    animation-timing-function: cubic-bezier(0.17, 0, 0.67, 1);
    transform: translate3d(0, 0, 0);
  }
}
.cube-col--anime:nth-child(8) .cube-item-wrap {
  animation: cube8 560ms cubic-bezier(0.33, 0, 0.83, 1) 1.28s both;
}
@keyframes cube8 {
  0% {
    animation-timing-function: cubic-bezier(0.33, 0, 0.83, 1);
    transform: translate3d(205px, 0, 0);
  }
  57% {
    animation-timing-function: cubic-bezier(0.33, 0, 0.83, 1);
    transform: translate3d(-20px, 0, 0);
  }
  58% {
    animation-timing-function: cubic-bezier(0.17, 0, 0.67, 1);
    transform: translate3d(-20px, 0, 0);
  }
  100% {
    animation-timing-function: cubic-bezier(0.17, 0, 0.67, 1);
    transform: translate3d(0, 0, 0);
  }
}
.cube-item-wrap {
  margin-bottom: 16px;
}

.fade-x-leave-active {
  transition: all 0.5s ease;
}

.fade-x-enter,
.fade-x-leave-to {
  transform: translateX(100%);
}

.fade-x-enter-active {
  animation: fade-in 0.6s;
  -ms-animation: fade-in 0.6s;
  -webkit-animation: fade-in 0.6s;
}

.bounce-enter-active {
  animation: bounce-in 0.6s;
  -ms-animation: bounce-in 0.6s;
  -webkit-animation: bounce-in 0.6s;
}

.bounce-leave-active {
  transition: all 0.25s ease;
}

.bounce-enter,
.bounce-leave-to {
  transform: scale(0);
}

@keyframes fade-in {
  0% {
    transform: translateX(100%);
  }
  60% {
    transform: translateX(0);
  }
  80% {
    transform: translateX(80px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes bounce-in {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes shake-rotate {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  2% {
    transform: translate(0px, 0px) rotate(1.5deg);
  }
  4% {
    transform: translate(0px, 0px) rotate(-7.5deg);
  }
  6% {
    transform: translate(0px, 0px) rotate(-2.5deg);
  }
  8% {
    transform: translate(0px, 0px) rotate(6.5deg);
  }
  10% {
    transform: translate(0px, 0px) rotate(-4.5deg);
  }
  12% {
    transform: translate(0px, 0px) rotate(0.5deg);
  }
  14% {
    transform: translate(0px, 0px) rotate(-6.5deg);
  }
  16% {
    transform: translate(0px, 0px) rotate(1.5deg);
  }
  18% {
    transform: translate(0px, 0px) rotate(-2.5deg);
  }
  20% {
    transform: translate(0px, 0px) rotate(1.5deg);
  }
  22% {
    transform: translate(0px, 0px) rotate(1.5deg);
  }
  24% {
    transform: translate(0px, 0px) rotate(2.5deg);
  }
  26% {
    transform: translate(0px, 0px) rotate(6.5deg);
  }
  28% {
    transform: translate(0px, 0px) rotate(2.5deg);
  }
  30% {
    transform: translate(0px, 0px) rotate(1.5deg);
  }
  32% {
    transform: translate(0px, 0px) rotate(-4.5deg);
  }
  34% {
    transform: translate(0px, 0px) rotate(-3.5deg);
  }
  36% {
    transform: translate(0px, 0px) rotate(-0.5deg);
  }
  38% {
    transform: translate(0px, 0px) rotate(4.5deg);
  }
  40% {
    transform: translate(0px, 0px) rotate(4.5deg);
  }
  42% {
    transform: translate(0px, 0px) rotate(-0.5deg);
  }
  44% {
    transform: translate(0px, 0px) rotate(1.5deg);
  }
  46% {
    transform: translate(0px, 0px) rotate(-0.5deg);
  }
  48% {
    transform: translate(0px, 0px) rotate(-7.5deg);
  }
  50% {
    transform: translate(0px, 0px) rotate(3.5deg);
  }
  52% {
    transform: translate(0px, 0px) rotate(-5.5deg);
  }
  54% {
    transform: translate(0px, 0px) rotate(-6.5deg);
  }
  56% {
    transform: translate(0px, 0px) rotate(-0.5deg);
  }
  58% {
    transform: translate(0px, 0px) rotate(3.5deg);
  }
  60% {
    transform: translate(0px, 0px) rotate(-2.5deg);
  }
  62% {
    transform: translate(0px, 0px) rotate(3.5deg);
  }
  64% {
    transform: translate(0px, 0px) rotate(6.5deg);
  }
  66% {
    transform: translate(0px, 0px) rotate(-6.5deg);
  }
  68% {
    transform: translate(0px, 0px) rotate(-2.5deg);
  }
  70% {
    transform: translate(0px, 0px) rotate(-3.5deg);
  }
  72% {
    transform: translate(0px, 0px) rotate(-6.5deg);
  }
  74% {
    transform: translate(0px, 0px) rotate(-5.5deg);
  }
  76% {
    transform: translate(0px, 0px) rotate(1.5deg);
  }
  78% {
    transform: translate(0px, 0px) rotate(-1.5deg);
  }
  80% {
    transform: translate(0px, 0px) rotate(3.5deg);
  }
  82% {
    transform: translate(0px, 0px) rotate(1.5deg);
  }
  84% {
    transform: translate(0px, 0px) rotate(-7.5deg);
  }
  86% {
    transform: translate(0px, 0px) rotate(-0.5deg);
  }
  88% {
    transform: translate(0px, 0px) rotate(0.5deg);
  }
  90% {
    transform: translate(0px, 0px) rotate(-3.5deg);
  }
  92% {
    transform: translate(0px, 0px) rotate(-4.5deg);
  }
  94% {
    transform: translate(0px, 0px) rotate(2.5deg);
  }
  96% {
    transform: translate(0px, 0px) rotate(2.5deg);
  }
  98% {
    transform: translate(0px, 0px) rotate(-2.5deg);
  }
}
@keyframes box-rotate {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(360deg);
  }
}
.nut-ninegrid {
  height: 357px;
  width: 357px;
  flex-shrink: 0;
  background-image: url("//img10.360buyimg.com/imagetools/jfs/t1/182262/4/21143/406696/6126fceeEccce5223/61a6b338777fd857.png");
  background-size: 100% 100%;
  overflow: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 12px;
  perspective: 1000;
}
.nut-ninegrid .item {
  position: relative;
  width: 107px;
  height: 107px;
}
.nut-ninegrid .item .front,
.nut-ninegrid .item .back {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 8px;
  padding: 9px 8px 0 8px;
  overflow: hidden;
  backface-visibility: hidden;
  background-image: linear-gradient(#ffefd1, #ffc8a4);
  transition: 1s;
  transform-style: preserve-3d;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.nut-ninegrid .item .front > p,
.nut-ninegrid .item .back > p {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: PingFangSC-Medium;
  text-align: center;
  font-size: 13px;
  height: 15px;
  margin-bottom: 3px;
  color: rgb(46, 45, 45);
  flex-shrink: 0;
}
.nut-ninegrid .item .front .nut-price,
.nut-ninegrid .item .back .nut-price {
  height: 40px;
}
.nut-ninegrid .item .front .nut-price > span,
.nut-ninegrid .item .back .nut-price > span {
  font-family: PingFangSC-Medium;
  font-size: 10px !important;
  color: rgb(249, 18, 50) !important;
}
.nut-ninegrid .item .front .nut-price > span.price-big,
.nut-ninegrid .item .back .nut-price > span.price-big {
  font-size: 16px !important;
}
.nut-ninegrid .item .front > img,
.nut-ninegrid .item .back > img {
  width: 71px;
  height: 71px;
  flex-shrink: 0;
}
.nut-ninegrid .item .front {
  z-index: 2;
  transform: rotateY(0deg);
}
.nut-ninegrid .item .back {
  transform: rotateY(-180deg);
}
.nut-ninegrid .item.d {
  transform: rotate(3deg);
}
.nut-ninegrid .item.active .front {
  transform: rotateY(180deg);
}
.nut-ninegrid .item.active .back {
  transform: rotateY(0deg);
}
.nut-ninegrid .item.shake {
  animation: shake-rotate 0.5s 1;
}
.nut-ninegrid .item .center {
  border-radius: 8px;
  overflow: hidden;
  background-image: linear-gradient(#ff733e, #ff4e57);
  border: 1px solid #ffa07c;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.nut-ninegrid .item .center > img {
  width: 15px;
  height: 16px;
}
.nut-ninegrid .item .center > img.rotate {
  animation-name: box-rotate;
  animation-duration: 1s;
}
.nut-ninegrid .item .center > span {
  font-family: PingFangSC-Medium;
  font-size: 16px;
  color: rgb(255, 212, 167);
}
.nut-ninegrid .item .center > p {
  font-family: PingFangSC-Medium;
  font-size: 12px;
  color: rgb(255, 212, 167);
}@charset "UTF-8";
/*
* mixin集中存储文件
*/
/**
 * $Desc css全局变量，通过定义样式
 */
.background--color {
  background: linear-gradient(50deg, #FFFFFF 0%, #F5F5F5 40%, #F8F8F8 100%);
}

.text-align--left {
  text-align: left;
}

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

.text-align--center {
  text-align: center;
}

.page--container {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  padding-top: 2.0718232044vh;
  padding-right: 15px;
  padding-bottom: 2.0718232044vh;
  padding-left: 15px;
}

.component--container {
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.11);
  margin-bottom: 1.6574585635vh;
}

.text--container {
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.11);
}

.box--shadow {
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.11);
}

.grid {
  display: grid;
  gap: 0px 0px;
}

.inline-grid {
  display: inline-grid;
  gap: 0px 0px;
}

.grid-columns--11fr {
  grid-template-columns: 1fr 1fr;
}

.grid-columns--121fr {
  grid-template-columns: 1fr 2fr 1fr;
}

.grid-align-center {
  align-items: center;
}

.grid-align-stretch {
  align-items: stretch;
}

.flex {
  display: flex;
  align-items: center;
}

.inline-flex {
  display: inline-flex;
  align-items: center;
}

.flex-grow1 {
  flex-grow: 1;
}

.flex1 {
  flex: 1;
}

.word-wrap {
  word-wrap: break-word;
}

.position-fix {
  position: fixed;
}

.overflow-hidden {
  overflow: hidden;
}

.text-ellipsis {
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fill {
  width: 100%;
  height: 100%;
}

.font {
  font-size: 3.7333333333vw;
  color: #1d1d1d;
}

.weui-cells {
  font-size: 3.7333333333vw !important;
  color: #1d1d1d;
}

.height25 {
  height: 25px;
}

.height30 {
  height: 30px;
}

.height40 {
  height: 40px;
}

.paddingT10 {
  padding-top: 10px;
}

.paddingR10 {
  padding-right: 10px;
}

.paddingR15 {
  padding-right: 15px;
}

.paddingR20 {
  padding-right: 20px !important;
}

.paddingB10 {
  padding-bottom: 10px;
}

.paddingL10 {
  padding-left: 10px;
}

.paddingL20 {
  padding-left: 20px !important;
}

.marginB10 {
  margin-bottom: 10px;
}

.border--bottom {
  border-bottom: 1px solid #ECEBEB;
}

.button--ul {
  position: absolute;
  bottom: 11.7403314917vh;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
  background-color: white;
  z-index: 99;
}
.button--ul::after {
  display: block;
  content: "";
  position: absolute;
  width: 0px;
  height: 0px;
  border: 1.3812154696vh solid transparent;
  border-top-color: #fff;
  left: 50%;
  transform: translateX(-50%);
}
.button--ul .button--li {
  box-sizing: border-box;
  text-align: center;
  padding: 1.3812154696vh 0;
  color: #1B9EFF;
  border-bottom: 1px solid #ECEBEB;
}
.button--ul .button--li:last-child {
  border: none;
}

.button--box {
  display: flex;
  padding: 13px 2vw 22px;
}
.button--box .submit-button, .button--box .reback-button, .button--box .reimbure-button, .button--box .reject-button {
  background: #1B9EFF;
  color: white;
  border-color: #1B9EFF !important;
}
.button--box .save-button, .button--box .prev-button, .button--box .next-button {
  background: #ffffff;
  color: #1B9EFF;
}
.button--box .edit-del-btn {
  background: white;
  color: #ee7800;
}
.button--box .edit-save-btn {
  background: #1B9EFF;
  color: white;
}
.button--box .save-next-button {
  background: #1B9EFF;
  color: white;
}
.button--box .button-item {
  box-sizing: border-box;
  font-size: 3.4666666667vw;
  flex: 1;
  border-radius: 4px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  margin: 0 2px;
  border: 1px solid;
}

.form--box {
  padding: 0 5vw 2.0718232044vh;
  background-color: #ffffff;
}

.form--item {
  box-sizing: border-box;
  padding: 1.726519337vh 0;
}

.form--border-bottom {
  border-bottom: 1px solid #ECEBEB;
}

.newUI--group .weui-cell {
  box-sizing: border-box;
  padding: 2.6933701657vh 3.2vw 1.864640884vh 0;
  border-bottom: 1px solid #ECEBEB;
}
.newUI--group .weui-cells::after, .newUI--group .weui-cells::before {
  display: none !important;
}
.newUI--group .vux-datetime {
  border: none;
}
.newUI--group .vux-label {
  color: #1d1d1d;
  font-size: 3.7333333333vw;
}

.v-touch {
  touch-action: pan-y !important;
}@charset "UTF-8";
/*
 * 重置nut样式，同时不被vw转换
*/
.nut-notify {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.nut-actionsheet-panel {
  border-radius: 20px 20px 0 0;
}

.nut-overflow-hidden {
  overflow: hidden;
}

.nut-cell {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
.nut-cell .nut-cell-box {
  height: 100%;
  background-size: none !important;
}

.vue-skeleton-square-wrap .vue-skeleton-square {
  height: 100% !important;
}

.nut-title-nav-scroll {
  min-width: 33.33vw !important;
}

.nut-navbar {
  box-sizing: border-box;
  border-bottom: 1px solid;
}

.nut-tab-disable {
  background-color: none !important;
}

.nut-searchbar .search-input input, .nut-searchbar .search-input {
  background-color: #e8e8e8 !important;
}

.nut-notify--danger {
  background-color: #eb2910 !important;
}

.nut-toastClass {
  top: 100px;
}

.nut-navbar .nav-center .nav-title {
  font-size: 16px !important;
}

#nut-elevator-ul .nut-list-title:first-child .nut-people-list, .hasHistory .nut-list-title:nth-child(2) .nut-people-list {
  padding-right: 35px;
}
#nut-elevator-ul .nut-list-title:first-child .nut-people-list .nut-list-name, .hasHistory .nut-list-title:nth-child(2) .nut-people-list .nut-list-name {
  display: inline-flex;
  padding: 0 10px 0 10px;
}

.nut-list-name {
  height: 40px !important;
  line-height: 40px !important;
}

.nut-checkboxgroup {
  padding: 10px 0 20px 10px !important;
}

.back, .formInfo--component .nut-cell:only-of-type {
  background: none !important;
  background-size: none !important;
  background-repeat: no-repeat !important;
}

.nut-textinput-label {
  width: 50px;
}

.nut-textbox .txt-area.num-none {
  padding: 10px !important;
}

.nut-dialog-body {
  padding: 15px !important;
}

.nut-dialog-ok {
  background-color: linear-gradient(315deg, #1B9EFF 0%, #1c92ec 100%) !important;
}

.nut-fixednav {
  width: 60px !important;
}

.nut-fixednav ul.fixed-list {
  right: -110px;
}

.newUI--group .weui-cells {
  margin-top: 0 !important;
  font-size: vw(28) !important;
}
.newUI--group .vux-cell-primary > p {
  display: flex !important;
  align-content: center;
}
.newUI--group .vux-cell-primary > p a {
  display: flex !important;
  flex: 1;
  justify-content: flex-end;
}
.newUI--group .weui-cell_access .weui-cell__ft:after {
  width: 10px !important;
  height: 10px !important;
  margin-top: -6px;
}

.newUI--group1 .weui-cells {
  margin-top: 0 !important;
  font-size: vw(28) !important;
}
.newUI--group1 .vux-cell-primary > p {
  display: flex !important;
  align-content: center;
}
.newUI--group1 .vux-cell-primary > p a {
  display: flex !important;
  flex: 1;
  justify-content: flex-end;
}
.newUI--group1 .vux-cell-primary > p .weui-cell {
  flex: 1;
  text-align: right;
  input-text-align: right;
}
.newUI--group1 .vux-cell-primary > p .inner-div {
  flex: 1;
  text-align: right;
}
.newUI--group1 .weui-cell_access .weui-cell__ft:after {
  width: 10px !important;
  height: 10px !important;
  margin-top: -6px;
}

.vux-popup-dialog {
  overflow-x: hidden;
}

.nut-calendar-control .nut-calendar-cancel-btn, .nut-calendar-control .nut-calendar-confirm-btn, .nut-calendar-control .nut-calendar-week span:first-child, .nut-calendar-control .nut-calendar-week span:last-child {
  color: #1B9EFF;
}

.nut-calendar-months .nut-calendar-month-con .nut-calendar-month-day-active {
  background-color: #1B9EFF;
}

.nut-calendar-months .nut-calendar-month-con .nut-calendar-month-day-choose {
  background-color: #1B9EFF;
  opacity: 0.5;
}@charset "UTF-8";
/*
 * @Author: wuzy
 * @Date: 2021-09-01 09:49:51
 * @Last Modified by: wuzy
 * @Last Modified time: 2021-12-28 19:26:25
 * @Desc 不经过px->vw转换的样式代码
 */
/**
 * $Desc css全局变量，通过定义样式
 */
.formInfo--component .formInfo-item--center {
  line-height: 48px;
  align-self: stretch;
  text-align: center;
}
.formInfo--component .formInfo--required {
  position: relative;
}
.formInfo--component .formInfo--required::after {
  content: "*";
  position: absolute;
  color: red;
  top: 0;
  left: -8px;
  height: 100%;
  display: flex;
  justify-content: center;
}
.formInfo--component .formInfo--grid.formInfo--required::after {
  height: auto;
  top: calc(50% - 6px);
}
.formInfo--component .formInfo--time .nut-cell .nut-cell-sub-title, .formInfo--component .formInfo--time .nut-cell .nut-cell-title {
  text-align: center;
}
.formInfo--component .destination--type {
  font-size: 12px;
  padding: 5px;
  margin-right: 5px;
  border-radius: 50%;
  color: #ffffff;
  background-color: #1B9EFF;
}
.formInfo--component .destination--desc {
  font-size: 12px;
  color: #8C8C8B;
  margin-left: 5px;
}

.formInfo--component .nut-actionsheet-panel, .ticketInfo--component .nut-actionsheet-panel, .hotelInfo--component .nut-actionsheet-panel, .proxyDetail .nut-actionsheet-panel {
  border-radius: 0 !important;
}

.formInfo--component .formInfo--required, .ticketInfo--component .formInfo--required {
  position: relative;
}
.formInfo--component .formInfo--required::after, .ticketInfo--component .formInfo--required::after {
  content: "*";
  position: absolute;
  color: red;
  top: 0;
  left: -8px;
  height: 100%;
  display: flex;
  justify-content: center;
}

.ticketInfo--component .ticketCard-item--cell.formInfo--required::after {
  height: auto;
  top: calc(50% - 6px);
}

.guide--opacity {
  pointer-events: none;
}
.svg-icon[data-v-c40020de] {
  vertical-align: -0.2px;
  fill: currentColor;
  overflow: hidden;
}
@charset "UTF-8";
.reject-screen {
  background: #e6ecf0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.reject-screen .sure {
  padding: 20px 20px;
}
.reject-screen .sure .sure-button {
  margin-top: 10px;
  background: #0092da;
  border-radius: 4px;
  width: 100%;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 18px;
  color: #ffffff;
}
.reject-screen .sure .cancel-button {
  background: white;
  color: #0092da;
}
.reject-reason {
  background: white;
  padding-left: 15px;
  padding-top: 20px;
  width: 100%;
}
.reject-reason .reject-textarea {
  font-size: 16px;
  color: #cdcdcd;
  display: block;
  border: 0;
  resize: none;
  width: 100%;
  color: inherit;
  font-size: 1em;
  line-height: inherit;
  outline: 0;
}

.img-wrapper {
  display: inline-block;
}

.img-responsive {
  max-width: 100%;
  height: inherit;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

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

.text-ellipsis {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.bg-avatar-zero {
  background-color: #A3DDFB !important;
}

.bg-avatar-one {
  background-color: #FCB3B3 !important;
}

.bg-avatar-two {
  background-color: #99E1B4 !important;
}

.bg-avatar-default {
  background-color: #F9C693 !important;
}

flex {
  display: flex;
}

.column {
  display: flex;
}
.column > div {
  flex: 1;
}

.half-px-border,
.half-px-border-dashed {
  position: relative;
}
.half-px-border:after,
.half-px-border-dashed:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #D7DCE6;
  transform-origin: center;
  transform: scaleY(0.5);
}

.half-px-border-dashed:after {
  height: 0;
  border-top: 1px dashed #D7DCE6;
  background: none;
  transform: scaleY(1);
}

.half-px-border-top {
  position: relative;
}
.half-px-border-top:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #D7DCE6;
  transform-origin: 0 100%;
  transform: scaleY(0.5);
}

button {
  background: none;
  border: none;
}

/* 单行文本溢出出现省略号 */
.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 1行行文本溢出出现省略号 */
.clamp1 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.clear:after {
  display: block;
  content: ".";
  clear: both;
  visibility: hidden;
  overflow: hidden;
  width: 100%;
  height: 0;
}

.clear {
  clear: both;
}

.anim_linear {
  -webkit-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  -mos-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.anim {
  -webkit-transition: all 0.4s cubic-bezier(0.58, 2, 0.68, 0.58);
  -mos-transition: all 0.4s cubic-bezier(0.58, 2, 0.68, 0.58);
  transition: all 0.4s cubic-bezier(0.58, 2, 0.68, 0.58);
}

.threeD {
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
}

input[type=number],
input[type=text],
input[type=search] {
  border: none;
}
input[type=number]:focus,
input[type=text]:focus,
input[type=search]:focus {
  outline: none;
}

a:active,
a:focus,
a:visited,
a:hover {
  background-color: transparent !important;
}

.fade-enter-active, .fade-leave-active {
  transition: opacity 0.5s;
}

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

.slide-up-enter-active, .slide-up-leave {
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translateY(0);
}

.slide-up-leave-active, .slide-up-enter {
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translateY(100vh);
}

input.search {
  outline: none;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  /* webkit*/
  color: #8C96B4;
  opacity: 1;
  text-indent: 0;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #8C96B4;
  opacity: 1;
  text-indent: 0;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #8C96B4;
  opacity: 1;
  text-indent: 0;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #8C96B4;
  opacity: 1;
  text-indent: 0;
}

[v-cloak] {
  display: none;
}