@charset "UTF-8";


/*!
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(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(.9);
    transform: scale(.9);
  }

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

@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(.9);
    -ms-transform: scale(.9);
    transform: scale(.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(.95);
    transform: scale(.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }
}

@keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(.95);
    -ms-transform: scale(.95);
    transform: scale(.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.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(.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.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(.95);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.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;
}

/*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */

/*!
 * Generated using the Bootstrap Customizer (<none>)
 * Config saved to config.json and <none>
 *//*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:0.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace, monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:hover,a:focus{color:#23527c;text-decoration:underline}a:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive,.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role="button"]{cursor:pointer}.carousel{position:relative}.carousel-inner{position:relative;overflow:hidden;width:100%}.carousel-inner>.item{display:none;position:relative;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform 0.6s ease-in-out;-o-transition:-o-transform 0.6s ease-in-out;transition:transform 0.6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-inner>.item.next,.carousel-inner>.item.active.right{-webkit-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0);left:0}.carousel-inner>.item.prev,.carousel-inner>.item.active.left{-webkit-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0);left:0}.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right,.carousel-inner>.item.active{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);left:0}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;left:0;bottom:0;width:15%;opacity:.5;filter:alpha(opacity=50);font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6);background-color:rgba(0,0,0,0)}.carousel-control.left{background-image:-webkit-linear-gradient(left, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-image:-o-linear-gradient(left, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-image:-webkit-gradient(linear, left top, right top, color-stop(0, rgba(0,0,0,0.5)), to(rgba(0,0,0,0.0001)));background-image:linear-gradient(to right, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)}.carousel-control.right{left:auto;right:0;background-image:-webkit-linear-gradient(left, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-image:-o-linear-gradient(left, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-image:-webkit-gradient(linear, left top, right top, color-stop(0, rgba(0,0,0,0.0001)), to(rgba(0,0,0,0.5)));background-image:linear-gradient(to right, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)}.carousel-control:hover,.carousel-control:focus{outline:0;color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}.carousel-control .icon-prev,.carousel-control .icon-next,.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right{position:absolute;top:50%;margin-top:-10px;z-index:5;display:inline-block}.carousel-control .icon-prev,.carousel-control .glyphicon-chevron-left{left:50%;margin-left:-10px}.carousel-control .icon-next,.carousel-control .glyphicon-chevron-right{right:50%;margin-right:-10px}.carousel-control .icon-prev,.carousel-control .icon-next{width:20px;height:20px;line-height:1;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;margin-left:-30%;padding-left:0;list-style:none;text-align:center}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid #fff;border-radius:10px;cursor:pointer;background-color:#000 \9;background-color:rgba(0,0,0,0)}.carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#fff}.carousel-caption{position:absolute;left:15%;right:15%;bottom:20px;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-prev,.carousel-control .icon-next{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{left:20%;right:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.clearfix:before,.clearfix:after{content:" ";display:table}.clearfix:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right !important}.pull-left{float:left !important}.hide{display:none !important}.show{display:block !important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none !important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-xs,.visible-sm,.visible-md,.visible-lg{display:none !important}.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block{display:none !important}@media (max-width:767px){.visible-xs{display:block !important}table.visible-xs{display:table !important}tr.visible-xs{display:table-row !important}th.visible-xs,td.visible-xs{display:table-cell !important}}@media (max-width:767px){.visible-xs-block{display:block !important}}@media (max-width:767px){.visible-xs-inline{display:inline !important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block !important}table.visible-sm{display:table !important}tr.visible-sm{display:table-row !important}th.visible-sm,td.visible-sm{display:table-cell !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block !important}table.visible-md{display:table !important}tr.visible-md{display:table-row !important}th.visible-md,td.visible-md{display:table-cell !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block !important}}@media (min-width:1200px){.visible-lg{display:block !important}table.visible-lg{display:table !important}tr.visible-lg{display:table-row !important}th.visible-lg,td.visible-lg{display:table-cell !important}}@media (min-width:1200px){.visible-lg-block{display:block !important}}@media (min-width:1200px){.visible-lg-inline{display:inline !important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block !important}}@media (max-width:767px){.hidden-xs{display:none !important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none !important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none !important}}@media (min-width:1200px){.hidden-lg{display:none !important}}.visible-print{display:none !important}@media print{.visible-print{display:block !important}table.visible-print{display:table !important}tr.visible-print{display:table-row !important}th.visible-print,td.visible-print{display:table-cell !important}}.visible-print-block{display:none !important}@media print{.visible-print-block{display:block !important}}.visible-print-inline{display:none !important}@media print{.visible-print-inline{display:inline !important}}.visible-print-inline-block{display:none !important}@media print{.visible-print-inline-block{display:inline-block !important}}@media print{.hidden-print{display:none !important}}
/*
 * Swiper - Mobile Touch Slider CSS
 * http://www.idangero.us/sliders/swiper
 *
 * Vladimir Kharlampidi, The iDangero.us
 * http://www.idangero.us/
 *
 * Copyright 2012-2013, Vladimir Kharlampidi
 * The iDangero.us
 * http://www.idangero.us
 *
 * Licensed under GPL & MIT
 *
*/

/* ===============================================================
Basic Swiper Styles
================================================================*/
.swiper-container {
	margin:0 auto;
	position:relative;
	overflow:hidden;
	-webkit-backface-visibility:hidden;
	-moz-backface-visibility:hidden;
	-ms-backface-visibility:hidden;
	-o-backface-visibility:hidden;
	backface-visibility:hidden;
	/* Fix of Webkit flickering */
	z-index:1;
}
.swiper-wrapper {
	position:relative;
	width:100%;
	-webkit-transition-property:-webkit-transform, left, top;
	-webkit-transition-duration:0s;
	-webkit-transform:translate3d(0px,0,0);
	-webkit-transition-timing-function:ease;

	-moz-transition-property:-moz-transform, left, top;
	-moz-transition-duration:0s;
	-moz-transform:translate3d(0px,0,0);
	-moz-transition-timing-function:ease;

	-o-transition-property:-o-transform, left, top;
	-o-transition-duration:0s;
	-o-transform:translate3d(0px,0,0);
	-o-transition-timing-function:ease;
	-o-transform:translate(0px,0px);

	-ms-transition-property:-ms-transform, left, top;
	-ms-transition-duration:0s;
	-ms-transform:translate3d(0px,0,0);
	-ms-transition-timing-function:ease;

	transition-property:transform, left, top;
	transition-duration:0s;
	transform:translate3d(0px,0,0);
	transition-timing-function:ease;
}
.swiper-free-mode > .swiper-wrapper {
	-webkit-transition-timing-function: ease-out;
	-moz-transition-timing-function: ease-out;
	-ms-transition-timing-function: ease-out;
	-o-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
	margin: 0 auto;
}
.swiper-slide {
	float: left;
}

/* IE10 Windows Phone 8 Fixes */
.swiper-wp8-horizontal {
	-ms-touch-action: pan-y;
}
.swiper-wp8-vertical {
	-ms-touch-action: pan-x;
}

/* ===============================================================
Your custom styles, here you need to specify container's and slide's
sizes, pagination, etc.
================================================================*/
.swiper-container {
	/* Specify Swiper's Size: */

	/*width:200px;
	height: 100px;*/
}
.swiper-slide {
	/* Specify Slides's Size: */

	/*width: 100%;
	height: 100%;*/
}
.swiper-slide-active {
	/* Specific active slide styling: */

}
.swiper-slide-visible {
	/* Specific visible slide styling: */

}
/* ===============================================================
Pagination Styles
================================================================*/
.swiper-pagination-switch {
	/* Stylize pagination button: */

}
.swiper-active-switch {
	/* Specific active button style: */

}
.swiper-visible-switch {
	/* Specific visible button style: */

}

        .g-scrolling-carousel {
          position: fixed;
          top: 2.6179rem;
          left: 0;
          width: 100%;
          background: rgba(255, 255, 255);
          height: 7.166rem;
          padding: 0.83rem 1.333rem;
          box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.05);
          z-index: 90;
          transition: all 0.5s;
        }

        .g-scrolling-carousel .items {
          overflow-x: scroll;
          white-space: nowrap;
          width: 100%;
          height: 100%;
          -webkit-overflow-scrolling: touch;
          text-align: center;
        }

        .g-scrolling-carousel .items::-webkit-scrollbar {
          display: none;
        }

        .g-scrolling-carousel .items a {
          display: inline-block;
          min-width: 24%;
          height: 100%;
          text-align: center;
          padding: 1rem 0;
        }
        .g-scrolling-carousel .items .menu-item {
          display: flex;
          flex-wrap: wrap;
          justify-content: center;
          align-content: space-around;
        }
        .g-scrolling-carousel .items .menu-item .menu-item-icon {
          width: 100%;
        }
        .g-scrolling-carousel .items a img {
          width: 1.644rem;
          height: 1.22rem;
          margin-bottom: 0.88rem;
          object-fit: contain;
        }

        .g-scrolling-carousel .items a .title {
          font-size: 0.56rem;
          color: rgba(0, 0, 0, 0.85);
        }


        .jc-right,
        .jc-left {
          width: 1.333rem;
          height: 70%;
          color: #757575;
          margin-bottom: auto;
          margin-top: auto;
          cursor: pointer;
          position: absolute;
          top: 0;
          bottom: 0;
          z-index: 2;

        }

        .jc-right {
          right: 0;
          border-left: 1px solid rgba(151, 151, 151, .33);
        }

        .jc-left {
          left: 0;
          border-right: 1px solid rgba(151, 151, 151, .33);
        }

        .jc-right:hover,
        .jc-left:hover {
          opacity: 0.98;
        }

        .jc-right svg,
        .jc-left svg {
          position: absolute;
          left: 0;
          right: 0;
          bottom: 0;
          top: 0;
          margin: auto;
          width: 24px;
          height: 24px;
          fill: #757575;
        }

        .jc-right:hover svg,
        .jc-left:hover svg {
          fill: #000;
        }

        @media (pointer: coarse) {

          .jc-right,
          .jc-left {
            /* display: none !important; */
          }
        }

        .noselect {
          -webkit-touch-callout: none;
          /* iOS Safari */
          -webkit-user-select: none;
          /* Safari */
          -khtml-user-select: none;
          /* Konqueror HTML */
          -moz-user-select: none;
          /* Firefox */
          -ms-user-select: none;
          /* Internet Explorer/Edge */
          user-select: none;
        }
html {
  -webkit-text-size-adjust: none;
}

html,
body,
div,
ul,
li,
h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dt,
dd,
ol,
form,
input,
textarea,
th,
td,
select,
a,
abbr,
big,
blockquote,
caption,
em,
header,
iframe,
img,
label,
pre,
section,
small,
span,
strong,
sub,
sup,
table,
tbody,
tfoot,
thead,
tr,
tt {
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  -webkit-font-smoothing: antialiased;
  background-color: #fff;
  font-size: 14px;
  font-family: '苹方-简', 'microsoft YaHei', 'SimHei', 'Trebuchet MS', Arial, Helvetica, sans-serif !important;
  color: rgba(0, 0, 0, 0.65);
  /* touch-action: none; */
}
h2,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

ul,
ol {
  list-style: none;
  margin-bottom: 0;
}

img {
  border: none;
  vertical-align: middle;
  content: normal !important;
}

a {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.45);
}

a:hover,
a:visited,
a:link {
  text-decoration: none;
}

