/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

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

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

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

a {
  background-color: transparent;
}

a:active {
  -webkit-tap-highlight-color: transparent;
}

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

b,
strong {
  font-weight: bolder;
}

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

small {
  font-size: 80%;
}

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

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

img {
  max-width: 100%;
  vertical-align: middle;
  border-style: none;
}

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

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

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

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
.pb-30{
  padding-bottom: 30px;
}
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: .35em .75em .625em;
}

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

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

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

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

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

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

ol,
ul,
li {
  margin: 0;
  padding: 0;
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;
}

p,
h2,
h3,
h4 {
  margin: 0;
}

a:hover {
  -webkit-tap-highlight-color: transparent;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.por {
  position: relative;
}

.poa {
  position: absolute;
}

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

.clearfix {
  zoom: 1;
}

.tac {
  text-align: center;
}

/*# sourceMappingURL=normalize.min.css.map */
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

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

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

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

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  0%, 50%, 100% {
    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 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

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

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}

@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
}

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

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

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

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    -ms-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    -ms-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    -ms-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
    -ms-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    -ms-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    -ms-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    -ms-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    -ms-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    -ms-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
}

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

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

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

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

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

@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
  }
  80% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

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

@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
}

@keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3);
  }
}

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

@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

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

@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

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

@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

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

@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

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

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

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

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

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

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

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

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

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

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

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

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

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

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

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

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

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

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

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

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
}

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

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

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

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

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

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

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

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

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
}

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

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

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

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

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

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

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

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

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

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

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    -ms-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    -ms-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

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

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    -ms-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    -ms-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

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

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    -ms-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    -ms-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

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

@-webkit-keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) 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 {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    -ms-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

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

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

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

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

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

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

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

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

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

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    -ms-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

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

@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

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

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

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

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

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

@-webkit-keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(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: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    -ms-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: rotate(80deg);
    -ms-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40% {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    -ms-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: translateY(700px);
    -ms-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    -ms-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

@keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    -ms-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

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

/*www.jq22.com*/
/*!
 * fullPage 2.7.8
 * https://github.com/alvarotrigo/fullPage.js
 * MIT licensed
 *
 * Copyright (C) 2013 alvarotrigo.com - A project by Alvaro Trigo
 */
html.fp-enabled,
.fp-enabled body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  /*Avoid flicker on slides transitions for mobile phones #336 */
  -webkit-tap-highlight-color: transparent;
}

#superContainer {
  height: 100%;
  position: relative;
  /* Touch detection for Windows 8 */
  -ms-touch-action: none;
  /* IE 11 on Windows Phone 8.1*/
  touch-action: none;
}

.fp-section {
  position: relative;
  -webkit-box-sizing: border-box;
  /* Safari<=5 Android<=3 */
  -moz-box-sizing: border-box;
  /* <=28 */
  box-sizing: border-box;
}

.fp-slide {
  float: left;
}

.fp-slide, .fp-slidesContainer {
  height: 100%;
  display: block;
}

.fp-slides {
  z-index: 1;
  height: 100%;
  overflow: hidden;
  position: relative;
  -webkit-transition: all 0.3s ease-out;
  /* Safari<=6 Android<=4.3 */
  transition: all 0.3s ease-out;
}

.fp-section.fp-table, .fp-slide.fp-table {
  display: table;
  table-layout: fixed;
  width: 100%;
}

.fp-tableCell {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 100%;
}

.fp-slidesContainer {
  float: left;
  position: relative;
}

.fp-controlArrow {
  -webkit-user-select: none;
  /* webkit (safari, chrome) browsers */
  -moz-user-select: none;
  /* mozilla browsers */
  -khtml-user-select: none;
  /* webkit (konqueror) browsers */
  -ms-user-select: none;
  /* IE10+ */
  position: absolute;
  z-index: 4;
  top: 50%;
  cursor: pointer;
  width: 0;
  height: 0;
  border-style: solid;
  margin-top: -38px;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.fp-controlArrow.fp-prev {
  left: 15px;
  width: 0;
  border-width: 38.5px 34px 38.5px 0;
  border-color: transparent #fff transparent transparent;
}

.fp-controlArrow.fp-next {
  right: 15px;
  border-width: 38.5px 0 38.5px 34px;
  border-color: transparent transparent transparent #fff;
}

.fp-scrollable {
  overflow: scroll;
}

.fp-notransition {
  -webkit-transition: none !important;
  transition: none !important;
}

#fp-nav {
  position: fixed;
  z-index: 100;
  margin-top: -32px;
  top: 50%;
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
}

#fp-nav.right {
  right: 17px;
}

#fp-nav.left {
  left: 17px;
}

.fp-slidesNav {
  position: absolute;
  z-index: 4;
  left: 50%;
  opacity: 1;
}

.fp-slidesNav.bottom {
  bottom: 17px;
}

.fp-slidesNav.top {
  top: 17px;
}

#fp-nav ul,
.fp-slidesNav ul {
  margin: 0;
  padding: 0;
}

#fp-nav ul li,
.fp-slidesNav ul li {
  display: block;
  width: 14px;
  height: 13px;
  margin: 7px;
  position: relative;
}

.fp-slidesNav ul li {
  display: inline-block;
}

#fp-nav ul li a,
.fp-slidesNav ul li a {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
}

#fp-nav ul li a.active span,
.fp-slidesNav ul li a.active span,
#fp-nav ul li:hover a.active span,
.fp-slidesNav ul li:hover a.active span {
  height: 12px;
  width: 12px;
  margin: -6px 0 0 -6px;
  border-radius: 100%;
}

#fp-nav ul li a span,
.fp-slidesNav ul li a span {
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  height: 4px;
  width: 4px;
  border: 0;
  background: #333;
  left: 50%;
  top: 50%;
  margin: -2px 0 0 -2px;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

#fp-nav ul li:hover a span,
.fp-slidesNav ul li:hover a span {
  width: 10px;
  height: 10px;
  margin: -5px 0px 0px -5px;
}

#fp-nav ul li .fp-tooltip {
  position: absolute;
  top: -2px;
  color: #fff;
  font-size: 14px;
  font-family: arial, helvetica, sans-serif;
  white-space: nowrap;
  max-width: 220px;
  overflow: hidden;
  display: block;
  opacity: 0;
  width: 0;
  cursor: pointer;
}

#fp-nav ul li:hover .fp-tooltip,
#fp-nav.fp-show-active a.active + .fp-tooltip {
  -webkit-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
  width: auto;
  opacity: 1;
}

#fp-nav ul li .fp-tooltip.right {
  right: 20px;
}

#fp-nav ul li .fp-tooltip.left {
  left: 20px;
}

.fp-auto-height.fp-section,
.fp-auto-height .fp-slide,
.fp-auto-height .fp-tableCell {
  height: auto !important;
}

body {
  font-size: 16px;
  font-family: "Microsoft YaHei";
}
.gap{
  height: var(--body-gap);
}
.flex{
  display: flex;
} 
.flex-end{
  display: flex;
  justify-content: flex-end;
}
.m-0{
  margin: 0;
}
.j-s{
  justify-content: space-between;
}
.a-c{
  align-items: center;
}
.w-full{
  width: 100%;
}
.container {
  width: 78.88%;
  margin: 0 auto;
}

.header {
  z-index: 99;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 66px;
  color: #fff;
  background: url(../images/header_top.jpg) top center no-repeat;
  background-size: cover;
  box-shadow: 0px 1px 20px 1px rgba(41, 28, 28, 0.5);
  height: 2.94vw;
}

.logo {
  margin-top: 14px;
  display: flex;
  font-size: 0;
  width: 3vw;
  margin-top: 0.534vw;
}

.flex-space-between{
  display: flex;
  justify-content: space-between;
}

.w-60vw{
  width: 60vw;
}
.w-88{
  width: 88%  !important;
}
.logo-img {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
}

.logo-text-en{
  margin-left: 15px;
  display: flex;
  align-items: center;
  height:inherit;
  white-space: nowrap;
  font-weight: normal;
}

.d-block{
  display: block;
}

.logo-text-en-p{
  color: #fff;
  font-size: 18px;
  /* font-weight: bold; */
}

.logo-text {
  display: inline-block;
  vertical-align: middle;
  padding-left: 17px;
  margin-left: 17px;
  border-left: 1px solid #fff;
}

.logo-text .logo-text-p {
  line-height: 1;
  font-size: 12px;
  font-weight: var(--body-font-lighter);
  color: #fff;
  letter-spacing: 1.2px;
}