a:focus {
  color: inherit;
}

table {
  border-collapse: collapse;
  table-layout: fixed;
  border-spacing: 0;
}

input,
select,
button,
textarea {
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(253, 62, 62, 0);
  outline: none;
  border: none;
}

input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.35);
}

input::-moz-input-placeholder {
  color: rgba(0, 0, 0, 0.35);
}

input::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.35);
}

ul li:focus,
div:focus,
ol li:focus,
a:focus {
  outline: none;
}

textarea {
  resize: none;
  overflow: auto;
}

progress {
  width: 168px;
  height: 5px;
  color: #f00;
  background: #EFEFF4;
  border-radius: 0.1rem;
}

/* 表示总长度背景色 */
progress::-webkit-progress-bar {
  background-color: #f2f2f2;
  border-radius: 0.2rem;
}

/* 表示已完成进度背景色 */
progress::-webkit-progress-value {
  background: #a21211;
  border-radius: 0.2rem;
}
/* 块级区域样式 */
.dt-block {
  margin: 0 auto;
  width: 65.572917vw;
}

/* 大标题样式 */
.dt-title {
  height: 3.534vw;
  font-size: 2.508vw;
  line-height: 3.534vw;
  color: black;
  text-align: center;
}

/* 白色文字hover效果样式 */
.dt-hover-light {
  color: white;
  transition: all 0.3s;
}

.dt-hover-light:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* 黑色文字hover效果样式 */
.dt-hover-deep {
  color: black;
  transition: all 0.3s;
}

.dt-hover-deep:hover {
  color: rgba(0, 0, 0, 0.8);
}

/* 协议样式 */
.dt-protocol {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 1vw 0 1.5vw;
  cursor: pointer;
}

/* 复选框样式 */
.dt-checkbox {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
  margin-right: 10px;
  width: 20px;
  height: 20px;
  border: 1px solid #1890ff;
  border-radius: 4px;
  background-color: white;
  box-sizing: border-box;
  cursor: pointer;
}

.dt-checkbox.checked::after {
  position: absolute;
  top: 5px;
  left: 3px;
  display: block;
  width: 10px;
  height: 3px;
  content: '';
  border: 3px solid #1890ff;
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
  box-sizing: content-box;
}




.dt-mobile {
  display: none;
}

.dt-dialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(127, 127, 127, 0.5);
  z-index: -1;
  transition: all 0.3s;
  opacity: 0;
}

.free-trial-dialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: -1;
  transition: all 0.3s;
  opacity: 0;
}

.free-trial-dialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: -1;
  transition: all 0.3s;
  opacity: 0;
}


.dt-dialog-content {
  width: 23vw;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.8vw;
  border-radius: 0px;
  padding: 2vw;
}


.free-trial-dialog .dt-dialog-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.8vw;
  border-radius: 0px;
  display: flex;
  justify-content: center;
  padding: 0;
  max-width: 75rem;
  width: 48vw;
}

.free-trial-dialog .dt-dialog-content .dt-dialog-content-left {
  background: url(images/sub1_8cfc515a.png) no-repeat;
  background-size: contain;
  width: 50%;
  padding-top: 20px
}

.free-trial-dialog .dt-dialog-content .dt-dialog-content-cp {
  background: url(images/sub2_6c284f9d.png) no-repeat;
  background-size: contain;
}

.free-trial-dialog .dt-dialog-content .dt-dialog-content-right {
  width: 50%;
  padding-right: 34px;
  padding-left: 40px;
  padding-top: 24px;
  padding-bottom: 24px;
}

.free-trial-dialog .dt-dialog-content .dt-dialog-content-left .dt-dialog-content-left-ul {
  margin-top: 75%;
  margin-left: 1vw;
}

.free-trial-dialog .dt-dialog-content .dt-dialog-content-left .dt-dialog-content-left-ul .dt-dialog-content-left-ul-li {
  background: url(images/sub1_8cfc515a.png) no-repeat left center;
  padding-left: 1.5vw;
  font-size: .75vw;
  line-height: 2vw;
  text-align: left;
  color: #ffffff;

}

.free-trial-dialog .dt-dialog-content-footer .trial-submit-pc {
  width: 92px !important;
  height: 32px;
  background: rgba(0, 0, 0, 0.85);
  border-radius: 50px;
  font-size: .8vw;
  font-weight: 400;
  text-align: left;
  padding: 5px 27px;
  color: #ffffff;
  line-height: 22px;
}

.free-trial-dialog .dt-dialog-content-title span {
  font-weight: bold;
}

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

.dt-dialog-content-title span {
  color: rgba(0, 0, 0, 0.85);
  font-size: 1vw;
  font-weight: 500;
}

.dt-dialog-content-title .dt-dialog-close {
  font-style: normal;
  color: rgba(0, 0, 0, 0.45);
  font-size: 1vw;
  font-weight: 500;
  cursor: pointer;
  top: 24px;
  right: 24px;
  position: absolute;
}

.free-trial-dialog .dt-dialog-content-title .dt-dialog-close {
  font-style: normal;
  color: rgba(0, 0, 0, 0.45);
  font-size: 1vw;
  font-weight: 500;
  cursor: pointer;
}

.dt-dialog-content ul {
  margin: 1vw 0;
}

.dt-dialog-content ul li {
  margin-bottom: 1.2vw;
}

.dt-dialog-content ul li:last-child {
  margin-bottom: 0;
}

.dt-dialog-content ul li input {
  width: 100%;
  height: 2.2vw;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0px 2px 2px 0px;
  color: rgba(0, 0, 0, 0.85);
  padding: 0.5vw 0.7vw;
}

.dt-dialog-content p {
  font-size: 0.6vw;
  color: rgba(0, 0, 0, 0.85);
  line-height: 1.3vw;
  padding: 0 2px;
  margin-bottom: 1.2vw;
}

.dt-dialog-content .dt-dialog-content-company-info {
  font-size: 0.6vw;
  line-height: 1.3vw;
  color: rgb(0, 0, 0);
}

.dt-dialog-content .dt-dialog-content-company-info .dt-dialog-content-company-info-label {
  color: rgba(0, 0, 0, 0.45);
}

.dt-dialog-content .dt-dialog-content-company-info .dt-dialog-content-company-info-value {
  text-decoration: underline
}

.dt-dialog-content-footer {
  text-align: right;
}

.dt-dialog-content-footer .dt-submit {
  width: 92px !important;
  height: 32px;
  background: rgba(0, 0, 0, 0.85);
  border-radius: 50px;
  font-size: .8vw;
  font-weight: 400;
  text-align: left;
  padding: 5px 27px;
  color: #ffffff;
  line-height: 22px;
}

.dt-dialog-content-footer .dt-submit:hover {
  opacity: 0.85;
}

.dt-header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
  width: 100%;
  height: 3.625vw;
  line-height: 3.625vw;
  transition: background-color .3s ease-in;
}
.dt-header-scrolling{
  box-shadow: 0 0 8px rgb(37 40 43 / 20%);
  background-color: #fff;
}
.dt-header-scrolling .dt-logo img:first-child{
  display: none;
}
.dt-header-scrolling .dt-logo img:last-child{
  display: block!important;
}
.dt-header-scrolling .dt-header-content .dt-menus-item > a{
color: #000;
}
.dt-header-scrolling .dt-header-content .dt-menus-item:hover > a{
  color: #333;

}
.dt-header .dt-header-content .menu-btn{
  background: linear-gradient(51deg,#ff8ccd 17%, #f073e7 58%, #d05ff8 83%);
  border-radius:36px;
  width: 116px;
  height: 36px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  color: #ffffff;
  line-height: 36px;
  display: inline-block;
  cursor: pointer;
}
.dt-header-content {
  display: flex;
  align-items: center;
}
.dt-header-content .dt-logo {
  /* display: inline-block;
  width: 6.406vw;
  height: 2.34vw; */
  position: fixed;
  left: 60px;
}
.dt-header-content .dt-logo img {
  /* width: 100%;
  height: 100%; */
}
.dt-header-content .dt-menus {
  flex: 1;
  text-align: right;
}
.dt-header-content .dt-menus-item {
  display: inline-block;
  padding: 0 2.08vw;
  font-size: 0.9375vw;
  color: #d6d6d6;
  cursor: pointer;
}
.dt-header-content .dt-menus-item > a {
  color: #eee;
}
.dt-header-content .dt-menus-item .dt-menus-two {
  width: 100%;
  height: 11.7vw;
  position: fixed;
  top: 3.625vw;
  left: 0;
  text-align: center;
  background: #fbfbfd;
  opacity: 0.9;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.11);
  display: none;
  padding: 2.2vw;
  transition: all 0.4s;
}
.dt-header-content .dt-menus-item .dt-menus-two-content {
  display: inline-block;
  height: 100%;
}
.dt-header-content .dt-menus-item .dt-menus-two-content a {
  display: inline-block;
  width: 100%;
  height: 100%;
  padding: 0 5.625vw;
}

.dt-header-content .dt-menus-item .dt-menus-two-content:hover div {
  color: #31d0dc;
}
.dt-header-content .dt-menus-item .dt-menus-two-content img {
  width: 2.08vw;
  height: 2.08vw;
}
.dt-header-content .dt-menus-item .dt-menus-two-content div {
  font-size: 0.73vw;
  color: rgba(0, 0, 0, 0.85);
  height: 2.6vw;
  line-height: 2.6vw;
}
.dt-header-content .dt-menus-item:hover {
  color: #fff;
}
.dt-header-content .dt-menus-item:hover > a {
  color: #fff;
}
.dt-header-content .dt-menus-item:hover .dt-menus-two {
  display: block;
}
.dt-header-content .dt-menus-apply {
  margin-left: 4.17vw;
  font-size: 0.94vw;
  background: #31d0dc;
  border-radius: 2px;
  color: #fff;
  padding: 0.36vw 0.99vw;
  cursor: pointer;
}
.dt-header-content .dt-menus-apply:hover {
  opacity: 0.85;
}
.dt-stitle {
  position: fixed;
  left: 0;
  top: 3.625vw;
  color: #000;
  width: 100%;
  height: 2.97vw;
  line-height: 2.97vw;
  background-color: #fff;
  font-size: 20px;
  font-weight: 600;
  transition: all 0.5s;
  border-bottom: 1px solid #d6d6d6;
  z-index: 2;
}

.dt-footer{
  display: flex;
  flex-direction: column;
  flex: 1;
  color: #1B1B1B;
}
.dt-footer .footer-font{
  color: #1B1B1B;
  font-size: 16px;
  line-height: 20px;

}
.dt-footer-info{
  flex: 1;
  padding: 10px 24px;
  display: flex;
  justify-content: space-between;
  border-bottom: solid 1px #979797;
  font-size: 16px;
  align-items: center;
}
.dt-footer-info img {
  margin-right: 16px;
  width: 20px;
  height: 20px;
  vertical-align: middle;
}
.footer-right{
  display: flex;
}

.footer-right .footer-font:nth-child(2),.footer-right .footer-font:nth-child(3){
  margin-left: 24px;
}

.dt-footer-end{
  padding: 10px 24px;
  justify-content: center;
  display: flex;
}
.dt-footer-end a{
  font-family: PingFangSC, PingFangSC-Regular;
font-weight: 400;
text-align: left;
color: #1b1b1b;
line-height: 24px;
text-align: center;
}
body {
  overflow-x: hidden;
}