.logo-text .logo-text-h4 {
  color: #fff;
  line-height: 1;
  margin-top: 9px;
  font-size: 16px;
}

.header-nav-right-p{
  color: #fff;
  font-size: 18px;
  font-weight: normal;
  display: flex;
  height: inherit;
  align-items: center;
}

.header-nav a {
  position: relative;
  color: #fff;
  font-size: 20px;
  display: inline-block;
  height: 66px;
  line-height: 66px;
  margin-left: 40px;
}

.header-nav a:hover {
  color: #1eabeb;
}

.header-nav a:hover::after {
  width: 100%;
}

.header-nav a::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 9;
  bottom: 0;
  left: 50%;
  width: 0%;
  transform: translateX(-50%);
  height: 2px;
  background-color: #1eabeb;
  transition: all .2s ease-in-out;
}

.header-nav a:first-child {
  margin-left: 0;
}

.header-tel {
  position: relative;
  /* width: 206px; */
  /* margin-left: 52px; */
  margin-top: 14px;
  /* border-left: 1px solid #fff; */
  /* padding-left: 30px; */
  padding-left: 0;
  cursor: pointer;
  /* padding-left: 1vw; */
  margin-top: 0;
  margin-left: var(--nav-item-gap);
  line-height: 2.94vw;
}
/* .header-tel>div div{
  width: 5.911vw;
} */
@media screen and (max-width: 1400px) {
  .header-tel {
    width: 204px;
  }
}
.header-tel img {
  position: relative;
  min-width: 24px;
  min-height: 24px;
  margin-right: 9px;
  width: 24px;
  height: 24px;
  margin-right: 6px;
  margin-top: 0;
}
.header-email img{
  margin-right: 8px;
  min-width: 26px;
  width: 26px;
}
.header-email {
  display: flex;
  align-items: center;
}

.header-tel div {
  display: inline-flex;
  vertical-align: middle;
  align-items: center;
  line-height: inherit;
  height: 2.94vw;
  min-height: 37px;
  vertical-align: top;
}

.header-tel p {
  font-size: 12px;
  line-height: 1;
  font-weight: var(--body-font-lighter);
  font-size: 0.8vw;
}

.header-tel .zixun,
.header-tel a {
  display: block;
  margin-top: 6px;
  line-height: 1;
  color: #fff;
  font-size: 18px !important;
  font-weight: var(--body-font-lighter);
  margin-top: 0;
  font-size: 1.335vw;
  line-height: 1.27vw;
  /* width: 12.078vw; */
}
.header-tel .zixun{
  display: inline-flex;
  position: absolute;
  /* width: 136px; */
  font-size: 17px;
  /* display: none; */
  cursor: pointer;
  white-space: nowrap;
  font-size: 15px !important;
  opacity: 0;
  visibility: hidden;
}
.header-tel:hover a{
  /* display: none; */
  opacity: 0;
  visibility: hidden;
}
.header-tel:hover .zixun{
  display: inline-flex;
  align-items: center;
  opacity: 1;
  visibility: visible;
}

body{
  --nav-item-gap: 40px;
}

.lang-list{
  margin-left: var(--nav-item-gap);
  position:relative;
  font-size: 1em;
  cursor: pointer;
}

.lang-list a{
  color: #fff;
  white-space: nowrap;
}

.lang-list .cur-lang{
  height: 2.94vw;
  line-height: 2.94vw;
  padding-right: 25px;
  font-size: 1vw;
}

.lang-list .cur-lang:after{
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 7px solid #ffef02;
  position: absolute;
  right: 5px;
  top: calc(50% - 3px);
}

.lang-list .lang-select{
  display: none;
  background: #0c736f;
  width: 122px;
}

.lang-list .lang-select li{
  line-height: 1.5em;
  padding: 5px;
}
.lang-list .lang-select li:hover{
  background: #a6009e;
  color: #fff;
}

.lang-list:hover .lang-select{
  display: block;
  position: absolute;
  top: 2.94vw;
  padding: 5px;
}

.price {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}

.price .container {
  position: relative;
  height: 56px;
}

.price .price-img-wrap {
  margin-left: 15.7291666%;
  position: fixed;
  width: 14.21875%;
  bottom: 0;
}

.price .price-img-wrap img {
  width: 100%;
}

.price .price-img-wrap .price-left-bg,
.price .price-img-wrap .price-right-bg {
  z-index: 2;
  display: block;
  bottom: 0;
  position: absolute;
  background: url(../images/bottom_bg.png) bottom repeat-x;
  width: 20000px;
  height: 56px;
}

.price .price-img-wrap .price-left-bg {
  left: -20000px;
}

.price .price-img-wrap .price-right-bg {
  right: -20000px;
}

.price .price-info {
  z-index: 99;
  position: absolute;
  bottom: 0;
  right: 20.066%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.price .price-info p {
  font-size: 1.563vw;
  color: #fff;
  font-weight: bold;
  margin-right: 2.396vw;
}

.price .price-info .icon-down {
  display: block;
  width: 1.51vw;
  /*height: 1.51vw;*/
  background: none;
  cursor: pointer;
}

.price[style="margin-bottom: 315px;"] .price-info .icon-down img{
	display: none;
}

.price[style="margin-bottom: 315px;"] .price-info .icon-down{
	background: url(../images/icon_arrow_white.png) no-repeat;
    background-size: cover;
}

.price .icon-close {
  z-index: 99;
  position: absolute;
  right: 0;
  bottom: .833vw;
  width: 1.198vw;
  height: 1.302vw;
  background: url(../images/icon_close.png) no-repeat;
  background-size: cover;
  cursor: pointer;
}

.section-content {
  margin: unset;
  width: 100vw;
  height: 100vh;
  position: relative;
}

.section-content video,
.section-content img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
#about_top_video,
.index .section-content video{
	width: 100vw;
	height: 100vh;
}

#fp-nav ul li,
.fp-slidesNav ul li {
  width: 12px;
  height: 12px;
  margin: 26px 7px;
}

#fp-nav ul li a span,
.fp-slidesNav ul li a span {
  width: 12px;
  height: 12px;
  border: 2px solid #ffffff;
  background-color: transparent;
  margin: -6px 0 0 -6px;
}

#fp-nav ul li a.active span,
.fp-slidesNav ul li a.active span,
#fp-nav ul li:hover a.active span,
.fp-slidesNav ul li:hover a.active span {
  background-color: #ffffff;
}

#fp-nav ul li:hover a span,
.fp-slidesNav ul li:hover a span {
  width: 12px;
  height: 12px;
  margin: -6px 0 0 -6px;
  background-color: #ffffff;
}

#fp-nav.gray ul li a span {
  border-color: #595757;
}

#fp-nav.gray ul li a.active span,
#fp-nav.gray ul li:hover a.active span {
  background-color: #595757;
}

#fp-nav.gray ul li:hover a span {
  background-color: #595757;
}

.copyright {
  position: absolute;
  bottom: 27px;
  left: 0;
  width: 100%;
  line-height: 1;
  text-align: right;
}

.copyright,
.copyright a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: var(--body-font-lighter);
}

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

.btn {
  width: 330px;
  height: 36px;
  border-radius: 36px;
  color: #fff;
  border: 1px solid #fff;
  font-size: 15px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all .2s ease-in-out;
}

.btn:hover {
  background-color: #f30077;
  color: #fff;
  border-color: #f30077;
}

.btn-red {
  border: 1px solid #f30077;
  color: #f30077;
}

.btn-red:hover {
  background-color: #f30077;
  color: #fff;
}

.section-content-2 .container {
  z-index: 99;
  position: absolute;
  left: 10.56%;
  bottom: 25%;
  text-align: right;
}

.section-content-3 .container {
  z-index: 99;
  position: absolute;
  left: 10.56%;
  bottom: 24%;
  padding: 0 4.30463%;
}

.section-content-4 .container {
  z-index: 99;
  position: absolute;
  left: 10.56%;
  bottom: 36%;
  text-align: right;
}

/* --------- about ---------- */
.about-2-wrap,
.about-4-wrap,
.about-3-wrap {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #595757;
  /* width: 83.3%; */
}

.about-4-wrap,
.about-3-wrap {
  flex-direction: column;
  justify-content: center;
}

.about-2-left {
  /* width: 33.9735%; */
  width: 63.33775%;
  margin-left: 0;
}

.about-2-left .about-2-logo-text {
  width: 2.708vw;
  height: auto;
  vertical-align: top;
}

.about-2-left .about-2-left-1 {
  /* width: 15.521vw; */
  width: 100%;
  margin: 0 auto 1vw;
}

.about-2-left .about-2-left-2 {
  margin-top: .4vw;
  margin-bottom: 2vw;
  font-size: 0.937vw;
  line-height: 1.364vw;
  font-weight: var(--body-font-lighter);
}

.about-2-left .about-2-left-2 em {
  font-weight: bold;
  font-style: normal;
}

.about-form .about-form-title {
  margin-bottom: 1vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.about-form .about-form-title h4 {
  font-size: 0.937vw;
  font-weight: var(--body-font-lighter);
}

.about-form .about-form-title span {
  font-size: 0.52vw;
  font-weight: var(--body-font-lighter);
}
.about-form .about-form-item{
  margin: 0;
}
.about-form label {
  margin-right: 0.513vw;
  font-size: 0.937vw;
  font-weight: var(--body-font-lighter);
}

.about-form-item:nth-child(2) label {
  width: 100px;
  text-align: right;
  /* padding-right: 5px; */
}

.about-form-tips{
  padding-top: 10px;
  text-align: right;
  color: #999;
  font-size: 12px;
  font-size: 10px;
}

.about-form .about-form-group {
  display: flex;
  justify-content: space-between;
  margin-bottom: .781vw;
}

.about-form .about-form-item {
  display: flex;
  align-items: center;
}

.about-form .about-form-input {
  width: 9.635416667vw;
  height: 2.031vw;
  border: 1px solid #b8b7b7;
  padding: 0 10px;
  box-sizing: border-box;
  outline: none;
  color: #343434;
}

.about-form .yuyue {
  width: 100%;
  height: 2.031vw;
  line-height: 2.031vw;
  background-color: #f30077;
  color: #fff;
  font-size: 1.029vw;
  text-align: center;
  cursor: pointer;
}

.video-wrap {
  width: 100%;
  position: relative;
}

.video-wrap video, .video-wrap .about-wrap-video-rt {
  width: 100%;
  outline: none;
  border: 0;
  vertical-align: top;
}

.video-wrap i {
  z-index: 2;
  position: absolute;
  margin-left: -2.11vw;
  margin-top: -2.11vw;
  top: 50%;
  left: 50%;
  display: block;
  width: 4.219vw;
  height: 4.219vw;
  background: url(../images/about/icon_video.png) no-repeat;
  background-size: cover;
  cursor: pointer;
  border-radius: 50%;
  overflow: hidden;
}

.about-2-right {
  /* width: 59.33775%; */
  width: 33.9735%;
  margin-right: 0;
}

.about-2-right-1 {
  margin-bottom: 1vw;
  margin-left: 4.74vw;
  font-size: 0.938vw;
  line-height: 1.563vw;
  font-weight: var(--body-font-lighter);
}

.about-2-right-1 em {
  font-weight: bold;
  font-style: normal;
}

.about-2-right-1 .about-2-right-img {
  width: 21.979vw;
}

.about-2-right-img-wrap {
  position: relative;
  margin-top: 1rem;
}

.about-2-right-img-wrap i {
  display: block;
  position: absolute;
  cursor: pointer;
}

.about-2-right-img-wrap .about-2-right-img-1 {
  width: 30%;
  height: 10%;
  top: 0;
  left: 35%;
}

.about-2-right-img-wrap .about-2-right-img-2 {
  width: 30%;
  height: 10%;
  bottom: 16%;
  left: 0px;
}

.about-2-right-img-wrap .about-2-right-img-3 {
  width: 30%;
  height: 10%;
  bottom: 16%;
  right: 0px;
}

.about-2-right-2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.about-2-right-2 .about-2-right-img {
  width: 16.979vw;
  height: auto;
}

.about-2-right-2 .about-2-right-info {
  width: 48.1941%;
}

.about-2-right-2 .about-2-right-3,
.about-2-right-2 .about-2-right-5,
.about-2-right-2 .about-2-right-7 {
  margin-top: 1vw;
  font-size: 0.938vw;
  font-weight: bold;
  margin-bottom: .4vw;
}

.about-2-right-2 .about-2-right-3.on,
.about-2-right-2 .about-2-right-5.on,
.about-2-right-2 .about-2-right-7.on {
  color: #1eabeb;
}

.about-2-right-2 .about-2-right-4,
.about-2-right-2 .about-2-right-6,
.about-2-right-2 .about-2-right-8 {
  font-size: 0.833vw;
  line-height: 1.13vw;
  font-weight: var(--body-font-lighter);
}

.about-2-right-2 .about-2-right-4 em,
.about-2-right-2 .about-2-right-6 em,
.about-2-right-2 .about-2-right-8 em {
  font-weight: bold;
  font-style: normal;
}

.about-2-right-2 .about-2-right-4.on,
.about-2-right-2 .about-2-right-6.on,
.about-2-right-2 .about-2-right-8.on {
  color: #1eabeb;
}
.about-ess-lrt .on,
.about-ess-lrt .on p,
.about-ess-lrt .on span{
  color: #1eabeb !important;
}

.about-2-right-2 .about-2-right-3 {
  margin-top: 0;
}
.icon-wechat{
  width: 41rpx;
  height: 36px;
}
.w-50{
  width: 50%;
}
.about-3-title {
  font-size: 1.7vw;
  color: #f30077;
  /*letter-spacing: 0.505vw;*/
  line-height: 1;
  font-weight: normal;
  margin-top: 0.6vw;
  /* margin-bottom: 3.177vw; */
  margin-bottom: 1.2rem;
  text-align: center;
}

.about-3-small-title {
	display: block;
  font-size: 1.264vw;
  font-weight: var(--body-font-lighter);
  line-height: 1;
  color: #8f8c8c;
}

.about-4-wrap .about-3-title {
  margin-top: 0;
  margin-bottom: 0;
  /* letter-spacing: 0.505vw; */
}
.about-4-wrap .about-3-small-title {
  margin-top: 1.2vw;
  /* margin-bottom: 3.177vw; */
  margin-bottom: 1.2rem;
  text-align: center;
}
.about-3-left {
  width: 34.427vw;
}

.about-3-left .about-3-left-1 {
  display: flex;
  align-items: center;
}

.about-3-left .about-3-left-1 .about-3-left-logo_text {
  width: 2.865vw;
  height: auto;
  vertical-align: sub;
}

.about-3-left .about-3-left-1 .about-3-left-logo {
  width: 6.667vw;
  height: auto;
}

.about-3-left .about-3-left-1 p {
  margin-left: 1.458vw;
  font-size: 0.834vw;
  line-height: 1.264vw;
  flex: 1;
}

.about-3-left-2 {
  margin-top: 1.302vw;
  margin-bottom: .885vw;
}

.about-3-left-3 {
  margin-bottom: 2.083vw;
}

.about-3-left-4 {
  margin-bottom: 0.6vw;
}

.about-3-left-5 {
  margin-bottom: 1.25vw;
}

.about-3-left-2,
.about-3-left-4,
.about-3-left-5 {
  font-size: 1.562vw;
  font-weight: var(--body-font-lighter);
  line-height: 1;
}

.about-3-left-3 {
  font-size: 2.45vw;
  font-weight: bold;
  line-height: 1;
}

.about-3-left-6 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.about-3-left-6 div {
  position: relative;
  width: 10.41666667vw;
}

.about-3-left-6 div:last-child::after {
  display: none;
}

.about-3-left-6 div::after {
  position: absolute;
  display: block;
  content: "+";
  top: 50%;
  font-size: 1.868vw;
  line-height: 1;
  color: #595757;
  right: -1.5vw;
  transform: translateY(-50%);
}

.about-3-left-6 div img {
  width: 100%;
  height: auto;
  cursor: pointer;
}

.about-3-right {
  width: 36.51vw;
}

.about-4-wrap-content,
.about-3-wrap-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.about-4-wrap-content{
  margin-top: 10px;
  align-items: flex-start;
}
.about-4-right{
  margin-top: 12px;
}
.about-3-right-1 {
  font-size: 1.564vw;
  font-weight: var(--body-font-lighter);
  margin-top: 1.3vw;
  margin-bottom: 0.4vw;
}

.about-3-right-1.on {
  color: #f30077;
}

.about-3-right-1.mt-0 {
  margin-top: 0;
}

.about-3-right-1 em {
  font-weight: bold;
  font-style: normal;
}

.about-3-right-2 {
  font-size: 0.834vw;
  font-weight: var(--body-font-lighter);
  line-height: 1.5vw;
}

.about-3-right-2.on {
  color: #f30077;
}

.about-3-right-3 {
  position: relative;
  z-index: 999;
  text-align: right;
}

.about-3-right-3 a {
  font-weight: var(--body-font-lighter);
  font-size: 0.938vw;
  color: #595757;
}

.about-3-right-3 a:hover {
  color: #f30077;
}

.about-4-left {
  /* width: 42.344vw; */
  width: 45.844vw;
}

.about-4-left img {
  width: 100%;
  height: auto;
}

.about-4-right {
  /* width: 26.719vw; */
  width: 29.219vw;
}

.about-4-right-1 {
  margin-top: 1.396vw;
  display: flex;
  justify-content: space-between;
}

.about-4-right-1 h4 {
  font-size: 0.7vw;
  font-weight: normal;
  margin-bottom: .4vw;
}

.about-4-right-1 span {
  font-size: 0.7vw !important;
  line-height: 1.25vw !important;
  font-weight: var(--body-font-lighter) !important;
}

.about-4-right-2 {
  width: 12.713vw;
  margin: 0;
}

.about-4-right-3 {
  width: 13.538vw;
  margin: 0;
}

.about-4-right-2 div,
.about-4-right-3 div {
  display: flex;
  flex-wrap: wrap;
}

.about-4-right-2 p,
.about-4-right-3 p {
  /* width: 50%; */
  width: 100%;
  font-size: 0.7vw;
  line-height: 0.95vw;
  font-weight: var(--body-font-lighter);
}

.about-4-right-4 {
  margin-top: 1.7vw;
  overflow: hidden;
}

.about-4-right-4-wrap{
  display: flex;
  justify-content: space-between;
}

.about-4-right-4-info{
  margin-top: 1.01vw;
  width: 9vw;
}

.about-4-right-4-info p{
  line-height: 1.4;
  overflow: hidden;
  display: flex;
  margin-bottom: .8rem;
}
.about-4-right-4-info p span{

}
.about-4-right-4-info p em{
  flex: 1;
  display: block;
}

.about-4-right-4 h4 {
  font-size: 0.833vw;
  font-weight: var(--body-font-lighter);
}

.about-4-right-4 .qrcode-list {
  margin-top: 1.01vw;
  float: right;
  /*width: 14.2708vw;*/
  display: flex;
  justify-content: space-between;
}

.about-4-right-4 .qrcode-list div {
  width: auto;
  padding: 0 10px;
  text-align: center;
}

.about-4-right-4 .qrcode-list div img {
  max-width: 100%;
  height: auto;
  width: 38px;
}
.about-4-right-4 .qrcode-list div p{
  margin: 6px 0 5px;
  font-size: 14px;
}

.about-4-right-4 .qrcode-list div span {
  font-size: 0.625vw;
  font-weight: var(--body-font-lighter);
}

.copyright2 {
  margin-top: 1.51vw;
  text-align: right;
}

.copyright2 a,
.copyright2 {
  font-size: 0.729vw;
  color: rgba(89, 87, 87, 0.5);
}

.mb-hide .swiper-wrapper {
  height: 100vh;
}

.case .section-content-1 .container,
.case .section-content-2 .container,
.case .section-content-3 .container,
.case .section-content-4 .container {
  z-index: 99;
  position: absolute;
  left: 10.56%;
  bottom: 14%;
  margin-left: 3.7vw;
  text-align: left;
  padding: 0;
}
.case .mb-line{
  margin-bottom: calc(var(--body-gap) / 2);
}
.case .section.mt-30:nth-of-type(1){
  margin-top: calc(var(--body-gap) / 2);
}
.btn-gray {
  border-color: #595757;
  color: #595757;
}

.btn-gray:hover {
  background-color: #f30077;
  color: #fff;
  border-color: #f30077;
}

.swiper-button-next {
  right: 2.5%;
}

.swiper-button-prev {
  left: 2.5%;
}

.swiper-button-next,
.swiper-button-prev {
  color: #595757;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #f30077;
}

.swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction{
  bottom: 70px;
}
.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{
  margin: 0 9px;
  width: 0.875rem;
  height: 0.875rem;
  box-sizing: border-box;
  border: 1px solid #fff;
  background-color: transparent;
  opacity: 1;
}
.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active{
  background-color: #fff;
}

@media screen and (max-width: 1023px) {
  .header-tel {
    display: none;
  }
}

#newBridge .icon-right-center{
  top: 65% !important;
}