.scroll-frozen {
  overflow: hidden;
}

.sectionPage {
  position: relative;
  width: 100%;
  height: auto;
  text-align: center;
  color: #fff;
  line-height: 5.2vw;
  font-weight: 400;
  z-index: 9;
  overflow: hidden;
}

.sectionPage h2 {
  width: 100%;
  position: relative;
  font-size: 2.08vw;
  font-weight: 400;
}

.sectionPage h2 img {
  position: absolute;
  top: 33%;
  right: 36%;
  width: 2.08vw;
  height: 2.08vw;
}

.sectionPage p {
  font-size: 2.08vw;
}

.dt-ipt-btn {
  cursor: pointer;
  padding: 0.26vw 0.677vw;
  background-color: #31d0dc;
  border-radius: 2px;
  font-size: 0.73vw;
}

.dt-ipt-btn:hover {
  background-color: rgba(49, 208, 220, 0.8);
}

.dt-ipts {
  display: block;
  width: 15.61vw;
  height: 2.496vw;
  color: #000;
  border-radius: 4px;
  font-size: 1.04vw;
  padding-left: 1.094vw;
  opacity: 0.5;
  margin: auto;
  border: 1px solid #ffffff;
}

.contant {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* 玄甲页面 */
.dt-xuanjia {
  display: flex;
  /* background: url('../../images/bg/home-bg.png'); */
  background-color: #000;
}

.dt-xuanjia .xuanjia-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 16.093vw;
}

.dt-xuanjia .xuanjia-main-text {
  margin: auto;
}

.dt-xuanjia .xuanjia-main-text .group {
  display: flex;
  align-items: center;
  justify-content: center;
}

.dt-xuanjia .xuanjia-main-text .group img {
  width: 70vw;
  max-width: 44rem;
  height: auto;
}

.dt-xuanjia .xuanjia-main-text .h1 {
  font-size: 74px;
  font-family: PingFangSC, PingFangSC-Semibold;
  font-weight: 600;
  letter-spacing: 5px;
  color: #ffffff;
  margin-left: 20px;
}

.dt-xuanjia .xuanjia-main-text .h2 {
  font-size: 60px;
  font-family: PingFangSC, PingFangSC-Light;
  font-weight: 300;
  letter-spacing: 4px;
  text-align: center;
  color: #ffffff;
  margin: 20px auto;
}

.dt-xuanjia .xuanjia-main-text .tiyan-btn {
  background: linear-gradient(51deg, #ff8ccd 17%, #f073e7 58%, #d05ff8 83%);
  border-radius: 65px;
  width: 209px;
  height: 65px;
  font-weight: 500;
  text-align: center;
  color: #ffffff;
  font-size: 21px;
  line-height: 65px;
  cursor: pointer;
  display: inline-block;
}

.dt-xuanjia .xuanjia-main-text .tiyan-btn.dt-mobile {
  display: none;
}

.dt-xuanjia .xuanjia-main-text .tiyan-btn-dt {
  border-radius: 65px;
  width: 209px;
  height: 65px;
  font-weight: 500;
  text-align: center;
  color: #ffffff;
  font-size: 21px;
  line-height: 65px;
  cursor: pointer;
  display: inline-block;
  background: linear-gradient(to right, #FF6AC4 0%, #D446FC 100%);
  border-radius: 65px;
  padding: 2px;
}

.dt-xuanjia .xuanjia-main-text .tiyan-btn-dt .tiyan-btn-dt-content {
  background-color: #fff;
  color: #fd00d5;
  border-radius: 65px;
  height: 61px;
  width: auto;
}



.dt-xuanjia .xuanjia-left img {
  width: 8.18vw;
  height: 3.23vw;
  object-fit: contain;

}

.dt-xuanjia .xuanjia-left h2 {
  font-size: 2.916vw;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.85);
  line-height: 3.33vw;
  margin: 1.25vw 0 2.1875vw;
  margin-left: -0.885vw;
}

.dt-xuanjia .xuanjia-left p {
  font-size: 1.25vw;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.65);
  line-height: 3.125vw;
  text-align: left;
}

.dt-xuanjia .xuanjia-left .free-trial-pc {
  width: 6.354vw;
  height: 2.395vw;
  line-height: 2.395vw;
  font-size: 0.833vw;
  font-weight: 400;
  text-align: center;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.85);
  border-radius: 1.822vw;
  margin-top: 2.1875vw;
  cursor: pointer;
}

.dt-xuanjia .xuanjia-right {
  width: 45.36vw;
  object-fit: contain;
  margin: 7.66vw 8.125vw 3.125vw 0;
}

/* page1 */
.sectionPage {
  display: flex;
}

.section-page-module {
  margin: auto;
}

.sectionPage .module-title {}

.sectionPage .module-title h2 {
  height: 50px;
  opacity: 0.9;
  font-size: 40px;
  font-family: PingFangSC, PingFangSC-Medium;
  font-weight: 500;
  text-align: center;
  color: #000000;
  line-height: 50px;
  text-align: center;
  margin-bottom: 135px;
}

.sectionPage .module-title h6 {
  text-align: center;
  height: 22px;
  font-size: 18px;
  font-family: PingFangSC, PingFangSC-Regular;
  font-weight: 400;
  text-align: center;
  color: #1b1b1b;
  line-height: 24px;
}

.dt-one .section-page-module {
  padding: 2vw 10vw;
  width: 100%;

}

.dt-one .module-main {}

.sectionPage {
  padding-top: 145px;
  padding-bottom: 90px;
  height: auto;
}

#page0 {
  padding-top: 0;
  height: 100vh;
  padding-bottom: 0;
  margin-bottom: 90px;
}

#page0 video {
  position: absolute;
  z-index: -1;
  width: 100%;
}

.btn-muted {
  width: 37px;
  height: 37px;
  background: url(images/icon-muted_108f9c8d.png);
  position: absolute;
  background-size: 100%;
  cursor: pointer;
  left: 20%;
  top: 80vh;
}

.btn-muted-state {
  background: url(images/icon-no-muted_da9fda78.png);
  background-size: 100%;
}

.dt-one .module-main ul {
  display: flex;
  justify-content: center;
}

.dt-one .module-main ul li {
  background-size: cover;
  width: calc(33% - 45px);
  background-position: center top;
  background-repeat: no-repeat;
  padding-top: 10%;
  padding-bottom: 10%;
  margin-right: 42px;
}

.dt-one .module-main ul li:first-child {
  background-image: url(images/two-one_2d9e5d30.png);
  margin-left: 0px;
}

.dt-one .module-main ul li:nth-child(2) {
  background-image: url(images/two-two_ef0ac188.png);
}

.dt-one .module-main ul li:last-child {
  background-image: url(images/two-three_fb7d543a.png);
  margin-right: 0;
}

.dt-one .module-main ul li .sub-title {
  height: 39px;
  font-size: 24px;
  font-family: PingFangSC, PingFangSC-Medium;
  font-weight: 500;
  text-align: center;
  color: #ffffff;
  line-height: 32px;
  margin-bottom: 30px;
}

.dt-one .module-main ul li>div {
  font-size: 18px;
  font-family: PingFangSC, PingFangSC-Light;
  text-align: center;
  color: #ffffff;
  line-height: 32px;
}

.dt-one .bottom-title {
  margin-top: 10%;
}

.dt-one .dt-one-p {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.6vw;
}

.dt-one .dt-one-div {
  position: absolute;
  top: 37%;
  left: 50%;
  transform: translateX(-50%);
  letter-spacing: 0.78vw;
  font-size: 1.25vw;
}


/* page2 */
.dt-two .section-page-module {
  height: 100%;
  display: flex;
  flex-direction: column;
}


.dt-two .module-main-two {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  width: 1200px;
  flex: 1;
  height: auto;
  /* display: flex; */
}

/* page3 */
.dt-three {}

.dt-three.sectionPage {
  height: auto;
}

.dt-three .section-page-module {
  padding: 2vw 17vw;
  width: 100%;
}

.dt-three .module-icons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 88px;
}

.dt-three .module-icons .module-icons-li {
  background: url(images/icon1_939f2d26.png) no-repeat center top;
  width: 120px;
  height: 100px;
  background-size: 38%;
  padding-top: 60px;
  opacity: 0.9;
  font-size: 20px;
  font-family: PingFangSC, PingFangSC-Semibold;
  font-weight: 600;
  text-align: center;
  color: #000000;
  line-height: 40px;
}

.dt-three .module-icons .module-icons-li:nth-child(2) {
  background-image: url(images/icon2_fed7ad98.png);
}

.dt-three .module-icons .module-icons-li:nth-child(3) {
  background-image: url(images/icon3_877aa98d.png);
}

.dt-three .module-icons .module-icons-li:nth-child(4) {
  background-image: url(images/icon4_845ddef0.png);
}

.dt-three .module-icons .module-icons-li:nth-child(5) {
  background-image: url(images/icon5_9ab819e2.png);
}

.dt-three .module-icons .module-icons-li:nth-child(6) {
  background-image: url(images/icon6_2c7d57a9.png);
}

.dt-three .module-block {
  display: flex;
  justify-content: center;


}