.price-father{
  bottom: 0;
  width: 100%;
  position: absolute;
  z-index: 9999;
}
.price{
  background: url(../images/bg_bottomnew.png) center repeat-y;
  background-size: 100% auto;
}

.t-container{
	display: block;
	top: 0;
	left: 0;
	position: relative;
	width: 100%;
	height: 100%
}
.pic-container{
	z-index: 99;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
  width: 100%;
  height:100%;
}
.anli-btn{
	z-index: 999;
	bottom: 16.7346%;
	left: 9.539583%;
	position: absolute;
  
}
.anli-btn2{
  left: 10%;
  /* left: 12.639583%; */
	/* left: 14.539583%; */
	/* width: 7.604vw; */
  	height: 1.875vw;
  	line-height: 1.875vw;
  	font-size: 0.938vw;
}

/* .index .section-content-3 .anli-btn{
	bottom: 23.7346%;
}
.index .section-content-2 .anli-btn{
	left: auto;
	right: 8.239583%;
  	bottom: 21%;
}
.index .section-content-2 .anli-btn2{
	left: auto;
	right: 10.139583%;
	bottom: 25%;
}
.index .section-content-4 .anli-btn{
  left:auto;
  bottom: 32.7346%;
  right: 10.039583%;
}
.index .section-content-4 .anli-btn2{
  bottom: 37%;
} */
.fp-tableCell{
	overflow: hidden;
}
#about_top_video.w,
.ie.index.w .section-content video{
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100vw;
	height: auto;
	transform: translate(-50%, -50%);
	z-index: 9;
}
#about_top_video.h,
.ie.index.h .section-content video{
	position: absolute;
	top: 50%;
	left: 50%;
	width: auto;
	height: 100vh;
	transform: translate(-50%, -50%);
	z-index: 9;
}
.num-pre{
  position: relative;
}
.num-pre::before{
  position: absolute;
  top: 0;
  left: -35px;
  font-size: 48px;
  width: 48px;
  font-family: "微软雅黑";
}
.num-1::before{
  content: "1";
}
.num-2::before{
  content: "2";
}
.num-3::before{
  content: "3";
}

@media screen and (max-width: 1350px) and (min-width: 1010px) {
  .logo-text-en-p{
    font-size: 18px;
  }
  .w-60vw{
    width: 58vw;
  }
}
@media screen and (max-width: 1010px) {
  .logo-text-en-p{
    font-size: 16px;
  }
  .w-60vw{
    width: 65vw;
  }
}


@media screen and (max-width: 1380px) {
  .about-3-title{
    margin-bottom: 2.577vw;
    font-size: 3.41vw;
  }
  .about-4-wrap .about-3-small-title{
    margin-top: 1.2vw;
    margin-bottom: 1.477vw;
  }
  .about-3-small-title{
    font-size: 1.464vw;
  }
  .about-4-right-3{
    width: 14.738vw;
  }
  .about-4-right-4-info{
    width: 13vw;
  }
  
  .about-2-right-2 .about-2-right-info{
    width: 55.1941%;
  }
}
.about-2-bt-1{
  display: flex;
  flex-wrap: wrap;
}
.about-2-bt-1 .about-ess-llt,
.about-2-bt-1 .about-ess-lrt{
  width: calc(50% - 0.75rem);
}
.about-2-bt-1 .about-ess-llt{
  margin-right: 1.5rem;
}
.about-ess-lrt .about-2-right-content{
  margin-bottom: 1rem; 
}
.about-ess-lrt .about-2-right-content:nth-child(3n){
  margin-bottom: 0;
}
.about-2-left-2{
  padding: 0.5rem 0;
  box-sizing: border-box;
  width: 100%;
  position: relative;
  display: block;
}
.a-text,
.a-text:visited{
  font-size: 14px;
  display: block;
  color: #f30077;
  font-weight: var(--body-font-lighter);
  margin-top: 0;
  margin-bottom: 0.5rem;
  text-align: right;
}
.a-text:hover{
  color: red;
}
.about-2-right-bt{
  padding-top: 1rem;
  border-top: 1px solid #999;
}
.about-3-wrap-content ul{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.about-3-wrap-content li{
  width: calc((100% / 3) - 20px);
  margin-right: 30px;
}
.about-3-wrap-content li:nth-child(3n){
  margin-right: 0;
}
.about-3-wrap-content li figure{
  margin-bottom: 1rem;
}
.about-3-wrap-content li h5{
  font-size: 0.9rem;
  font-weight: normal;
  color: rgba(117, 117, 117, 1);
  margin-bottom: 10px;
}
.about-3-wrap-content .about-wrap-content,
.about-3-wrap-content .about-wrap-content p,
.about-3-wrap-content .about-wrap-content span{
  font-size: 14px !important;
  color: #999 !important;
  line-height: 20px !important;
}
.about-3-wrap-content li .hoverimg,
.about-3-wrap-list li .hoverimg{
  width: 100%;
  transform: scale(0);
  display: none;
  transition: all 0.3s;
}
.about-3-wrap-content li .origanimg,
.about-3-wrap-list li .origanimg {
  width: 100%;
  display: block;
  transform: scale(1);
  transition: all 0.3s;
}
.about-3-wrap-content li:hover .hoverimg,
.about-3-wrap-list li:hover .hoverimg {
  width: 100%;
  display: block;
  transform: scale(1);
}
.about-3-wrap-content li:hover .origanimg,
.about-3-wrap-list li:hover .origanimg {
  width: 100%;
  display: none;
  transform: scale(0);
}
.about-3-wrap-content li:hover figure,
.about-3-wrap-list li:hover{
  box-shadow: 0px 0px 20px rgb(163, 163, 163);
}
.about-3-wrap-list{
  padding-top: 2rem;
  width: 100%;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.about-3-wrap-list ul{
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: baseline;
}
.about-3-wrap-list li{
  width: calc((100% / 8) - 8px);
  margin-right: 9px;
  cursor: pointer;
}
.about-3-wrap-list li:nth-child(8n){
  margin-right: 0;
}
.video-wrap video#about_2_video{
  width: 100%;
  height: auto;
  object-fit: cover;
}
.header-nav{
  height: 66px;
  height: 2.94vw;
}
.header-nav figure{
  margin: 1rem 0;
  /* height: 34px; */
  width: 15.23vw;
  margin: 0.65vw 0;
}
.header-nav figure img{
  max-height: 100%;
  object-fit: cover;
  width: 100%;
}
#fp-nav ul li{
  margin: 4px 7px;
}
#fp-nav ul li a{
  transform: scale(0.5);
  transition: all .3s;
  -o-transition: all .3s;
  -moz-transition: all .3s;
  -webkit-transition: all .3s;
}
#fp-nav ul li a span{
  border: 1px solid #ccc;
  background-color: #FFFFFF;
  /* opacity: 0.5; */
}
#fp-nav ul li a.active,
#fp-nav ul li:hover a{
  transform: scale(1);
}
#fp-nav ul li a.active span{
  border: 1px solid #ccc;
  opacity: 1;
}

#fp-nav ul li:hover a span,
#fp-nav ul li a.active span,
.fp-slidesNav ul li a.active span,
#fp-nav ul li:hover a.active span,
.fp-slidesNav ul li:hover a.active span{
  background-color: #FDEF07;
}
@media screen and (max-width: 1600px) and (max-height: 750px){
  .about-3-wrap-list{
    padding-top: 12px;
  }
  .about-3-title{
    margin-top: 0.8vw;
    margin-bottom: 0.8rem;
  }
}
@media screen and (max-width: 1250px) and (max-height: 700px){
  .container{
    width: 88.88%;
  }
  .about-2-wrap, .about-4-wrap, .about-3-wrap{
    transform: translateX(-50%) scale(0.85);
  }
}
@media screen and (max-height:700px){
  .about-3-title{
    margin-top: 0.2vw;
    margin-bottom: 0.2vw;
  }
  .about-3-wrap-list{
    padding-top: 8px;
  }
}
.about-flex-box{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}






.mb-show{
  display: none;
}
.menu-btn {
  display: none;
  margin-top: -12px;
  height: 24px;
  text-align: center;
  position: absolute;
  top: 50%;
  right: 3%;
}

.menu-btn span {
  background: #333;
  width: 1.5rem;
  height: 0.15rem;
  display: inline-block;
  position: relative;
  margin-top: 10px;
}

.menu-btn i {
  position: absolute;
  left: 0;
  width: 1.5rem;
  height: 0.15rem;
  background: #333;
  display: block;
  -webkit-transition-duration: 0.3s, 0.3s;
  transition-duration: 0.3s, 0.3s;
  -webkit-transition-delay: 0.3s, 0s;
  transition-delay: 0.3s, 0s;
}

.menu-btn i.menu-btn-top {
  top: -0.5rem;
  -webkit-transition-property: top, -webkit-transform;
  transition-property: top, -webkit-transform;
  transition-property: top, transform;
  transition-property: top, transform, -webkit-transform;
  -webkit-transition-property: top, transform;
}

.menu-btn i.menu-btn-bottom {
  bottom: -0.5rem;
  -webkit-transition-property: bottom, -webkit-transform;
  transition-property: bottom, -webkit-transform;
  transition-property: bottom, transform;
  transition-property: bottom, transform, -webkit-transform;
  -webkit-transition-property: bottom, transform;
}

.menu-btn.menu-btn-on span {
  background-color: transparent;
}

.menu-btn.menu-btn-on i.menu-btn-top {
  top: 0;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.menu-btn.menu-btn-on i.menu-btn-bottom {
  bottom: 0;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.menu-btn.menu-btn-on i.menu-btn-top,
.menu-btn.menu-btn-on i.menu-btn-bottom {
  background-color: #333;
  transition-delay: 0s, 0.3s;
  -webkit-transition-delay: 0s, 0.3s;
}
.nav-mb {
  width: 100%;
  z-index: 9999;
  background: linear-gradient(
    135deg,
    rgb(166, 0, 160) 0%,
    rgb(0, 132, 108) 100%
  );
  -webkit-box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  top: 66px;
  left: 0;
  overflow: hidden;
  /* display: none; */
  position: fixed;
}

.nav-mb ul {
  display: none;
  padding: 20px 5%;
  margin: 0 auto;
  height: 100vh;
  border-top: 1px solid #eee;
}
.nav-mb ul li {
  text-decoration: none;
  list-style: none;
}
.nav-mb ul li > a.on {
  background: rgba(255, 255, 255, 0.5);
}

.nav-mb a {
  padding: 0.5rem 20px;
  display: block;
  line-height: 40px;
  border-bottom: 1px solid #eee;
  position: relative;
  color: #fff;
  font-size: 1.2rem;
}

.nav-mb a.on:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.w-full{
  width: 100%;
}

.mb-show .swiper-container .pagination {
  margin: 0;
  z-index: 9;
  position: absolute;
  left: 0;
  bottom: 16px;
  width: 100%;
  text-align: center;
}
.mb-show .swiper-container .swiper-pagination-bullet{
  margin: 0 3px;
  width: 8px;
  height: 8px;
  background-color: #fff;
  opacity: .5;
}
.mb-show .swiper-container .swiper-pagination-bullet.swiper-pagination-bullet-active{
  opacity: 1;
}
#banner .video-play-btn svg{
  width: 100%;
  height: 100%;
}
#banner .video-play-btn{
  z-index: 9;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: transparent;
}
#banner img{
  vertical-align: top;
}

.video-wrap-1 {
  z-index: 999999;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: all .3s;
  opacity: 0;
  visibility: hidden;
}

.video-wrap-1.on {
  opacity: 1;
  visibility: visible;
}
.video-container{
  display: none;
  width: 70%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  z-index: 9;
  outline: none;
  border: 8px solid #fff;
  border-radius: 8px;
}