.dt-three .module-block .module-block-li {
  margin: 24px;
  width: calc(50% - 50px);
  height: 10vw;
  background: #fafafa;
  border: 2px solid rgba(151, 151, 151, 0.27);
  border-radius: 18px;
  box-shadow: 0px 2px 11px 0px rgba(0, 0, 0, 0.11);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.dt-three .module-block .module-block-li .h1 {
  font-size: 2vw;
  font-family: PingFangSC, PingFangSC-Regular;
  font-weight: 400;
  text-align: center;
  color: #1b1b1b;
  line-height: 40px;
  margin-bottom: 20px;
}

.dt-three .module-block .module-block-li .h1 .font-big {
  font-size: 3vw;
  font-family: PingFangSC, PingFangSC-Semibold;
  font-weight: 600;
  text-align: center;
  line-height: 45px;
  margin-left: 20px;
  background-image: linear-gradient(51deg, #ff8ccd 17%, #f073e7 58%, #d05ff8 83%);
  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;
}

.dt-three .module-block .module-block-li .h6 {
  font-size: 1vw;
  font-family: PingFangSC, PingFangSC-Regular;
  font-weight: 400;
  text-align: center;
  color: #393939;
  line-height: 24px;
}

.dt-three .module-block .module-block-li:hover {
  background: #ffffff;
  border: 2px solid #d05ff8;
  /*border-image: linear-gradient(41deg, #ff8ccd 0%, #d05ff8 90%) 2 2;*/
  border-radius: 18px;
  box-shadow: 0px 2px 11px 0px rgba(0, 0, 0, 0.11);
}

.dt-three .module-block .module-block-li:hover .h1 {
  color: #1b1b1b;

}

.dt-three .module-block .module-block-li:hover .h1 .font-big {
  background: linear-gradient(51deg, #ff8ccd 17%, #f073e7 58%, #d05ff8 83%);
  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

}

.dt-three .module-block .module-block-li:hover .h6 {
  color: #393939;
}

/* page4 */
.dt-four {}

.dt-four .section-page-module {
  padding: 2vw 17vw;
  width: 100%;
}

.btn-more {
  width: 120px;
  height: 41px;
  border: 1px solid rgba(0, 0, 0, 0.85);
  font-size: 16px;
  font-family: PingFangSC, PingFangSC-Regular;
  font-weight: 400;
  color: #1b1b1b;
  line-height: 41px;
  cursor: pointer;
  display: block;
  margin: 70px auto;
  text-align: center;
}

.btn-more:hover {
  color: #1b1b1b;
  background: rgba(0, 0, 0, 0.03)
}

.module-main-four img {
  width: calc(24% - 40px);
  margin: 20px
}


.dt-four-bg {
  user-select: none;
  position: absolute;
  left: -30%;
  width: 100%;
  height: 73%;
  object-fit: contain;
  bottom: -5%;
  z-index: -1;
}

/* page5 */
.dt-five {
  /* background-color: pink; */
}

.five-content-pc {
  text-align: center;
  background: #EBEBEB;
  padding-top: 9vh;
  margin-top: 2vh;
  padding-bottom: 9vh;
}

.five-content-pc h2{
  color: #000;
  font-family: "PingFang SC";
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  font-size: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.five-content-pc h2 img{
  width: 91px;
  margin-left: 10px;
}

.five-content-pc .company-info {
  margin-top: 9vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #1B1B1B;
}

.five-content-pc .company-info img{
  width: 158px;
  object-fit: cover;
}

.five-content-pc .company-info .right-container {
    text-align: left;
    height: 135px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-left: 28px;
}

.five-content-pc .company-info .right-container img {
  width: 20px;
  height: 20px;
  object-fit: cover;
}

.dt-five-introl {
  position: relative;
  height: 75%;
  width: 100%;
  background: url(images/five_ebb9d4d0.png);
}

.dt-five-tool {
  height: 25%;
  background-color: rgba(255, 255, 255, 0.9);
  padding-bottom: 2.52vw;
}

.dt-five-tool img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* page6 */
.dt-six {
  display: flex;
  flex-direction: column;
}

.dt-six-introl {
  width: 100%;
  position: relative;
  height: 40%;
  background-color: #2a9dbd;
}

.dt-six-bg {
  user-select: none;
  position: absolute;
  right: 0;
  bottom: -1vw;
  width: 33%;
  height: 100%;
}

.dt-six-example {
  flex: 1;
}

.dt-six-example img {
  /* padding: 2.25vw 0; */
  height: 100%;
  width: 100%;
  object-fit: contain;
}

/* page7 */
.dt-seven {
  display: flex;
  flex-direction: column;
  background: url(images/seven_bd0feb7a.png);
}

.dt-seven-ipt {
  height: 25%;
}

.dt-seven-ipt div {
  display: flex;
  margin-bottom: 2vw;
}

.dt-seven-tintrol {
  width: 100%;
  height: 70%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dt-seven-sintrol {
  height: 30%;
  display: flex;
  justify-content: space-around;
  font-size: 1.66vw;
  align-items: center;
  padding-bottom: 9.48vw;
}

.dt-seven-sintrol span {
  background-image: url(images/adr_b3c00821.svg);
  background-repeat: no-repeat;
  background-size: 2vw;
  background-position: 0;
  padding-left: 2.5vw;
}


/* page8 */
.dt-eight {
  display: flex;
  flex-direction: column;
}

.dt-eight p {
  color: #000;
}

.dt-eight-introl {
  position: relative;
  height: 45%;
  background-color: #31d0dc;
}

.dt-eight-introl div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.dt-eight-introl img {
  position: absolute;
  width: 28%;
  height: 100%;
  object-fit: contain;
  bottom: -42%;
  right: 10%;
}

.dt-eight-show {
  height: 40%;
  padding: 4.594vw 0 5.96vw;
}

.dt-eight-show img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* page9 */
.dt-nine {
  background: url(images/toptwo_7bdeeb82.png);
}

.dt-nine .dt-nine-title {
  height: 43%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dt-nine .dt-nine-title>p {
  color: #000000;
  font-size: 2.6vw;
}

.dt-nine .dt-nine-title>div {
  color: #1b1b1b;
  font-size: 1.25vw;
}

.dt-nine .dt-nine-info {
  height: 57%;
}

.dt-nine-feature,
.dt-nine ul {
  width: 46.7vw;
  display: flex;
  justify-content: space-between;
  margin: 0 auto 1.875vw;
}



.dt-nine-feature span {
  position: relative;
  display: inline-block;
  width: 10.73vw;
  height: 10.73vw;
  line-height: 10.73vw;
  background: #85eaf2;
  border-radius: 50%;
  font-size: 3.75vw;
}

.dt-nine-feature .lines {
  position: absolute;
  bottom: -0.89vw;
  left: 50%;
  transform: translateX(-50%);
  width: 4.375vw;
  height: 1px;
  border: 1px solid;
  border-image: linear-gradient(44deg, rgba(95, 234, 240, 0.00) 16%, #5feaf0 23%, #31d0dc 84%, rgba(49, 208, 220, 0.00) 85%) 1 1;
}

.dt-nine ul {
  margin: 0 auto;
  color: #000;
}

.dt-nine ul li {
  display: inline-block;
  width: 10.73vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dt-nine ul li>div {
  color: #393939;
  line-height: 40px;
  font-size: 20px;
}

.dt-ten-tinfo {
  height: 45%;
  background: url(images/topthree_3c59f032.png);
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.dt-ten-tinfo>div {
  line-height: 2.03vw;
  font-size: 1.25vw;
}

.dt-ten-sinfo {
  width: 54.375vw;
  height: 55%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dt-ten .dt-ten-sinfo li {
  width: 15.208vw;
  height: 17.66vw;
  line-height: 17.66vw;
  border: 2px solid rgba(0, 0, 0, .15);
  border-radius: 4px;
}

.dt-ten .dt-ten-sinfo li:hover {
  border-color: #85eaf2;
}

.dt-ten .dt-ten-sinfo li div {
  font-size: 1.04vw;
  color: #393939;
  line-height: 2.08vw;
  font-weight: 500;
  margin-top: 4.58vw;
}

.dt-ten .dt-ten-sinfo li p {
  font-size: 3.125vw;
  font-weight: 500;
  color: #000000;
  line-height: 5.208vw;
}

.footer {
  height: 100%;
  background-color: red;
}

/* 背景 */
.dt-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.color-main {
  color: #31d0dc;
}

.color-value {
  color: #007c96;
}

.color-data {
  color: #004b66;
}

.color-tool {
  color: #00243e;
}

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

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

.linctex-home-banner-video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/*页面style移入css*/
#id-name-element-style-1 {
  display: none;
}

#id-name-element-style-2 {
  overflow: auto;
}

#tesla-hero-parallax-438 {
  --asset-x-offset-mobile: 0vw;
  --asset-y-offset-mobile: -8vh;
  --asset-x-offset-desktop: 0vw;
  --asset-y-offset-desktop: 0vh;
}

#tesla-hero-parallax-410 {
  --asset-x-offset-mobile: 0vw;
  --asset-y-offset-mobile: -7vh;
  --asset-x-offset-desktop: 0vw;
  --asset-y-offset-desktop: 0vh;
}

#tesla-hero-parallax-403 {
  --asset-x-offset-mobile: 0vw;
  --asset-y-offset-mobile: -3vh;
  --asset-x-offset-desktop: 0vw;
  --asset-y-offset-desktop: 0vh;
}

#page4 {
  display: flex;
  flex-direction: column;
}

#id-name-element-style-7 {
  position: relative;
  bottom: 0;
  width: 100%
}

#tesla-hero-parallax-410 {
  --asset-x-offset-mobile: 0vw;
  --asset-y-offset-mobile: -7vh;
  --asset-x-offset-desktop: 0vw;
  --asset-y-offset-desktop: 0vh;
}

#tesla-hero-parallax-438 {
  --asset-x-offset-mobile: 0vw;
  --asset-y-offset-mobile: -8vh;
  --asset-x-offset-desktop: 0vw;
  --asset-y-offset-desktop: 0vh;
}

#tesla-hero-parallax-438 {
  --asset-x-offset-mobile: 0vw;
  --asset-y-offset-mobile: -8vh;
  --asset-x-offset-desktop: 0vw;
  --asset-y-offset-desktop: 0vh;
}

#tesla-hero-parallax-410 {
  --asset-x-offset-mobile: 0vw;
  --asset-y-offset-mobile: -7vh;
  --asset-x-offset-desktop: 0vw;
  --asset-y-offset-desktop: 0vh;
}

#tesla-hero-parallax-417 {
  --asset-x-offset-mobile: 0vw;
  --asset-y-offset-mobile: -3vh;
  --asset-x-offset-desktop: 0vw;
  --asset-y-offset-desktop: 0vh;
}

#id-name-element-style-13 {
  margin-bottom: 48px;
}

#tesla-hero-parallax-396 {
  --asset-x-offset-mobile: 0vw;
  --asset-y-offset-mobile: -7vh;
  --asset-x-offset-desktop: 0vw;
  --asset-y-offset-desktop: -3vh;
}

#tesla-hero-parallax-410 {
  --asset-x-offset-mobile: 0vw;
  --asset-y-offset-mobile: -7vh;
  --asset-x-offset-desktop: 0vw;
  --asset-y-offset-desktop: 0vh;
}

#id-name-element-style-16 {
  position: absolute;
  z-index: -1;
  width: 100%;
}

#id-name-element-style-17 {
  display: none
}

#id-name-element-style-18 {
  height: 100%;
}

#id-name-element-style-19 {
  font-size: 41px;
}

#id-name-element-style-20 {
  display: none;
}

#id-name-element-style-21 {
  overflow: auto;
}

#id-name-element-style-22 {
  font-size: 36px;
}

#id-name-element-style-23 {
  overflow: auto;
}

#id-name-element-style-24 {
  overflow: auto;
}

#id-name-element-style-25 {
  overflow: auto;
}

#id-name-element-style-26 {
  width: 100%;
}

#id-name-element-style-27 {
  overflow-x: hidden;
}

#id-name-element-style-28 {
  width: 100%;
}

#id-name-element-style-29 {
  overflow: auto;
}

#id-name-element-style-30 {
  overflow: auto;
}

#id-name-element-style-31 {
  overflow: auto;
}

#id-name-element-style-32 {
  overflow: auto;
}

/***打包后手动添加css 20230116**/
@media screen and (min-width: 769px) {
  #page6 {
    margin-bottom: 200px;
  }

  #page6 .company-news {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  #page6 .company-news .btn-icon-left {
    background: url(images/icon-tab-left_057f5596.png) no-repeat;
    width: 26px;
    height: 26px;
    cursor: pointer;
    flex-shrink: 0;
  }

  #page6 .company-news .btn-icon-right {
    background: url(images/icon-tab-right_7d5270a4.png) no-repeat;
    width: 26px;
    height: 26px;
    cursor: pointer;
    flex-shrink: 0;
  }

  #page6 .news-tab {
    display: flex;
    justify-content: end;
    margin-bottom: 48px;
    padding-right: 3vw;
  }

  #page6 .news-tab .tab {
    /*width: 65px;*/
    height: 24px;
    font-size: 0.8vw;
    font-weight: 400;
    text-align: left;
    color: #1b1b1b;
    cursor: pointer;
    line-height: 24px;
    margin-left: 32px;
  }

  #page6 .news-tab .tab.active {
    color: #000000;
    position: relative;
  }

  #page6 .section-page-module {
    padding: 2vw 17vw;
    width: 100%;
  }

  #page6 .module-main-six {
    /*width: 1339px;*/
    margin: 0 auto;
  }

  #page6 .more-dynamic-btn-news {
    display: none;
  }

  #page6 .news-tab .tab.active:after {
    content: '';
    width: 13px;
    height: 1px;
    background: #f919ca;
    position: absolute;
    text-align: center;
    bottom: -3px;
    left: 1.3vw;
  }

  #page6 .company-news .tabs {
    display: flex;
  }

  #page6 .company-news .tabs .company-news-item {
    width: 18vw;
    height: 13vw;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 2px 11px 0px rgba(0, 0, 0, 0.11);
    overflow: hidden;
    margin: 0 36px;
    display: none;
  }

  #page6 .company-news .tabs .company-news-item .news-img {
    width: 18vw;
    height: 10vw;
    overflow: hidden;
  }

  #page6 .company-news .tabs .company-news-item .news-text {
    width: 18vw;
    font-size: 0.75vw;
    font-weight: 400;
    text-align: left;
    color: rgba(0, 0, 0, 0.85);
    line-height: 1.5vw;
    padding: 0px 16px;
  }

  #page6 .company-news .tabs .company-news-item .news-text-top {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  #page6 .company-news .tabs .company-news-item .news-text-bottom {
    display: none;
  }

  #page6 .company-news .tabs .company-news-item .news-img img {
    width: 100%;
    height: 100%;
    transition: all ease .3s;
    object-fit: cover;
  }

  #page6 .company-news .tabs .company-news-item:hover .news-img img {
    cursor: pointer;
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
  }

  #page6 .industry-information {
    display: none;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  #page6 .industry-information .item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    width: 20vw;
    background: #fafafa;
    border-radius: 8px;
    border: 2px solid;
    margin: 16px;
  }

  #page6 .industry-information .item:nth-child(3),
  #page6 .industry-information .item:nth-child(6) {
    margin-right: 0;
  }

  #page6 .industry-information .item:hover {
    cursor: pointer;
    background: #ffffff;
    width: 20vw;
    border: 2px solid;
    border-image: linear-gradient(41deg, #ff8ccd 0%, #d05ff8 90%) 2 2;
    border-radius: 8px;
    box-shadow: 0px 2px 11px 0px rgba(0, 0, 0, 0.11);
  }

  #page6 .industry-information .item>a>h6 {
    height: 48px;
    line-height: 24px;
    font-size: 0.8vw;
    font-weight: bold;
    text-align: left;
    color: rgba(0, 0, 0, 0.85);
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 17px;
  }

  #page6 .industry-information .item>a>h6:before {
    content: '';
    width: 1px;
    height: 13px;
    background: #f919ca;
    position: absolute;
    left: -5px;
    top: 5px;
  }

  #page6 .industry-information .item>a>div {
    font-size: 0.75vw;
    font-weight: 500;
    text-align: justify;
    color: rgba(0, 0, 0, 0.65);
    line-height: 1.5vw;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }

  #page6 .industry-information .item>a>.bottom {
    height: 18px;
    font-size: 0.8vw;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.65);
    line-height: 1.2vw;
    text-align: right;
  }
}

/* header */
@media screen and (min-width: 769px) {
  .menu-about-mq {}

  .menu-about-mq-row {
    color: #eee;
  }

  .dt-header-scrolling .dt-header-content .dt-menus-item>.menu-about-mq-row {
    color: #000;
  }

  .menu-about-mq .menu-about-mq-main {
    position: absolute;
    display: none;
    flex-direction: column;
  }

  .menu-about-mq .menu-about-mq-main a {
    opacity: 0.66;
    /*font-size: 14px;*/
    font-weight: 400;
    color: #000000;
  }

  .dt-header:hover {
    /*//height: 12vw;*/
    background: #ffffff;
  }

  .dt-header-hover {
    height: 12vw !important;
  }

  .dt-header:hover .menu-about-mq .menu-about-mq-main {
    display: none;
  }

  .dt-header:hover .menu-about-mq .menu-about-mq-main-hover {
    display: flex;
  }

  .dt-header:hover .dt-menus-item,
  .dt-header:hover .dt-menus-item {
    position: relative;
  }

  .dt-header:hover .dt-menus-item a,
  .dt-header:hover .dt-menus-item .menu-about-mq-row {
    color: #000;
  }

  .dt-header:hover {
    background: #fff;
  }

  .dt-header .dt-menus-item:hover .menu-about-mq-row:after {
    background-color: #f919ca;
    content: "";
    left: 3.5vw;
    position: absolute;
    top: 3.1vw;
    width: 22px;
    height: 1px
  }

  .dt-header:hover .dt-header-content .dt-logo img:first-child {
    display: none;
  }

  .dt-header:hover .dt-header-content .dt-logo img:last-child {
    display: block !important;
  }
}

/*footer*/
.wechat {
  position: relative;
  cursor: pointer;
}

.wechat:hover .wechat-dialog {
  display: block;
}

.wechat .wechat-dialog img {
  width: 150px;
  height: 150px
}

.wechat-dialog {
  display: none;
  position: absolute;
  z-index: 1;
  right: -37px;
  top: -153px;
}

.pcp-advantages {
  width: 1488px;
  margin: 0 auto;
  padding-bottom: 2rem;
  font-family: PingFang SC, '苹方-简',
    'microsoft YaHei',
    'SimHei',
    'Trebuchet MS',
    Arial,
    Helvetica,
    sans-serif;
}

.pcp-advantages h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #000;
  font-weight: bold;
  margin-bottom: 8rem;
}

.pcp-advantages h2 img {
  vertical-align: sub;
  width: 7rem;
}

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

.advantage-item {
  flex: 1;
  background: rgba(241, 243, 246, 0.8);
  border-radius: 0.5rem;
  padding-bottom: 0;
  margin: 0 1rem;
}