.video-bg {
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
@media screen and (max-width:1100px){
  .video-container{
    width: 80%;
  }
}

@media screen and (max-width:640px){
  .video-container{
    width: 94%;
  }
}


@media screen and (min-width: 769px){
  body{
    --body-font-lighter: lighter;
  }
}
@media screen and (max-width: 768px){
  body{
    min-width: unset !important;
    width: 100%;
    --body-color: #42454c;
    --body-font-size: 14px;
    --body-font-ad: 24px;
    --body-font-p: 20px;
    --body-font-lighter: 300;
    --body-gap: 40px;
    color: var(--body-color) !important;
  }
  .fs-13{
    --body-font-size: 12px !important;
  }
  .mb-show{
    display: block;
  }
  .mb-hide{
    display: none !important;
  }

  .container{
    width: calc(100% - 30px) !important;
  }
  .header .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
  }
  .header{
    background: #fff;
  }
  .logo{
    margin-top: 0;
    width: auto;
    height: 100%;
    flex: 1;
  }
  .logo-img{
    width: 100% !important;
    /* height: 100% !important; */
    height: calc(100% - 7.268%) !important;
    object-fit: scale-down !important;
    object-position: left;
  }
  .header-tel-mb img{
    object-fit: scale-down !important;
  }
  #banner {
    margin-top: 66px;
  }

  .sale-characteristics li{
    list-style-type: none;
    padding: 0 10px;
  }
  .sale-characteristics{
    padding-left: 0;
    display: flex;
    justify-content: space-around;
    width: calc(100% - 50px);
    margin: 0 auto 30px; 
    
  }
  .sale-characteristics figure{
    margin-bottom: 0;
  }
  .sale-characteristics img{
    width: 80px;
  }
  .sale-characteristics p{
    margin: 0;
    line-height: 1.4;
    font-size: var(--body-font-size);
    text-align: center;
    color: var(--body-color);
    font-weight: bold;
  }

  .block-yuyue-container{
    width: 94vw;
    margin: 0 auto;
  }
  .block-yuyue-container .title{
    margin: 0;
    margin-top: 25px;
    font-size: 28px;
    font-weight: normal;
    text-align: center;
  }
  .block-yuyue-container .sub-title{
    text-align: center;
    color:#e6b4bd;
    margin-top: 10px;
    margin-bottom: 0;
  }

  .block-yuyue-form .form-item + .form-item{
    margin-top: 14px;
  }
  .block-yuyue-form .form-item .label em{
    color: #eb2d37;
  }
  .block-yuyue-form .form-item .label{
    display: block;
    margin-bottom: .5rem;
    font-weight: bold;
  }
  .block-yuyue-form .form-item .input,
  .block-yuyue-form .form-item .select{
    width: 100%;
    outline: none;
    border: 1px solid #93928e;
    border-radius: 5px;
    box-sizing: border-box;
    padding: 7px 10px;
  }
  .block-yuyue-form .submit-btn{
    margin-top: 14px;
    background-color: #fc1b5d;
    box-shadow: none;
    outline: none;
    color: #fff;
    text-align: center;
    width: 100%;
    height: 38px;
    line-height: 38px;
    font-size: 16px;
    font-weight: bold;
    border: 0;
    border-radius: 38px;
  }
  .block-yuyue-form .form-item{
    display: block;
  }
  .title-2 {
    margin-bottom: 20px;
  }
  .title-2 .title-2-text{
    text-align: center;
    font-size: var(--body-font-ad);
    font-weight: bold;
    color: #ff105d;
  }
  .title-2 .title-2-sub-text{
    text-align: center;
    width: 90%;
    margin: 8px auto 0;
    font-size: var(--body-font-p);
    font-weight: var(--body-font-lighter);
    line-height: 1.32;
  }
  .title-2 .fire-apply{
    width: 170px;
    margin: 20px auto 0;
    background-color: #fff4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 20px;
    border-radius: 30px;
  }
  .title-2 .fire-apply svg{
    width: 18px;
    height: 18px;
    margin: 0;
  }
  .title-2 .fire-apply span{
    padding-left:8px;
    margin-left: 0;
    margin-right: 0;
    display: flex;
    color: #ee575e;
    vertical-align: baseline;
    align-items: center;
    line-height: 1;
  }
  .title-3{
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
  }
  .title-3-sub-text{
    font-size: 12px;
    color: #1a1a1a;
  }
  .title-3-text{
    color: #1a1a1a;
    font-size: 16px;
    font-weight: bold;
  }

  .new-submit-success-client::after{
    z-index: 9;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  .new-submit-success-client .title{
    text-align: center;
    color: #fc1b5d;
    font-weight: bold;
    margin: 0;
    font-size: 18px;
    margin-bottom: 20px;
  }


  .new-submit-success-client .new-title-span{
    font-size: 18px;
    display: inline-block;
    background-color: #fc1b5d;
    margin: 0;
    color: #fff;
    margin: 0 4px;
    padding: 0 3px;
    border-radius: 3px;
  }
  .new-submit-success-client{
    margin-top: 24px;
    position: relative;
    background-color: #fdefef;
    border-radius: 20px;
    color: #fc1b5d;
    padding: 10px 20px;
    box-sizing: border-box;
  }
  .new-submit-success-client .swiper-slide.swiper-slide-active + .swiper-slide{
    opacity: 1;
    background-color: #fbd5d4;
    border-radius: 40px;
    color: #fc1b5d;
  }
  .new-submit-success-client .swiper-slide{
    box-sizing: border-box;
    padding: 0 20px;
    height: 40px;
    display: flex;
    box-sizing: border-box;
    margin: 0;
    align-items: center;
    justify-content: space-between;
    color: rgba(252,27,93,.5);
  }
  .new-submit-success-client .swiper-container{
    height: 120px;
  }


  .why-choose-title{
    width: 78vw;
    /* margin: var(--body-gap) auto 20px !important; */
    margin: 0 auto 20px !important;
  }
  .why-choose-title img{
    width: 100%;
  }
  .why-choose-list{
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
  }
  .why-choose-list li+li+li,
  .why-choose-list li+li+li+li{
    margin-top: 16px;
  }
  .why-choose-list li{
    width: 50%;
  }
  .why-choose-list .title{
    font-size: var(--body-font-size) !important;
    font-weight: bold;
    color: var(--body-color);
  }
  .why-choose-list .desc{
    margin-top: 6px;
    font-weight: var(--body-font-lighter);
    font-size: var(--body-font-size) !important;
    color: var(--body-color);
  }
  .why-choose-figure img{
    width: 100%;
  }
  .why-choose-figure{
    width: 72%;
    margin: 0 auto 5px;
  }
  .about{
    margin-top: var(--body-gap);
  }
  .about-2-wrap,
  .about-3-wrap,
  .about-4-wrap{
    position: static !important;
    height: auto;
    transform: none;
    display: block;
  }
  .about-2-bt-1 .about-ess-llt, 
  .about-2-bt-1 .about-ess-lrt,
  .about-2-right,
  .about-2-left{
    width: 100%;
    margin-right: 0;
  }
  .about-2-left-1{
    /* display: none; */
  }
  .about-3-wrap-content li{
    width: 100%;
    margin-right: 0;
  }
  .about-3-wrap-content li figure{
    margin-top: 30px;
  }
  .video-wrap i{
    min-width: 30px;
    min-height: 30px;
  }
  .about-2-left-brief p,
  .about-2-left-brief span,
  .about-2-left-brief{
    font-size: var(--body-font-size) !important;
    color: var(--body-color) !important;
  }

  .about-2-right-bt{
    padding-top: 0;
    border-top: 0;
    /* margin-top: var(--body-gap); */
  }
  .about-2-right-bt span{
    font-size: 14px !important;
  }

  .about-2-right-bt strong,
  .about-2-right-bt span,
  .about-2-right-bt p,
  .about-2-left-2 strong,
  .about-2-left-2 span,
  .about-2-left-2 p,
  .about-ess-lrt .about-2-right-content strong,
  .about-ess-lrt .about-2-right-content span,
  .about-ess-lrt .about-2-right-content p,
  .about-ess-lrt .about-2-right-content{
    font-size: var(--body-font-size) !important;
    color: var(--body-color) !important;
  }
  .about-ess-lrt .about-2-right-content span{
    font-weight: var(--body-font-lighter);
  }

  .video-wrap video#about_2_video{
    margin-top: 14px;
  }

  .a-text, 
  .a-text:visited{
    display: block;
    text-align: center;
    height: 40px;
    line-height: 40px;
    border-radius: 40px;
    border: 1px solid #fc1b5d;
    background-color: #fc1b5d;
    font-size: 18px;
    color: #fff !important;
  }

  .about-3-wrap-list{
    padding-top: 0;
  }
  .about-3-wrap-list li:nth-child(2n){
    margin-right: 0;
  }
  .about-3-wrap-list li{
    width: calc((100% / 2) - 7px);
    margin-bottom: 7px;
  }

  .case .section-content{
    width: 100%;
    height: auto;
  }

  .about-3-sub-title{
    text-align: center;
    font-size: var(--body-font-p);
    font-weight: bold;
    margin-top: calc(var(--body-gap) / 2.6);
    margin-bottom: 20px;
  }
  .mt-30{
    margin-top: 30px;
  }
  .mb-30{
    margin-bottom: 30px;
  }
  .about-3-wrap-list{
    margin-bottom: 20px;
  }
  .mb-line{
    margin-top: var(--body-gap) !important;
    text-align: center;
    overflow: hidden;
  }

  .mb-line span::before,
  .mb-line span::after{
    position: absolute;
    left: calc(-200% - 6px);
    width: 200%;
    top: 50%;
    height: 1px;
    transform: translateY(-50%);
    display: block;
    content: "";
    background-color: var(--body-color);
  }
  .mb-line span::after{
    left: unset;
    right: calc(-200% - 6px);
  }

  .mb-line span{
    color: var(--body-color);
    position: relative;
    display: inline-block !important;
    font-size: var(--body-font-p) !important;
    font-weight: bold;
  }


  .huanyuan-section{
    padding: 85px 0;        
  }
  .huanyuan-section-wrap{
    display: flex;
  }
  .huanyuan-section .title{
    text-align: center;
    font-size: 36px;
    padding-bottom: 40px;
  }
  .huanyuan-section .title p{
    padding: 0 30px;
    display: inline-block;
  }
  .huanyuan-section{
    padding: var(--body-gap) 0 0!important;
  }
  .huanyuan-section .title {
    display: flex;
    justify-content: center;
    padding-bottom: calc(var(--body-gap) / 2) !important;
  }
  .huanyuan-section .title p{
    padding: 0 4px !important;
    font-weight: bold;
    font-size: var(--body-font-p);
    color: var(--body-color);
    margin-bottom: 0;
  }


  .core-services{
    margin-top: 8px;
  }
  .core-services .mb-line{
    margin-top: 0 !important;
  }
  .core-services-wrap li+li{
    margin-top: 20px;
  }
  .core-services-wrap li{
    list-style-type: none;
    padding: 0;
    display: flex;
  }
  .core-services-wrap{
    padding-left: 0;
    /* display: flex; */
    /* justify-content: space-around; */
    width: 100%;
    margin: 20px auto 2px; 
    /* text-align: center; */
  }
  .core-services-wrap figure{
    margin-bottom: 0;
  }
  .core-services-wrap figcaption{
    flex: 1;
    margin-left: 20px;
  }
  .core-services-wrap img{
    width: 122px;
  }
  .core-services-wrap h4{
    font-size: var(--body-font-size);
    font-weight: bold;
    margin: 0;
    /* margin-top: 10px; */
    margin-bottom: 2px;
    color: var(--body-color);
  }
  .core-services-wrap p{
    margin: 0;
    line-height: 1.4;
    font-size: var(--body-font-size);
    font-weight: var(--body-font-lighter);
    /* color: #ec007b; */
  }
  .core-services-wrap p::before{
    content: "";
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
    width: 10px;
    height: 2px;
    background-color: #231916;
  }
  .core-services-wrap div span{
    display: block;
    color: var(--body-color);
    font-size: var(--body-font-size);
    line-height: 1.5;
  }
  .core-services-wrap div{
    /* padding-top: 4px; */
    font-size: var(--body-font-size);
  }
  .core-services-wrap .core-biref-p-item:empty{
    display: none;
  }
  .core-services-wrap .core-biref-p-item:empty::before{
    display: none;
  }
  .core-services-wrap .core-biref-p-item::before{
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #1a1a1a;
    display: inline-block;
  }
  .core-services-p{
    margin: 10px 0 30px;
    text-align: center;
    font-size: 18px;
    color: #1a1a1a;
  }



  .jiaoyi-section{
    margin: 80px auto 90px;
  }
  .jiaoyi-section .container{
    position: relative;
    border: 1px solid #9e9e9e;
    border-radius: 20px;
  }

  .jiaoyi-section-desc,
  .jiaoyi-section-title{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .jiaoyi-section-title p{
    margin: 0;
    font-size: 24px;
    background-color: #fff;
    margin-left: 10px;
  }
  .jiaoyi-section-title{
    top: -38px;
    padding: 0 20px;
  }

  .jiaoyi-section-desc{
  margin: 0;
      bottom: -12px;
      padding: 0 20px;
      font-size: 22px;
  }

  .jiaoyi-section-wrap{
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 30px 0;
  }
  .jiaoyi-section-wrap .jiaoyi-section-item{
    list-style-type: none;
  }
  .jiaoyi-section-wrap .jiaoyi-section-item img{
    display: block;
    margin: 0 auto;
  }
  .jiaoyi-section-wrap .jiaoyi-section-item h4{
    font-size: 18px;
    margin: 0;
    font-weight: normal;
    text-align: center;
  }
  .jiaoyi-section{
    margin: calc(var(--body-gap) * 1.25) 0 10px !important;
  }
  .jiaoyi-section-wrap{
    flex-wrap: wrap;
  }
  .jiaoyi-section-wrap .jiaoyi-section-item figure img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: scale-down;
  }
  .jiaoyi-section-wrap .jiaoyi-section-item figure{
    width: 80%;
    padding-bottom: 80%;
    height: 0;
    position: relative;
    margin: 0 auto;
  }
  .jiaoyi-section-wrap .jiaoyi-section-item{
    width: 33.3%;
  }
  .jiaoyi-section-wrap{
    align-items: flex-start !important;
  }
  .jiaoyi-section-wrap .jiaoyi-section-item h4{
    font-size: 15px !important;
    margin: 0 auto !important;
    width: 100%;
    display: block;
    text-align: center !important;
  }
  
  .jiaoyi-section-desc{
    font-size: var(--body-font-size) !important;
    font-weight: bold;
    white-space: nowrap;
  }
  .jiaoyi-section-title{
    margin: 0;
    top: -17px !important;
  }
  .jiaoyi-section-title img{
    width: 32px;
  }
  .jiaoyi-section-title p{
    font-size: var(--body-font-p) !important; 
    font-weight: bold !important;
    margin-left: 5px !important;
    color: var(--body-color) !important;
    white-space: nowrap;
  }
  .jiaoyi-section-desc span{
    color: #ff2573;
  }

  .before-form {
    margin-top: calc(var(--body-gap) + var(--body-font-p) / 2);
    text-align: center;
  }
  .before-form .before-title-1{
    color: #ff2573;
    font-size: var(--body-font-ad);
    font-weight: bold;
    margin: 0 auto;
  }
  .before-form .before-title-2{
    /* margin-top: 10px;
    font-size: 16px;
    line-height: 1.3;
    color: var(--body-color); */

    text-align: center;
    width: 90%;
    margin: 10px auto 0;
    font-size: var(--body-font-p);
    font-weight: var(--body-font-lighter);
    line-height: 1.32;
  }
  .before-form .qrcode-list{
    display: flex;
    justify-content: center;
    margin: 14px 14px;
  }
  .before-form .qrcode-list p{
    font-size: 14px; 
    color: #f50b76;
    font-weight: bold;
  }
  .before-form .before-title-3{
    width: calc(100% - 40px);
    margin: 0 auto;
    margin-top: 10px;
    /* font-size: var(--body-font-p); */
    font-weight: bold;
    font-size: 17px;
    font-weight: var(--body-font-lighter);
    word-break: break-all;
  }
  .before-form .before-title-4{
    margin-top: 4px;
    color: #ff2573;
    font-size: 24px;
    font-weight: bold;
  }
  .mb-form-tips{
    margin-top: 10px;
    color: #999;
    font-size: 12px;
    text-align: center;
  }
  .block-yuyue-container{
    margin-top: 30px;
  }

  .copyright2 a, 
  .copyright2{
    font-size: 14px;  
    line-height: 1.4;
  }
  .copyright2{
    text-align: center;
  }
  .copyright2 a{
    display: block;
  }

  .about-4-wrap{
    display: none;
  }

  .about-4-right-4 .qrcode-list,
  .about-4-right-4-info,
  .about-4-right-3,
  .about-4-right-2{
    width: 50%;
  }

  .about-4-right-1,
  .about-4-right-4{
    margin-top: 20px;
    display: none;
  }

  .about-4-right-4 h4,
  .about-4-right-4 p,
  .about-4-right-2 p, 
  .about-4-right-3 p,
  .about-4-right-1 h4{
    font-size: 14px;
    line-height: 1.5;
  }

  .about-4-right-4 .qrcode-list div{
    width: 25%;
  }


  .mb .footer-calc .calu-main{
    bottom: 5px;
    width: calc(100% - 40px);
    overflow-y: auto;
    /* height: auto; */
    bottom: 0 !important;
    height: unset;
    max-height: calc(80vh - 40px);
    padding: 15px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 10px;
    /* padding-bottom: 40px; */
    padding-bottom: 10px;
    /* display: flex;
    flex-direction: column;
    align-items: center; */
  }
  .mb-footer{
    margin-bottom: 30px;
  }
  .mb .footer-calc .calu-btn img{
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
  .mb .footer-calc .calu-btn::after{
    content: "Start Calculation";
    display: block;
  }
  .mb .footer-calc .calu-result{
    display: none !important;
  }
  .mb .footer-calc .calu-btn{
    float: none;
    position: relative;
    display: block;
    margin: 20px auto 10px;
    width: 220px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    color: #fff;
    background-color: #c100ab;
    font-size: 20px;
    font-weight: bold;
    border-radius: 50px;
    /* animation:none; */
    overflow: hidden;
  }

  .mb .footer-calc .result-box,
  .mb .footer-calc .calu-result .js_succ_tip,
  .mb .calu-result{
    width: 100%;
    box-sizing: border-box;
  }
  .mb .calu-qrcode{
    display: none;
  }
  .mb .footer-calc.calc-container{
    height: auto;
    bottom: 0;
    padding-bottom: 20px;
  }
  .mb .calc-main-top{
    width: 100%;
  }
  .mb .calc-main-top .calu-title{
    font-size: 0 !important;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
  }

  .mb .calu-main .calu-title em span{
    color: #ff8d1b;
    font-size: 18px !important;
  }
  .mb .calu-main .calu-title em{
    padding-left: 0;
    margin-left: 0;
    font-size: 18px !important;
    text-align: center;
    color: #1a1a1a;
    font-weight: normal;
  }
  .mb .footer-calc .calu-main{
    bottom: 0 !important;
  }
  .mb .footer-calc .calu-main .tab{
    display: none;
  }
  .mb .row-form-item{
    display: flex;
    align-items: center;
    width: 100%;
  }
  .mb .footer-calc .form-control,
  .mb .footer-calc .calc-form .form-control{
    flex: 1;
  }
  .mb .footer-calc .calc-form select,
  .mb .footer-calc .calc-form input{
    border: 1px solid #dbdbdb;
  }
  .mb .footer-calc .calc-form div i{
    right: 12px;
  }
  .mb .js_succ_tip{
    margin-top: 15px !important;
  }
  .mb .js_succ_tip p{
    font-size: 12px;
    text-align: center;
    margin-left: -13px;
    margin-right: -13px;
  }
  .mb .js_succ_tip p:first-child{
    display: none;
  }
  .mb .calu-title-box{
    display: flex;
    justify-content: center;
    margin-top: 15px;
    text-align: center;
    color: #1a1a1a;
  }
  .mb .footer-calc .result-box{
    border: 0;
    padding: 0;
  }
  .mb .result-box-item>em::before{
    content:'元';
    position: absolute;
    right: 5px;
    top: 0;
  }
  .mb .result-box-item>em{
    position: relative;
    line-height: 1;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    box-sizing: border-box;
    padding-right: 24px;
    border: 1px solid #dbdbdb;
    line-height: 26px !important;
  }
  .mb .result-box-item{
    display: flex;
    align-items: center;
  }
  .mb .result-box-item>em>div{
    display: flex;
    align-items: center;
  }
  .mb .footer-calc .tips-1{
    margin-top: 10px;
    font-size: 12px;
    text-align: center;
    color: #ee8319;
  }

  .mb .footer-calc.calc-container{
    background-color: #a2029e;
  }
  .mb .price-father .price{
    display: none;
  }
  .mb .price-info{
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-size: var(--body-font-size);
    font-weight: bold;
    height: 50px;
  }
  .mb .calc-main-top .calu-title,
  .mb .js_succ_tip p{
    display: none;
  }

  .mb .footer-calc{
    transform: translateY(calc(100% - 50px));
    transition: all .23s;
  }
  .mb .footer-calc.on{
    transform: translateY(0);
  }
  .mb .footer-calc + .mask{
    z-index: 9;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,.5);
    opacity: 0;
    visibility: hidden;
    transition: all .23s ease;
  }
  .mb .on.footer-calc + .mask{
    opacity: 1;
    visibility: visible;
  }
  .mb .footer-calc .icon-close {
    display: none;
  }
  .mb .on.footer-calc .icon-close svg,
  .mb .on.footer-calc .icon-close {
    display: block;
    width: 40px;
    height: 40px;
  }
  .mb .on.footer-calc .icon-down{
    display: none;
  }
  .mb .price-father{
    z-index: 998;
  }
  .mb .price-father .price-img{
    position: absolute;
    width: 106px;
    top: -51px;
  }

  .footer-bottom-bar-placeholder{
    height: 50px;
  }
  .footer-bottom-bar{
    z-index: 999;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50px;
    display: flex;
  }
  .footer-bottom-item:nth-child(1) .icon-svg{
    width: 20px;
    height: 20px;
  }
  .footer-bottom-item .icon-svg{
    width: 24px;
    height: 24px;
    margin-right: 8px;
  }
  .footer-bottom-item{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, #cf1dbd, #ea0081);
    color: #fff;
  }
  body{
    --header-height: 48px;
  }
  .header{
    height: var(--header-height);
  }
  #banner{
    margin-top: var(--header-height);
  }
  .mb .header-tel{
    display: block;
    margin: 0;
    padding: 0;
  }
  .mb .header .clearfix{
    display: none;
  }
  .mb .header-tel div>img+div{
    display: none;
  }
  .mb .header-tel div{
    display: block;
  }
  .mb .header-tel img{
    margin-right: 0;
    min-width: 26px;
    min-height: 26px;
  }

  .about-3-small-title{
    font-size: var(--body-font-p);
    font-weight: var(--body-font-lighter);
    padding: 12px 0 0;
    line-height: 1.5;
    text-align: center;
  }
  .about-3-title{
    margin-top: 0;
    text-align: center;
    margin-bottom: 0;
    font-size: var(--body-font-ad)!important;
    line-height: 1.3;
    color: #fc1b5d;
  }

  .about-3-wrap-content li h5{
    font-size: var(--body-font-size) !important;
    color: var(--body-color)!important;
    font-weight: bold;
  }
  .about-wrap-content a{
    text-decoration: none !important;
  }
  .about-3-wrap-content li span,
  .about-3-wrap-content li p{
    font-size: var(--body-font-size)!important;
    color: var(--body-color)!important;
    font-weight: var(--body-font-lighter);
    line-height: 1.6;
  }

  .logo.fl{
    margin-left: 0;
    margin-right: 0;

  }
  .mb .footer-calc .tips-1{
    display: none;
  }

  .lang-list{
    order: 2;
    margin-left: 10px;
    margin-right: 0;
    position: unset;
  }
  .lang-list .cur-lang{
    color: #1a1a1a;
    position: relative;
    padding-right: 0;
    padding-top: 11px;
    height: auto;
    text-align: center;
    font-size: 1em;
  }
  .lang-list .cur-lang:after{
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-5px);
    border-top-color: #ed028c;
  }
  .lang-list:hover .lang-select{
    top: var(--header-height);
    right: 0;
    left: unset;
  }

  .copyright2{
    margin-top: 12px;
  }
  .copyright2 a, .copyright2{
    font-size: var(--body-font-size);
    color: var(--body-color);
  }

  .gap-half{
    height: calc(var(--body-gap) / 2);
  }
  .gap-half-3{
    height: calc(var(--body-gap) / 3);
  }
}



.loading{
  width: 24px;
  height: 24px;
  border: 2px solid;
  border-color: #fff #fff transparent;
  border-radius: 50%;
  box-sizing: border-box;
  /*动画时间1s，线性变化，无限循环*/
  animation: loading 1s linear infinite;
}
@keyframes loading{
  0%{
    transform: rotate(0deg);
  }
  100%{
    transform: rotate(360deg);
  }
}

.newflash.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 50px;
  height: 8px;
  display: inline-block;
  border-radius: 4px;
  background: transparent;
  opacity: 1;
}
.newflash.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet-active {
  opacity: 1;
  background:url(../images/process.png) no-repeat transparent;
  background-size:0px 8px;
  -webkit-animation: process 6000ms linear;
  animation: process 6000ms linear;
  animation-iteration-count:1;
  -webkit-animation-iteration-count:1;
}
@-webkit-keyframes process {
  0% { background-size: 0 8px; }
  100% { background-size: 50px 8px; }
}
@keyframes process {
  0% { background-size: 0 8px; }
  100% { background-size: 50px 8px; }
}