.advantage-title {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.advantage-title img {
  width: 17rem;
  height: 7.3rem;
  margin: 0 auto;
  margin-top: -4.1em;
}

.advantage-title span {
  font-size: 1.7rem;
  font-weight: 600;
  color: #333333;
  line-height: 1.3;
}

.content-section {
  padding: 0.625rem;
  margin-bottom: 0.25rem;
}

.advantage-item .advantage-content {
  display: flex;
  justify-content: center;
}

.advantage-item .advantage-content .middle {
  padding: 0.625rem 3rem;
}

.advantage-content-middle .advantage-content {
  justify-content: flex-start;
  text-align: center;
}

.advantage-content-middle .advantage-content .content-section {
  flex: 1;
}

.advantage-content-middle .advantage-content-bottom .bottom-section-item {
  text-indent: 2rem;
  white-space: nowrap;
}

.advantage-content-bottom {
  padding: 0 0.9rem;
}

.advantage-content-bottom .advantage-content-bottom-section {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 0.9375rem;
  padding: 0 0.9rem;
  margin-bottom: 2rem;
}

.advantage-content-bottom .advantage-content-bottom-section .placeholder-left {
  width: 2rem;
  height: auto;
  display: inline-block;
  margin-right: 0.4rem;
}

.advantage-content-bottom .advantage-content-bottom-section .bottom-section-item {
  width: 50%;
  margin-bottom: 1rem;
}

.sub-cotent-section {
  margin: 0 2rem;
}

.content-section>img {
  display: block;
  width: 3rem;
  height: auto;
  margin: 0 auto;
}

.content-section h3 {
  font-size: 1.7rem;
  font-weight: bold;
  color: rgba(249, 25, 202, 1);
  margin-top: 0.8rem;
  text-align: center;
}

.content-section p {
  font-size: 1.2rem;
  color: rgba(76, 73, 72, 1);
  line-height: 1.6;
  margin-bottom: 2rem;
  text-align: center;
}

.content-section ul {
  list-style: none;
  padding-left: 0;
  margin-top: 0.625rem;
  /* 10px / 16 */
}

.content-section li {
  font-size: 1.1rem;
  color: rgba(76, 73, 72, 1);
  margin-bottom: 1rem;
  line-height: 1.5;
  text-align: center;
}

.advantage-item-sub {
  flex: 1;
  padding-bottom: 0;
  margin: 0 1rem;
}

.advantage-item-sub .advantage-item-sub-content {
  background: rgba(241, 243, 246, 0.8);
  border-radius: 0.5rem;
  padding-bottom: 1rem;
}

.advantage-item-sub .advantage-item-sub-content .advantage-item-sub-title {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.advantage-item-sub .advantage-item-sub-content img {
  display: block;
  margin: 0 auto;
  margin-top: -4rem;
  font-size: 17rem;
  height: 8rem;
}

.advantage-item-sub .advantage-content {
  display: flex;
  flex-direction: row;
  text-align: center;
}

.advantage-item-sub .advantage-content .content-section {
  flex: 1
}

.advantage-item-sub .content-section p {
  font-size: 1.1rem;
  margin: 0;
  font-weight: inherit;
  padding: 0.6rem 0;
  text-align: center;
}

.advantage-item-sub .advantage-content .content-section h1 {
  font-size: 1.15rem;
  font-weight: 400;
  color: #4C4948;
}

.advantage-item-sub .content-section b {
  font-size: 4rem;
  color: rgba(249, 25, 202, 1);
  font-weight: 400;
}

.advantage-item-sub .content-section .bold {
  font-size: 1.2rem;
}

@media screen and (max-width: 1488px) {
  .pcp-advantages {
    padding: inherit;
    width: 100%;
  }
}

@media screen and (max-width:1208px) {
  .advantage-content-last {
    flex: 0 0 50%;
    margin: 0 auto;
    padding-top: 8rem;
  }
}

@media screen and (max-width: 964px) {
  .advantage-content-middle .advantage-content-bottom .bottom-section-item {
    text-indent: 1rem;
    /* text-align: center; */
  }
}


@media screen and (max-width: 769px) {
  .pcp-advantages {
    padding: inherit;
    width: 100%;
  }

  .pcp-advantages h2 {
    font-size: 1.5rem;
    margin-top: 4rem;
    margin-bottom: 2rem;
  }



  .pcp-advantages h2 img {
    width: 5rem;
  }

  .advantages-container {
    flex-direction: column;
    flex-wrap: nowrap;
  }

  .advantage-item-sub {
    margin: 6rem 1rem 1rem 1rem;
  }

  .advantage-title img {
    margin-top: -2.8em;
    width: 10rem;
    height: auto;
  }

  .advantage-item .advantage-content .middle {
    padding: 0.625rem;
  }


  .advantage-item {
    margin-top: 6rem;
    width: calc(100vw - 2rem);
    margin: 0 auto;
    margin-top: 6rem;
  }

  .advantage-content-last {
    padding-top: 0rem;
    width: calc(100vw - 2rem);
    margin: 0 auto;
    margin-top: 6rem;
  }

  .advantage-content-bottom .advantage-content-bottom-section {
    padding-right: 0;
    margin-bottom: 0.4rem;
  }

  .advantage-content-middle .advantage-content-bottom .bottom-section-item {
    text-indent: inherit;
    text-align: left;
  }

  .advantage-item-sub .advantage-item-sub-content img {
    width: 10rem;
    margin-top: -3rem;
    height: auto;
  }

  .placeholder-left {
    width: 1.6rem;
    height: auto;
  }

  .placeholder-right {
    margin-top: 0.5rem;
  }

  .placeholder-right img {
    width: 2.6rem;
    height: auto;
    vertical-align: sub;
  }

  .content-section h3 {
    font-size: 1.3rem;
  }

  .content-section p {
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 500px) {
  .content-section h3 {
    font-size: 1rem;
  }


  .content-section li {
    font-size: 0.7rem;
  }

  .advantage-item-sub .advantage-content .content-section h1 {
    font-size: 0.8rem;
  }

  .advantage-item-sub .content-section p, .advantage-item-sub .content-section .bold {
    font-size: 0.8rem;
  }

  .advantage-content-middle .advantage-content-bottom .bottom-section-item {
    font-size: 0.7rem;
  }

  /* .advantage-item {
    width: 20rem;
  }

  .advantage-content-last {
    width: 20rem;
  } */
}

.pcp-product {
  margin-top: 6rem;
  width: 100%;
  font-family: PingFang SC, '苹方-简', 'microsoft YaHei', 'SimHei', 'Trebuchet MS', Arial, Helvetica, sans-serif;
  background-position: bottom;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

.pcp-product h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #000;
  font-weight: bold;
  padding-bottom: 4rem;
  padding-top: 6rem;
}

.pcp-product-logo img {
  vertical-align: sub;
  width: 7rem;
}

.product-container {
  margin: 0 auto;
  max-width: 1488px;
  padding-bottom: 6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.product-item {
  flex: 1;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 0.5rem;
  margin: 0 1rem;
  padding: 0 1rem;
}

.product-hr {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  margin-left: 1.7rem;
  margin-right: 2rem;
  margin-bottom: 1rem;
  padding-top: 3.8rem;
  padding-left: 0.3rem;
}

.product-hr span {
  font-weight: bold;
  color: #000;
  font-size: 1.2rem;
}

.product-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding: 2rem 2rem 0 2rem;
}

.product-title .highlight {
  font-size: 1.7rem;
  font-weight: 500;
  color: rgba(249, 25, 202, 1);
  margin-bottom: 0.5rem;
}

.product-title .highlight.enterprise {
  color: #a259e6;
}

.product-title .desc {
  font-size: 1.1rem;
  color: #000;
  padding-top: 0.4rem;
  margin-bottom: 0.5rem;
}

.product-list {
  list-style: none;
  padding-left: 2rem;
  margin: 1rem 0 2rem 0;
}

.product-list li {
  font-size: 1.1rem;
  color: rgba(76, 73, 72, 1);
  margin-bottom: 1.5rem;
  line-height: 1.5;
  position: relative;
}

.product-list li img {
  width: 1.2rem;

  margin-right: 0.8rem;
}

.product-item.advanced .highlight {
  color: #333;
  font-size: 1.5rem;
}

.advanced-list li {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  color: #32302f;
  margin-bottom: 1rem;
  padding-left: 0;
}

.advanced-list li img {
  width: 2.8rem;
}


.advanced-list .icon {
  display: inline-block;
  width: 1.8rem;
  height: 1.8rem;
  margin-right: 0.7rem;
  background-size: contain;
  background-repeat: no-repeat;
}


@media screen and (max-width: 1488px) {
  .pcp-product {
    width: 100%;
    padding: inherit;
  }
}

@media screen and (max-width: 964px) {
  .pcp-product {
    background-size: cover !important;
  }

  .product-list li,
  .advanced-list li {
    font-size: 1rem;
  }
}

@media screen and (max-width: 769px) {

  .pcp-product {
    margin-top: 4rem;
  }

  .pcp-product h2 {
    font-size: 1.1rem;
    padding-top: 2rem;
    padding-bottom: 0;
  }

  .pcp-product-logo img {
    width: 3rem;
  }

  .product-container {
    flex-direction: row;
    flex-flow: row wrap;
    padding: 0;
    padding-bottom: 1rem;
  }

  .product-container .advanced {
    flex: 0 0 calc(100% - 1.1rem);
  }

  .product-item {
    margin-top: 1rem;
    margin-bottom: 2rem;
    padding: 0;
    margin-left: 0.6rem;
    margin-right: 0.6rem;
  }

  .product-hr {
    padding-top: 2rem;
    padding-left: 0;
    margin-left: 1rem;
  }

  .product-hr span {
    font-size: 0.9rem;
  }

  .product-title {
    align-items: center;
  }

  .product-title .highlight {
    font-size: 1.1rem;
  }

  .product-title .desc {
    font-size: 0.7rem;
  }

  .product-list {
    padding-left: 1rem;
  }

  .advanced-list {
    display: flex;
    flex-flow: row wrap;
  }

  .product-list li {
    font-size: 0.7rem;
  }

  .advanced-list li {
    font-size: 0.6rem;
  }

  .advanced-list li img {
    width: 1.6rem;
    margin-right: 0.3rem;
  }

  .product-advanced-2 {
    width: 50%;
    padding-left: 2rem !important;
  }

  .product-advanced-3 {
    width: 33%;
  }

  .advanced .highlight {
    font-size: 1rem !important;
  }
}

.pcp-cooperate {
  padding: 4.28571rem 0;
  background-color: #f8f9fa;
  /* Or a gradient if needed */
  text-align: center;
}

.cooperate-header h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #000;
  font-weight: bold;
  margin-bottom: 8rem;
}

.cooperate-header h2 img {
  width: 7rem;
  vertical-align: sub;
}

.cooperate-header .highlight {
  /* color: #E6007E; */
  /* PCP pink color */
}

.cooperate-partners {
  max-width: 106.28571rem;
  margin: 0 auto 2.85714rem auto;
  padding: 0 1.07143rem;
  display: flex;
  justify-content: center;
}

.partner-logos {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  margin-left: 2.6rem;
}

.logo-item {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 1rem;
}

.logo-item img {
  width: 14rem;
  height: auto;
  object-fit: contain;
}

.cooperate-testimonials {
  max-width: 1488px;
  margin: 0 auto;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}

.testimonial-item {
  background: rgba(237, 247, 253, 1);
  padding: 1rem;
  border-radius: 0.57143rem;
  position: relative;
  font-size: 1.14286rem;
  color: #333;
  text-align: left;
  display: flex;
  align-items: center;
  white-space: wrap;
}

.testimonial-item p {
  margin: 0;
  font-size: 1rem;
}

.testimonial-item .testimonial-avatar-before {
  position: absolute;
  display: block;
  width: 1.2rem;
  top: -0.8rem;
  left: -0.8rem;
}

.testimonial-item .testimonial-avatar-after {
  display: block;
  position: absolute;
  bottom: -0.8rem;
  width: 1.2rem;
  right: -0.8rem;
  transform: rotate(180deg);
}

.testimonial-item-1 {
  margin-bottom: 2.5rem;
}

.testimonial-item-1:first-child {
  margin-left: 10rem;
}

.testimonial-item-1:nth-child(3) {
  margin-right: 14rem;
}

/*


.testimonial-item::after {
  content: '”';
  font-size: 4.28571rem;
  color: #cfe8fc;
  position: absolute;
  right: 0.71429rem;
  bottom: -1.42857rem;
  line-height: 1;
  font-family: serif;
} */
@media (max-width: 1321px) {

  .testimonial-item-1:first-child,
  .testimonial-item-1:nth-child(3) {
    margin-left: 0;
    margin-right: 0;
  }


  .cooperate-testimonials {
    padding-left: 1rem;
    padding-right: 0.6rem;
  }
}

@media (max-width: 992px) {
  .cooperate-header h2 {
    font-size: 2rem;
  }

  .partner-logos {
    /* padding: 0 2rem; */
    /* margin: 0; */
  }
}

@media (max-width: 768px) {
  .pcp-cooperate {
    padding: 2.85714rem 0;
  }

  .cooperate-header h2 {
    font-size: 1em;
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .partner-logos {
    margin: 0;
  }

  .cooperate-header h2 img {
    width: 4rem;
    height: auto;
  }

  .logo-item {
    width: 33%;
    margin: 0;
  }

  .logo-item img {
    /* max-height: 2.85714rem; */
    width: 100%;
  }

  .testimonial-item {
    padding: 0.2rem 0.6rem;
    white-space: initial;
    flex: 0 0 calc(50% - 1rem);
    margin: 2rem 0.5rem;
  }

  .testimonial-item p {
    font-size: 0.8rem;
  }


  /* .partner-logos {
    grid-template-columns: repeat(auto-fit, minmax(7.14286rem, 1fr));
    gap: 1.07143rem;
  }

  .logo-item {
    padding: 0.71429rem;
    min-height: 4.28571rem;
  }




  .testimonial-item {
    font-size: 1.07143rem;
  }

  .testimonial-item::before,
  .testimonial-item::after {
    font-size: 3.57143rem;
  }

  .testimonial-item::after {
    bottom: -1.07143rem;
  } */
}

@media (max-width: 576px) {


  /* .partner-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.71429rem;
  }

  .testimonial-item {
    padding: 1.07143rem;
  } */
}

@media screen and (max-width: 768px) {
  .linctex-home-banner-video {
    height: 100%;
    object-fit: cover;
  }

  .dt-xuanjia .banner-bg {
    position: absolute;
    z-index: -1;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  #page0 {
    margin-bottom: 0px;
  }

  .dt-xuanjia .xuanjia-main-text .group {
    flex-direction: column;
    align-items: normal;
  }

  .dt-xuanjia .xuanjia-main-text .group img {
    /* width: 4.333rem;
    height: 1.5rem; */
  }

  .dt-xuanjia .xuanjia-main-text .h1 {
    font-size: 1.556rem;
    margin-left: 0;
  }

  .dt-xuanjia .xuanjia-main-text .h2 {
    font-size: 1.2rem;
    opacity: 0.9;
    text-align: center;
    margin: 0;
  }

  .dt-xuanjia .xuanjia-main-text .tiyan-btn {
    width: 6.444rem;
    height: 2rem;
    line-height: 2rem;
    font-size: .778rem;
    background-size: cover;
    margin-top: 8rem;
  }

  .dt-xuanjia .xuanjia-main-text .tiyan-btn.dt-mobile {
    display: inline-block;
  }

  .dt-xuanjia .xuanjia-main-text .apply-cooperation-btn {
    border-radius: 2rem;
    width: 6.444rem;
    height: 2rem;
    line-height: 2rem;
    font-size: .778rem;
    font-weight: 500;
    text-align: center;
    color: #ffffff;
    cursor: pointer;
    display: inline-block;
  }

  .dt-xuanjia .xuanjia-main-text .apply-cooperation-btn .tiyan-btn-dt-content {
    background-color: #fff;
    color: #fd00d5;
    border-radius: 2rem;
    height: 2rem;
    width: auto;
    border-radius: 36px;
    border: 1px solid #FF6AC4;
  }

  .section-page-module {
    width: 100%;
  }

  .dt-one .module-main ul {
    flex-direction: column;
  }

  .sectionPage .module-title {
    margin-top: 5.556rem;
    margin-bottom: 1.778rem;
  }

  .sectionPage {
    padding-top: 0;
    padding-bottom: 0;
  }

  .sectionPage .module-title h2 {
    font-size: 1.333rem;
    margin-bottom: .444rem;
    height: auto;
  }

  .sectionPage .module-title h6 {
    font-size: .778rem;
  }

  .dt-one .section-page-module {
    margin: unset;
  }

  .dt-one,
  .dt-three {
    height: auto;
  }

  .dt-one .module-main ul li {
    margin-left: 0;
    width: 100%;
    margin-bottom: .333rem;
    padding: 45% 0;
  }

  .dt-one .module-main ul li .sub-title {
    font-size: 1.333rem;
    margin-bottom: .667rem;
  }

  .dt-one .module-main ul li>div {
    font-size: .889rem;
  }

  .dt-two.sectionPage {
    height: auto;
    margin-bottom: unset;
  }

  .dt-two .linctex-home-banner-video {
    width: 300%;
  }

  .dt-two .module-main-two img {
    width: 100%;
    height: 146vw;
    object-fit: cover;
  }

  .dt-two .module-main-two {
    padding: 0;
    width: auto;
  }

  .dt-three .module-icons {
    flex-wrap: wrap;
    margin-bottom: 48px;
  }

  .dt-three .section-page-module {
    padding: 0;
    width: 100%;
  }

  .dt-three .module-icons .module-icons-li {
    background-size: 1.333rem;
    font-size: .778rem;
    width: 33.33%;
    height: auto;
    line-height: 2.222rem;
    padding-top: 1.389rem;
    margin-bottom: 1.333rem;
  }

  .dt-three .module-block {
    flex-wrap: wrap;
  }

  .dt-three .module-block .module-block-li {
    height: 8.889rem;
    width: 100%;
    margin: .667rem .444rem;
  }

  .dt-three .module-block .module-block-li .h1 {
    font-size: 1.167rem;
    line-height: 2.222rem;
  }

  .dt-three .module-block .module-block-li .h1 .font-big {
    font-size: 2.222rem;
    line-height: 2.5rem;
    margin-left: 1.111rem;
  }

  .dt-three .module-block .module-block-li .h6 {
    font-size: .778rem;
    line-height: 1.333rem;
  }

  .module-main-four img {
    width: 9.444rem;
    height: 4.667rem;
    object-fit: cover;
    margin: 0 0 .667rem 0;
  }

  .dt-four .section-page-module {
    padding: 0;
  }

  .dt-four.sectionPage {
    height: auto;
    margin-bottom: 2rem;
  }

  .five-content {
    text-align: center;
    background: rgba(57, 57, 57, 0.03);
    padding-top: 4.444rem;
    padding-bottom: 0.556rem;
  }

  .five-content .mq-erweicode {
    width: 6.222rem;
    margin-top: 2.5rem;
    object-fit: cover;
  }

  .five-content .bottom-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 25%;
    padding-top: 2.5rem;
    text-align: left;
  }

  .five-content .bottom-container .footer-font {
    margin-bottom: 0.5rem;
  }

  .dt-five h2 {
    font-size: 1.556rem;
    font-weight: 600;
    color: #000000;
    line-height: 3.333rem;
  }

  .dt-five h2 img {
    width: 3.722rem;
    height: 1.278rem;
    margin-left: .778rem;
    margin-top: -7px;
  }

  .dt-five h5 {
    font-size: .778rem;
    color: #393939;
    line-height: 2.222rem;
  }

  .dt-five .button-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 3.944rem;
  }

  .dt-five .dt-button-simple {
    margin-bottom: 1.333rem;
  }

  .footer-right {
    flex-direction: column;
  }

  .footer-right .footer-font:nth-child(2),.footer-right .footer-font:nth-child(3) {
    margin-left: 0;
  }

  /***打包后手动添加css 20230116**/
  #page6 .more-dynamic-btn-news {
    margin-top: 50px;
    margin-bottom: 100px;
    display: inline-block;
    width: 77px;
    height: 26px;
    border: 1px solid rgba(0, 0, 0, 0.85);
    font-size: 12px;
    font-weight: 400;
    color: #1b1b1b;
    line-height: 26px;
    text-align: center;
  }

  #page6 .btn-icon-left,
  #page6 .btn-icon-right {
    display: none;
  }

  #page6 .module-main-six {
    width: 100%;
    margin: 0 auto;
  }

  #page6 .news-tab {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
  }

  #page6 .news-tab .tab {
    width: 74px;
    height: 24px;
    font-size: 18px;
    font-weight: 400;
    text-align: left;
    color: #1b1b1b;
    cursor: pointer;
    line-height: 24px;
    margin: 0 16px;
  }

  #page6 .news-tab .tab.active {
    color: #000000;
    position: relative;
  }

  #page6 .news-tab .tab.active:after {
    content: '';
    width: 15px;
    height: 1px;
    background: #f919ca;
    position: absolute;
    text-align: center;
    bottom: 0;
    left: 29px;
  }

  #page6 .company-news .tabs {
    display: flex;
    flex-direction: column;
    padding: 0 10px;
  }

  #page6 .company-news .tabs .company-news-item {
    width: 100%;
    height: auto;
    background: none;
    border-radius: 0px;
    box-shadow: none;
    overflow: hidden;
    padding: 0;
    display: none;
    margin: 0;
  }

  #page6 .company-news .tabs .company-news-item {
    margin-bottom: 38px;
    display: flex;
  }

  #page6 .company-news .tabs .company-news-item .news-img {
    width: 120px;
    height: 87px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 5px;
  }

  #page6 .company-news .tabs .company-news-item .news-text {
    width: auto;
    height: 59px;
    font-size: 18px;
    font-weight: 400;
    text-align: left;
    color: rgba(0, 0, 0, 0.85);
    line-height: 26px;
    padding: 0 0 0 16px;
  }

  #page6 .company-news .tabs .company-news-item .news-text-top {
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    color: rgba(0, 0, 0, 0.85);
    line-height: 26px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  #page6 .company-news .tabs .company-news-item .news-text-bottom {
    opacity: 0.85;
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    color: #1b1b1b;
    line-height: 12px;
    display: block;
    margin-top: 10px;
  }

  #page6 .company-news .tabs .company-news-item .news-img img {
    width: 100%;
    height: 100%;
    transition: all ease .3s;
    object-fit: cover;
  }

  #page6 .company-news .tabs .company-news-item:hover .news-img img {
    cursor: pointer;
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
  }

  #page6 .industry-information {
    display: none;
    flex-wrap: wrap;
    justify-content: center;
  }

  #page6 .industry-information .item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px;
    width: 100%;
    height: auto;
    background: none;
    border-radius: 8px;
    border: none;
    margin: 0;
    position: relative;
    margin-bottom: 10px;
  }

  #page6 .industry-information .item>a>h6 {
    width: 100%;
    height: 24px;
    line-height: 24px;
    font-size: 16px;
    text-align: left;
    color: rgba(0, 0, 0, 0.85);
    position: relative;
    font-weight: bold;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  #page6 .industry-information .item:before {
    content: '';
    width: 1px;
    height: 13px;
    background: #666;
    position: absolute;
    left: 6px;
    top: 15px;
  }

  #page6 .industry-information .item:hover:before {
    content: '';
    width: 1px;
    height: 13px;
    background: #f919ca;
    position: absolute;
    left: 6px;
    top: 15px;
  }

  #page6 .industry-information .item:hover {
    cursor: pointer;
    width: 100%;
    height: auto;
    background: none;
    border: none;
    border-image: none;
    border-radius: 0;
    box-shadow: none;
  }

  #page6 .industry-information .item>a>div {
    width: 100%;
    height: auto;
    font-size: 12px;
    font-weight: 500;
    text-align: justify;
    color: rgba(0, 0, 0, 0.65);
    line-height: 18px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-top: 5px;
  }

  #page6 .industry-information .item>a>.bottom {
    display: none;
    width: 309px;
    height: 18px;
    font-size: 10px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.65);
    line-height: 18px;
    text-align: right;
  }
}

/* header */
@media screen and (max-width: 768px) {
  .menu-about-mq-mobile {}

  .menu-about-mq-mobile .menu-about-mq-row {
    color: #eee;
  }

  .menu-about-mq-mobile .menu-about-mq-main {
    padding-left: 37px;
    display: flex;
    flex-direction: column;
  }

  .menu-about-mq-mobile .menu-about-mq-main a {
    font-weight: 400;
    color: #fff;
  }
}

@media screen and (max-width: 768px) {

  html,
  body {
    font-size: 0.875rem;
    /* touch-action: none; */
  }

  /* 块级区域样式 */
  .dt-block {
    width: 100%;
  }

  /* 大标题样式 */
  .dt-title {
    height: 2rem;
    font-size: 1.25rem;
    line-height: 2rem;
  }

  /* 协议样式 */
  .dt-protocol {
    margin: 0.75rem 0 0.875rem;
  }

  /* 复选框样式 */
  .dt-checkbox {
    margin-right: 0.625rem;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 0.25rem;
  }

  .dt-checkbox.checked::after {
    top: 0.3125rem;
    left: 0.1875rem;
    width: 0.625rem;
    height: 0.1875rem;
    border-width: 0.1875rem;
  }

  /* 提交按钮样式 */
  /* .dt-submit {
    width: 8.5rem;
    height: 1.875rem;
    font-size: 0.875rem;
    line-height: 1.875rem;
    border-radius: 1.875rem;
  } */


  /* header */
  .dt-mobile {
    display: block;
  }

  .dt-pc {
    display: none !important;
  }

  .dt-header {
    height: 0;
    line-height: 2.6179rem;
    padding-left: .667rem;
    background: #ffffff;
  }

  .dt-header.dt-menu-open{
    background: rgb(29 29 31 / 90%);
    height: 100vh;
    overflow-y: auto;
  }
  .dt-header.dt-header-show-dialog{
    background: #fff;
    height: 100vh;
    overflow-y: auto;
  }
  .dt-header.dt-menu-open .dt-logo{
    opacity: 0;
  }

  .dt-header .dt-logo {
    width: 3.444rem;
    height: 1.167rem;
  }

  .dt-mobile {
    position: relative;
  }

  .dt-mobile .dt-more {
    position: absolute;
    right: 1.33rem;
    width: 1.33rem;
    height: 1.33rem;
    top: 50%;
    transform: translateY(-50%);
  }

  .dt-mobile .dt-close {
    position: absolute;
    right: 1.33rem;
    top: 0;
    font-size: 1.3rem;
    display: none;
    color: #fff;
  }

  .dt-header.dt-header-show-dialog .dt-close{
    color: rgba(0, 0, 0, 0.65);
  }

  .dt-header .dt-mmenus {
    display: none;
  }

  .dt-header .dt-mmenus li {
    margin: 0 1.44rem;
    border-bottom: 1px solid rgba(255, 255, 255, .25);
    color: #fff;
    text-align: left;
    padding-left: 1.22rem;
  }

  .dt-free-trial-mdialog .dt-mdialog-title {
    font-size: 1.33rem;
    font-weight: 600;
    color: rgba(0, 0, 0, .9);
    line-height: 1.83rem;
    text-align: left;
    margin-bottom: 0.89rem;
  }
  .dt-free-trial-mdialog .dt-mdialog-submit{
    display: block;
    width: 40%;
    height: 2.66rem;
    background: #000000;
    border-radius: 30px;
    color: #fff;
    margin:  0 auto;
  }
  .dt-mdialog {
    width: 100%;
    height: calc(100vh - 4rem);
    overflow: scroll;
    background-color: #fff;
    display: none;
    padding: 1.33rem 2.33rem 0 2.33rem;
    top: 60px;
    position: fixed;
    z-index: 999;
  }

  .dt-mdialog-title {
    font-size: 1.33rem;
    font-weight: 600;
    color: rgba(0, 0, 0, .9);
    line-height: 1.83rem;
    text-align: left;
    margin-bottom: 0.89rem;
  }

  .dt-mdialog-items li input {
    width: 98%;
    height: 3.11rem;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    margin-bottom: 0.89rem;
    padding: 0.94rem 0.66rem;
    color: rgba(0, 0, 0, 0.25);
    font-size: 0.89rem;
  }

  .dt-mdialog-info {
    font-size: 0.77rem;
    text-align: left;
    color: rgba(0, 0, 0, 0.85);
    line-height: 1.22rem;
    margin-bottom: 1.83rem;
  }

  .dt-mdialog .dt-dialog-content-company-info {
    font-size: 0.8rem;
    line-height: 1.0rem;
    color: rgb(0, 0, 0);
  }
  .dt-mdialog .dt-dialog-content-company-info:last-of-type {
    margin-bottom: 1.83rem;
  }

  .dt-mdialog .dt-dialog-content-company-info .dt-dialog-content-company-info-label {
    color: rgba(0, 0, 0, 0.45);
  }

  .dt-mdialog .dt-dialog-content-company-info .dt-dialog-content-company-info-value {
    text-decoration: underline;
  }
  .dt-mdialog-submit-trial{
    display: block;
    width: 40%;
    height: 2.66rem;
    line-height: 2.66rem;
    background: #000000;
    border-radius: 30px;
    color: #fff;
    text-align: center;
    margin: 0 auto;
  }
  .dt-mdialog-submit {
    display: block;
    width: 40%;
    height: 2.66rem;
    line-height: 2.66rem;
    background: #000000;
    border-radius: 30px;
    color: #fff;
    text-align: center;
    margin: 0 auto;
  }
  .dt-mdialog-success {
    display: none;
    margin-top: 40%;
    text-align: center;
  }
  .dt-mdialog-success img {
    width: 8.5rem;
    height: 5.22rem;
    object-fit: contain;
  }

  .dt-mdialog-success div {
    font-size: 0.78rem;
    font-weight: 500;
    text-align: center;
    color: rgba(0, 0, 0, 0.85);
    line-height: 1.22rem;
    margin-top: 1.5rem;
  }

  .dt-stitle {
    height: 2.666rem;
    line-height: 2.666rem;
    font-size: 0.888rem;
    padding-left: 0.888rem;
  }

  .dt-mobile-memu {
    display: flex;
    width: 100%;
    background-color: rgba(255, 255, 255, .78);
    height: 7.166rem;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.05);
    padding: 0.83rem 0;
  }

  .dt-mobile-memu-content {
    flex: 1;
    overflow-x: scroll;
    position: relative;
  }

  .dt-mobile-memu-content::-webkit-scrollbar {

    display: none;

  }

  .dt-mobile-memu-content ul {
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    left: 0;
  }

  .dt-mobile-memu-content ul li {
    min-width: 25%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .dt-mobile-memu-content li img {
    width: 1.65rem;
    height: 1.22rem;
    margin: 0 auto 0.88rem;
  }

  .dt-mobile-arowl,
  .dt-mobile-arowr {
    width: 1.34rem;
    height: 100%;
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.65);
    border-right: 1px solid #979797;
    text-align: center;
    line-height: 5.5rem;
    visibility: hidden;
  }

  .dt-mobile-arowr {
    border-left: 1px solid #979797;
    border-right: none;
    visibility: visible;
  }


  /* footer */
  .dt-footer-info {
    padding: 1.333rem 0 .667rem .667rem;
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
    line-height: 2.49rem;
    justify-content: start;
    font-size: 0.8rem;
  }

  .dt-footer-info img {
    margin-right: 0.7rem;
    width: 1.111rem;
    height: 1.111rem;
  }
  .dt-footer-info .footer-font{
    font-size: .778rem;
  }

  .dt-footer-end {
    flex-direction: column;
    padding: .667rem;
  }
  .dt-footer .footer-font{
    line-height: .667rem;
    font-size: .667rem;
    color: #1b1b1b;
    line-height: 1.333rem;
  }

  /* 一屏展示样式 */
  .sectionPage {
    text-align: center;
    color: #fff;
    line-height: 3.342rem;
  }

  .sectionPage h2,
  .sectionPage p {
    font-weight: 300;
    font-size: 1.3368rem;
  }

  .sectionPage h2 img {
    width: 1.671rem;
    height: 1.671rem;
    top: -130%;
    left: 50%;
    transform: translateX(-50%);
  }

  .dt-ipts {
    display: inline-block;
    width: 9rem;
    height: 2rem;
    opacity: 0.5;
    border-radius: 4px;
    font-size: 0.8rem;
    padding-left: 0.6rem;
    line-height: 2rem;
    margin-left: 0.5rem;
  }

  .dt-ipt-btn {
    padding: 0.3rem 1rem;
    font-size: 0.9rem;
  }
  .dt-xuanjia {
    display: flex;
    flex-direction: column;
  }
  .dt-xuanjia .xuanjia-left {
    justify-content: flex-end;
    margin-left: 0;
  }
  .dt-xuanjia .xuanjia-left img{
    width: 5.42rem;
    height: 3.388rem;
    margin-left: 3.55rem;
  }
  .dt-xuanjia .xuanjia-left h2 {
    font-size: 1.333rem;
    line-height: 1.333rem;
    margin: 0.2rem 0 1.111rem 3.55rem;
    text-align: left;
  }
  .dt-xuanjia .xuanjia-left p {
    font-size: 0.78rem;
    line-height: 1.78rem;
    margin-left: 3.55rem;
  }
  .dt-xuanjia .xuanjia-left .free-trial-mobile {
    width: 7.277rem;
    height: 2.22rem;
    line-height: 2.22rem;
    font-size: 0.888rem;
    border-radius: 1.666rem;
    background: rgba(0,0,0,0.85);
    margin: 1.111rem auto 0;
    cursor: pointer;
  }
  .dt-xuanjia .xuanjia-right {
    width: 78%;
    margin: 2rem auto ;
  }

  .dt-one .dt-mobile-title {
    padding: 8.5rem 0 12.23rem;
  }
  .dt-one .section-page-module {
    padding: 0;
    width: 100%;
  }

  .dt-one .dt-mobile-title>p {
    font-size: 1.5rem;
    line-height: 2.77rem;
    font-weight: 600;
  }


  .dt-one .dt-mobile-title>div {
    font-size: 0.88rem;
    line-height: 2.2rem;
    letter-spacing: 2px;
    font-weight: 400;
  }


  .dt-two-bg {
    width: 15.5rem;
    height: 17.77rem;
    bottom: -1.1697rem;
    left: -7.3rem;
  }

  .dt-four-bg {
    width: 113%;
    height: 70%;
    bottom: -5.4rem;
    left: -7rem;
  }

  .dt-five-introl {
    width: 100%;
    height: 100%;
  }

  .dt-six-introl {
    height: 50%;
  }

  .dt-six-example {
    height: 50%;
    padding: 3.315rem 0;
  }

  .dt-six-bg {
    width: 62%;
    height: 53%;
    bottom: 0;
  }


  .dt-seven-tintrol {
    height: 60%;
  }

  .dt-seven-sintrol {
    height: 40%;
    flex-direction: column;
    font-size: 1.114rem;
    padding-bottom: 5.89rem;
  }

  .dt-seven-sintrol span {
    display: block;
    width: 100%;
    background-size: 1.3rem 1.3rem;
    background-position: 32% center;
    padding-left: 1.5rem;
  }

  .dt-eight-introl {
    height: 60%;
    overflow: hidden;
    background-color: rgba(49, 208, 220, .65);
  }

  .dt-eight-introl img {
    position: absolute;
    width: 65%;
    height: 97%;
    object-fit: contain;
    bottom: -36%;
    right: 5%;
  }
  .dt-eight-introl .dt-mbg {
    position: absolute;
    bottom: 3%;
    width: 19.66rem;
    height: 4.388rem;
    object-fit: contain;
  }

  .dt-eight-introl div {
    position: relative;
    line-height: 2.5rem;
    top: 44%;
  }

  .dt-eight-show {
    height: 32%;
    position: relative;
    /* background-color: rgba(49, 208, 220, .25); */
    /* padding: 3rem ; */
  }
  .dt-eight-show .dt-ewm-mobile{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
  }
  .dt-eight-show img {
    height: 50%;
  }

  .dt-seven-ipt div {
    display: block;
  }

  .dt-seven-last-input {
    width: 19.04rem;
  }

  .dt-nine {
    background: url(images/mtoptwo_38866c6c.png);
  }

  .dt-nine .dt-mobile-title {
    position: relative;
    height: 30%;
  }
  .dt-nine .dt-mobile-title>div {
    position: absolute;
    bottom: 0;
    left: 50%;
    white-space: nowrap;
    transform: translateX(-50%);
  }
  .dt-nine .dt-mobile-title>div>p {
    font-size: 1.5rem;
    line-height: 2.77rem;
    font-weight: 600;
    color: #000;
  }

  .swiper-container-nine,
  .swiper-container-ten {
    position: relative;
    height: 55%;
  }

  .swiper-container-ten {
    height: 45%;
  }

  .pagination-nine,
  .pagination-ten {
    height: 15%;
  }

  .swiper-container-nine .swiper-wrapper,
  .swiper-container-ten .swiper-wrapper {
    position: absolute;
    top: 15%;
  }

  .swiper-container-nine .swiper-slide>span {
    display: inline-block;
    width: 5.7rem;
    height: 5.7rem;
    border-radius: 50%;
    border: 1px solid #85eaf2;
    font-size: 2rem;
    color: #31d0dc;
    line-height: 5.7rem;
    opacity: 0.65;
    margin-bottom: 0.78rem;
  }

  .swiper-container-nine .swiper-slide>div {
    font-size: 0.89rem;
    color: #393939;
    line-height: 2.22rem;
    font-weight: 400;
  }

  .dt-ten-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 40%;
    background: url(images/mtopthree_b4a8d48a.png);
  }

  .dt-ten-title>p {
    font-size: 1.55rem;
    font-weight: 600;
    line-height: 2.77rem;
  }

  .swiper-container-ten .swiper-slide>span {
    display: inline-block;
    width: 6.89rem;
    height: 5.28rem;
    line-height: 5.28rem;
    border: 1px solid #85eaf2;
    border-radius: 4px;
    font-size: 2rem;
    font-weight: 500;
    color: #31d0dc;
    margin-bottom: 1.11rem;
  }

  .swiper-container-ten .swiper-slide>div {
    font-size: 0.88rem;
    line-height: 2.22rem;
    color: #393939;
  }

  .swiper-pagination-switch {
    display: inline-block;
    width: 12px;
    height: 2px;
    background: #979797;
    margin: 0 4px;
    cursor: pointer;
  }

  .swiper-active-switch {
    background: #31d0dc;
  }


  /* 背景 */
  .dt-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .dt-circle-border {
    width: 5.667rem;
    height: 5.667rem;
    margin: 0 auto;
    line-height: 5.667rem;
    opacity: 0.65;
    background: #ffffff;
    border: 1px solid #85eaf2;
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 600;
    color: #31d0dc;
  }

  .dt-button {
    width: 9.778rem;
    height: 2.833rem;
    background: linear-gradient(51deg,#ff8ccd 17%, #f073e7 58%, #d05ff8 83%);
    border-radius: 1.444rem;
    color: #ffffff;
    line-height: 2.833rem;
    text-align: center;
    font-size: 1.111rem;
  }
  .dt-button-simple{
    background: transparent;
    color: #f919ca;
    border: 1px solid #f919ca;
  }
}

