@charset "UTF-8";
/*! normalize.css?v=2 v8.0.1 | MIT License | github.com/necolas/normalize.css?v=2 */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

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

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

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

a {
  background-color: transparent;
}

a:active {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

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

b,
strong {
  font-weight: bolder;
}

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

small {
  font-size: 80%;
}

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

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

img {
  vertical-align: middle;
  border-style: none;
}

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

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

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

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

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

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

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

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

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

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

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

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

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

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

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

li {
  list-style-type: none;
}

a {
  text-decoration: none;
}

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

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

.fl {
  float: left;
}

.fr {
  float: right;
}

.por {
  position: relative;
}

.poa {
  position: absolute;
}

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

.clearfix {
  zoom: 1;
}

.tac {
  text-align: center;
}

input[type='text'], input[type='number'], input[type='password'], input[type='reset'], input[type='submit'], input[type='button'], input[type='tel'], button, textarea {
  -webkit-appearance: none;
  outline: none;
}

figure {
  margin: 0;
}
/*!
Animate.css?v=2 - 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: 2s;
  animation-duration: 2s;
  -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);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-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);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-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);
    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);
  }
}

.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);
    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);
  }
}

.swing {
  -webkit-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);
    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);
  }
}

.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%);
    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%);
  }
}

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

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

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

.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);
    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);
  }
}

.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);
    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);
  }
}

.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);
    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);
  }
}

.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);
    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);
  }
}

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

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

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

.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);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-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);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -webkit-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);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -webkit-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);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-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);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-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);
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-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);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-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);
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-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);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-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);
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

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

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

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    -webkit-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);
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-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);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-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);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-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);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-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);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-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);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-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);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-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);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-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);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

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

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

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

.animated.flip {
  -webkit-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);
    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;
  }
}

.flipInX {
  -webkit-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);
    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;
  }
}

.flipInY {
  -webkit-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);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-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;
  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);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-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);
    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;
  }
}

.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);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-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;
    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;
  }
}

.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;
    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;
  }
}

.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;
    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;
  }
}

.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;
    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;
  }
}

.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;
    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;
  }
}

.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;
    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;
  }
}

.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;
    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;
  }
}

.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;
    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;
  }
}

.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;
    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;
  }
}

.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;
    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;
  }
}

.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);
    transform: translateY(-2000px);
  }
  100% {
    -webkit-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);
    transform: translateX(-2000px);
  }
  100% {
    -webkit-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);
    transform: translateX(2000px);
  }
  100% {
    -webkit-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);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-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);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-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);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-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);
    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;
  }
}

.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);
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -webkit-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);
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

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

/*www.jq22.com*/
/**
 * Swiper 5.3.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://swiperjs.com
 *
 * Copyright 2014-2020 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: January 11, 2020
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}

:root {
  --swiper-theme-color:#007aff;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.swiper-container-android .swiper-slide, .swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-container-autoheight, .swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition-property: height,-webkit-transform;
  transition-property: height,-webkit-transform;
  transition-property: transform,height;
  transition-property: transform,height,-webkit-transform;
}

.swiper-container-3d {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-container-3d .swiper-cube-shadow, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size)/ 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * var(--swiper-navigation-size)/ 2);
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: .35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after, .swiper-container-rtl .swiper-button-next:after {
  content: 'prev';
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after {
  content: 'next';
}

.swiper-button-next.swiper-button-white, .swiper-button-prev.swiper-button-white {
  --swiper-navigation-color:#ffffff;
}

.swiper-button-next.swiper-button-black, .swiper-button-prev.swiper-button-black {
  --swiper-navigation-color:#000000;
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: .3s opacity;
  transition: .3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: .6;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
          transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: .2s transform,.2s top;
  transition: .2s transform,.2s top;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: .2s transform,.2s left;
  transition: .2s transform,.2s left;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: .2s transform,.2s right;
  transition: .2s transform,.2s right;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar, .swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-container-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white {
  --swiper-pagination-color:#ffffff;
}

.swiper-pagination-black {
  --swiper-pagination-color:#000000;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active, .swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
          transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-next, .swiper-container-cube .swiper-slide-next + .swiper-slide, .swiper-container-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-bottom, .swiper-container-cube .swiper-slide-shadow-left, .swiper-container-cube .swiper-slide-shadow-right, .swiper-container-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active, .swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-bottom, .swiper-container-flip .swiper-slide-shadow-left, .swiper-container-flip .swiper-slide-shadow-right, .swiper-container-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* 
 * 	Core Owl Carousel CSS File
 *	v2.0.0
 */
/* clearfix */
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* temporary fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-stage-outer.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-controls .owl-nav div,
.owl-controls .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl-video-play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition-property: scale;
  transition-property: scale;
  -webkit-transition-duration: 100ms;
          transition-duration: 100ms;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 400ms;
          transition-duration: 400ms;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
}

.owl-loaded {
  display: block;
}

.owl-loading {
  opacity: 0;
  display: block;
}

.owl-hidden {
  opacity: 0;
}

.owl-carousel .owl-refresh .owl-item {
  display: none;
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* If mouseDrag:false then you are able to select text */
.owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: all;
  -moz-user-select: all;
  -ms-user-select: all;
  user-select: all;
}

.owl-carousel .owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}

.owl-carousel .owl-item img.owl-lazy {
  opacity: 0;
}

.owl-carousel .owl-item img {
  opacity: 1;
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 400ms;
          transition-duration: 400ms;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}

/* to do */
.owl-carousel .owl-stage.backfacefix .owl-item {
  -webkit-backface-visibility: hidden;
}

.owl-rtl {
  direction: rtl;
}

.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/* animate */
.animated {
  -webkit-animation-duration: 600ms;
  animation-duration: 600ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.owl-animated-in {
  z-index: 0;
}

.owl-animated-out {
  z-index: 1;
}

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

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

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

/*翻页样式*/
.paging {
  text-align: center;
  padding: 45px 0 65px;
  font-size: 12px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.paging li {
  display: inline-block;
  line-height: 1;
  text-align: center;
  font-size: 12px;
}

.paging li a {
  display: inline-block;
  color: #000;
  width: 31px;
  height: 31px;
  line-height: 31px;
  margin-right: 8px;
  font-size: 12px;
  color: #000;
  vertical-align: middle;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.paging li.thisclass a,
.paging li:hover a {
  background: #e6213d;
  color: #fff;
  border-color: #e6213d;
}

.pageinfo {
  letter-spacing: 1px;
}

.pageinfo strong {
  font-family: "Arial";
  font-weight: normal;
  font-size: 14px;
}

.paging li.i a {
  text-indent: -9999px;
  background: url(../images/paging_btn.png) 7px center no-repeat;
}

.paging li a.e {
  background: url(../images/paging_btn.png) -152px center no-repeat;
}

.paging li.e a {
  background: url(../images/paging_btn.png) -152px center no-repeat;
}

.paging li.n a,
.paging li.p a {
  background: url(../images/paging_btn.png) -31px center no-repeat;
}

.paging li.n a {
  background: url(../images/paging_btn.png) -97px center no-repeat;
}

.paging li.i:hover a {
  background: url(../images/paging_btn_hover.png) 7px center no-repeat #e6213d;
}

.paging li:hover a.e {
  background: url(../images/paging_btn_hover.png) -152px center no-repeat #e6213d;
}

.paging li.e:hover a {
  background: url(../images/paging_btn_hover.png) -152px center no-repeat #e6213d;
}

.paging li.p:hover a {
  background: url(../images/paging_btn_hover.png) -31px center no-repeat #e6213d;
}

.paging li.n:hover a {
  background: url(../images/paging_btn_hover.png) -97px center no-repeat #e6213d;
}

.paging .paging-to {
  font-size: 16px;
  line-height: 33px;
  vertical-align: middle;
  color: #000;
}

.paging .paging-number input {
  width: 31px;
  height: 29px;
  line-height: 29px;
  font-size: 14px;
  text-align: center;
  vertical-align: middle;
  background: transparent;
  color: #b6b6b6;
  border-radius: 4px;
  border: 1px solid #b5b5b5;
}

.paging .paging-left {
  margin-left: 14px;
}

.paging .paging-go {
  margin-left: 10px;
}

.paging .paging-go a {
  display: inline-block;
  width: 52px;
  height: 33px;
  background-color: #e6213d;
  color: #fff;
  text-align: center;
  line-height: 33px;
  font-size: 16px;
  font-weight: normal;
  border: 0;
  border-radius: 3px;
}

.paging .paging-go a:hover {
  text-indent: 1em;
}

.paging-border li a {
  border: 1px solid #b5b5b5;
}

.paging-radius li a {
  border-radius: 50%;
  border: 0;
}

.paging-radius li.p:hover a {
  background: url(../images/paging_btn_hover2.png) -31px center no-repeat;
}

.paging-radius li.n:hover a {
  background: url(../images/paging_btn_hover2.png) -97px center no-repeat;
}

.paging-bg-transparent li a {
  background-color: transparent;
}

@media screen and (max-width: 640px) {
  .paging {
    padding: 35px 0 45px;
  }
  .paging li a {
    width: 24px;
    height: 24px;
    line-height: 24px;
  }
  .paging li.p a {
    background-position-x: -33px;
  }
  .paging li.n a {
    background-position-x: -100px;
  }
  .paging .paging-to {
    line-height: 24px;
    font-size: 14px;
    color: #b6b6b6;
  }
  .paging .paging-number input {
    width: 26px;
    height: 24px;
    line-height: 24px;
    padding: 0;
  }
  .paging .paging-go {
    margin-left: 16px;
  }
  .paging .paging-go a {
    height: 26px;
    line-height: 26px;
    font-size: 14px;
  }
}

.iw_poi_title {
  color: #CC5522;
  font-size: 14px;
  font-weight: bold;
  overflow: hidden;
  padding-right: 13px;
  white-space: nowrap;
}

.iw_poi_content {
  font: 12px arial, sans-serif;
  overflow: visible;
  padding-top: 4px;
  white-space: -moz-pre-wrap;
  word-wrap: break-word;
}

@font-face {
  font-family: "socialshare";
  src: url("../fonts/iconfont.eot");
  src: url("../fonts/iconfont.eot?#iefix") format("embedded-opentype"), url("../fonts/iconfont.woff") format("woff"), url("../fonts/iconfont.ttf") format("truetype"), url("../fonts/iconfont.svg#iconfont") format("svg");
}

.social-share {
  font-family: "socialshare" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke-width: 0.2px;
  -moz-osx-font-smoothing: grayscale;
}

.social-share * {
  font-family: "socialshare" !important;
}

.social-share .icon-tencent:before {
  content: "\f07a";
}

.social-share .icon-qq:before {
  content: "\f11a";
}

.social-share .icon-weibo:before {
  content: "\f12a";
}

.social-share .icon-wechat:before {
  content: "\f09a";
}

.social-share .icon-douban:before {
  content: "\f10a";
}

.social-share .icon-heart:before {
  content: "\f20a";
}

.social-share .icon-like:before {
  content: "\f00a";
}

.social-share .icon-qzone:before {
  content: "\f08a";
}

.social-share .icon-linkedin:before {
  content: "\f01a";
}

.social-share .icon-diandian:before {
  content: "\f05a";
}

.social-share .icon-facebook:before {
  content: "\f03a";
}

.social-share .icon-google:before {
  content: "\f04a";
}

.social-share .icon-twitter:before {
  content: "\f06a";
}

.social-share a {
  position: relative;
  text-decoration: none;
  margin: 4px;
  display: inline-block;
  outline: none;
}

.social-share .social-share-icon {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 32px;
  font-size: 20px;
  border-radius: 50%;
  line-height: 32px;
  border: 1px solid #666;
  color: #666;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: background 0.6s ease-out 0s;
  transition: background 0.6s ease-out 0s;
}

.social-share .social-share-icon:hover {
  background: #666;
  color: #fff;
}

.social-share .icon-weibo {
  color: #ff763b;
  border-color: #ff763b;
}

.social-share .icon-weibo:hover {
  background: #ff763b;
}

.social-share .icon-tencent {
  color: #56b6e7;
  border-color: #56b6e7;
}

.social-share .icon-tencent:hover {
  background: #56b6e7;
}

.social-share .icon-qq {
  color: #56b6e7;
  border-color: #56b6e7;
}

.social-share .icon-qq:hover {
  background: #56b6e7;
}

.social-share .icon-qzone {
  color: #FDBE3D;
  border-color: #FDBE3D;
}

.social-share .icon-qzone:hover {
  background: #FDBE3D;
}

.social-share .icon-douban {
  color: #33b045;
  border-color: #33b045;
}

.social-share .icon-douban:hover {
  background: #33b045;
}

.social-share .icon-linkedin {
  color: #0077B5;
  border-color: #0077B5;
}

.social-share .icon-linkedin:hover {
  background: #0077B5;
}

.social-share .icon-facebook {
  color: #44619D;
  border-color: #44619D;
}

.social-share .icon-facebook:hover {
  background: #44619D;
}

.social-share .icon-google {
  color: #db4437;
  border-color: #db4437;
}

.social-share .icon-google:hover {
  background: #db4437;
}

.social-share .icon-twitter {
  color: #55acee;
  border-color: #55acee;
}

.social-share .icon-twitter:hover {
  background: #55acee;
}

.social-share .icon-diandian {
  color: #307DCA;
  border-color: #307DCA;
}

.social-share .icon-diandian:hover {
  background: #307DCA;
}

.social-share .icon-wechat {
  position: relative;
  color: #7bc549;
  border-color: #7bc549;
}

.social-share .icon-wechat:hover {
  background: #7bc549;
}

.social-share .icon-wechat .wechat-qrcode {
  display: none;
  border: 1px solid #eee;
  position: absolute;
  z-index: 9;
  top: -205px;
  left: -84px;
  width: 200px;
  height: 192px;
  color: #666;
  font-size: 12px;
  text-align: center;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 10px #aaa;
          box-shadow: 0 2px 10px #aaa;
  -webkit-transition: all 200ms;
  transition: all 200ms;
  -webkit-tansition: all 350ms;
  -moz-transition: all 350ms;
}

.social-share .icon-wechat .wechat-qrcode.bottom {
  top: 40px;
  left: -84px;
}

.social-share .icon-wechat .wechat-qrcode.bottom:after {
  display: none;
}

.social-share .icon-wechat .wechat-qrcode h4 {
  font-weight: normal;
  height: 26px;
  line-height: 26px;
  font-size: 12px;
  background-color: #f3f3f3;
  margin: 0;
  padding: 0;
  color: #777;
}

.social-share .icon-wechat .wechat-qrcode .qrcode {
  width: 105px;
  margin: 10px auto;
}

.social-share .icon-wechat .wechat-qrcode .qrcode table {
  margin: 0 !important;
}

.social-share .icon-wechat .wechat-qrcode .help p {
  font-weight: normal;
  line-height: 16px;
  padding: 0;
  margin: 0;
}

.social-share .icon-wechat .wechat-qrcode:after {
  content: '';
  position: absolute;
  left: 50%;
  margin-left: -6px;
  bottom: -13px;
  width: 0;
  height: 0;
  border-width: 8px 6px 6px 6px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

.social-share .icon-wechat:hover .wechat-qrcode {
  display: block;
}

html {
  overflow-x: hidden;
}

html,
body {
  margin: 0 auto;
  font: 16px/1 'Microsoft Yahei';
  color: #333;
}

sub {
  bottom: -0.05em;
}

.ml-10 {
  margin-left: 10px;
}

img {
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #333;
}

.object-scale-down {
  -o-object-fit: scale-down;
  object-fit: scale-down;
  font-family: "object-fit: scale-down";
}

.object-cover {
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover";
}

.w100,
.img {
  width: 100%;
}

.ovh {
  overflow: hidden;
}

.pb0 {
  padding-bottom: 0 !important;
}

.pt0 {
  padding-top: 0 !important;
}

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

.df-space-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -moz-box-pack: justify;
  -webkit--moz-box-pack: justify;
  box-pack: justify;
}

.df-w {
  -webkit-box-lines: multiple;
  /* 12版 */
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}

.df-row-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.white {
  color: #fff;
}

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

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

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

.container {
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
}

.small-container {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

.pic-item {
  position: relative;
  display: block;
  overflow: hidden;
}

.pic-item:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.pic-item figure {
  overflow: hidden;
  position: relative;
}

.pic-item figure img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover";
}

.carousel-left,
.carousel-right,
.carousel-left:visited,
.carousel-right:visited {
  z-index: 9;
  position: absolute;
  top: 50%;
  margin-top: -20px;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.carousel-left {
  left: -3.5rem;
  background-image: url(../images/icon_left.png);
}

.carousel-right {
  right: -3.5rem;
  background-image: url(../images/icon_right.png);
}

.carousel-left:hover {
  background-image: url(../images/icon_left_hover.png);
}

.carousel-right:hover {
  background-image: url(../images/icon_right_hover.png);
}

@media screen and (max-width: 1200px) {
  .carousel-left {
    left: -2rem;
  }
  .carousel-right {
    right: -2rem;
  }
}

.owl-carousel .owl-dots {
  margin-top: 0.85rem;
  text-align: center;
}

.owl-carousel .owl-dot.active {
  background-color: #f70124;
}

.owl-carousel .owl-dot {
  display: inline-block;
  margin: 0 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #d2d2d2;
}

.btn {
  width: 6.25rem;
  height: 2.25rem;
  border: 1px solid #f70124;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all .23s ease;
  transition: all .23s ease;
  font-size: 14px;
  cursor: pointer;
}

.btn.primary {
  background-color: #f70124;
  color: #fff;
}

.btn.primary:hover {
  background-color: transparent;
  color: #f70124;
}

.btn.plain {
  background-color: transparent;
  color: #f70124;
}

.btn.plain:hover {
  background-color: #f70124;
  color: #fff;
}

.btn.plain.white {
  border-color: #fff;
  background-color: transparent;
  color: #fff;
}

.btn.plain.white:hover {
  background-color: #fff;
  color: #f70124;
}

.btn.plain.gray {
  border-color: #dcdcdc;
  color: #999;
}

.btn.plain.gray:hover {
  background-color: #f70124;
  color: #fff;
}

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

.btn-group .btn:first-child {
  margin-left: 0;
}

.btn-group .btn + .btn {
  margin-left: 1.063rem;
}

/*------------ index -------------*/
/* ----------------- header -------------- */
body.index {
  background-color: #f1f3f5;
}

body::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

body::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  --webkit-border-radius: 6px;
}

.header {
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 74px;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 2px 2px rgba(0, 0, 0, 0.09);
  box-shadow: 0 1px 2px 2px rgba(0, 0, 0, 0.09);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border-top: 10px solid #f70124;
}

.header .container {
  max-width: 1260px;
  position: relative;
}

.header .header-top {
  position: relative;
  width: 100%;
}

.header .header-top .header-logo {
  padding: 0.4rem 0 0;
}

.header .header-top .header-logo img {
  width: 13rem;
  height: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.header-right {
  margin-left: 1.875rem;
}

.header-right-tel {
  text-align: right;
  font-size: 0;
  margin-top: 1.588rem;
}

.header-right-tel.fl {
  margin-left: 2.813rem;
}

.header-right-tel .header-search-icon {
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  vertical-align: middle;
  background: url(../images/new2/search.png) center center no-repeat;
  background-size: 100% 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}

.header-right-tel .header-tel {
  display: inline-block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.header-right-tel .header-tel p {
  vertical-align: middle;
  display: inline-block;
  text-align: left;
  font-size: 1.125rem;
  line-height: 1.25rem;
}

.header-right-tel .header-tel a {
  vertical-align: middle;
  font-size: 1.55rem;
  line-height: 1.25rem;
  color: #f70124;
  font-weight: bold;
  letter-spacing: -.5px;
  font-family: Arial;
}

.header-right-tel .header-tel a:hover {
  color: #f70124 !important;
}

.header-right-tel .header-tel a:hover i {
  background: url(../images/icon_top_tel_hover.png) center no-repeat !important;
  background-size: 100% 100% !important;
}

.header-right-tel .header-tel i {
  margin-right: 0.35rem;
  display: inline-block;
  width: 1.513rem;
  height: 1.513rem;
  background: url(../images/icon_top_tel_hover.png) center no-repeat;
  background-size: 100% 100%;
  vertical-align: middle;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.header-right-tel .header-link {
  margin-left: 1.188rem;
  display: inline-block;
  width: 5.625rem;
  height: 2rem;
  line-height: 2rem;
  text-align: center;
  background-color: #f70124;
  border-radius: 1rem;
  font-size: 0.938rem;
  color: #f7f7f7;
  vertical-align: middle;
}

.header-nav {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0;
}

.header-nav ul > li {
  position: relative;
  float: left;
  text-align: center;
}

.header-nav ul > li.on.has-childnav > a::before, .header-nav ul > li:hover.has-childnav > a::before {
  background: url(../images/icon_nav_li_has_child_hover.png) no-repeat;
  background-size: cover;
}

.header-nav ul > li.has-childnav > a::before {
  position: absolute;
  right: 0.55rem;
  top: 50%;
  margin-top: -3px;
  content: "";
  width: 9px;
  height: 6px;
  background: url(../images/icon_nav_li_has_child_black.png) no-repeat;
  background-size: cover;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.header-nav ul > li.on > a,
.header-nav ul > li:hover > a {
  color: #f70124;
}

.header-nav ul > li.on > a::after,
.header-nav ul > li:hover > a::after {
  width: 100%;
  opacity: 1;
}

.header-nav ul > li:hover .nav-sub {
  z-index: 999;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.header-nav ul > li > a {
  position: relative;
  display: block;
  font-size: 1rem;
  margin: 0 1.25rem;
  font-weight: normal;
  line-height: 1;
  color: #434343;
  height: 74px;
  line-height: 74px;
}

.header-nav ul > li > a::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
  display: block;
  width: 0;
  height: 2px;
  background: #f70124;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  content: "";
}

.header-nav .nav-sub {
  position: absolute;
  top: 74px;
  left: 50%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .2s;
  transition: all .2s;
  background: #f70124;
  -webkit-transform: translate(-50%, -10%);
          transform: translate(-50%, -10%);
}

.header-nav .nav-sub li {
  display: block;
}

.header-nav .nav-sub li a {
  padding: 16px 0;
  display: block;
  font-size: .875rem;
  line-height: 1.4;
  height: auto;
  color: #fff;
}

.header-nav .nav-sub li:hover a {
  background-color: #fff;
  color: #f70124 !important;
}

.menu-btn {
  display: none;
  z-index: 9999;
  position: absolute;
  top: 50%;
  right: 6%;
  margin-top: -16px;
  height: 32px;
  text-align: center;
}

.menu-btn span {
  position: relative;
  margin-top: 15px;
  width: 2rem;
  height: 0.2rem;
  display: inline-block;
  background: #f70124;
}

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

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

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

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

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

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

.menu-btn.menu-btn-on i.menu-btn-top,
.menu-btn.menu-btn-on i.menu-btn-bottom {
  background: #f70124;
  transition-delay: 0s, 0.3s;
  -webkit-transition-delay: 0s, 0.3s;
}

.nav-mb {
  z-index: 9999;
  position: absolute;
  width: 100%;
  display: none;
  overflow: hidden;
  top: 74px;
  left: 0;
  background: #f70124;
  -webkit-box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.05);
          box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.nav-mb ul {
  display: none;
  padding: 20px 5%;
  margin: 0 auto;
  height: 100vh;
  border-top: 1px solid #eee;
}

.nav-mb ul li.on > a {
  background: rgba(255, 255, 255, 0.5);
}

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

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

.nav-mb a.has-childnav:after {
  display: block;
  position: absolute;
  top: 0.5rem;
  right: 4%;
  font-size: 22px;
  content: "+";
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  background: transparent !important;
}

.nav-mb .search-li {
  margin-bottom: 8px;
  overflow: hidden;
}

.nav-mb .search-li input[type="text"] {
  padding: 0;
  padding-left: 2%;
  width: 78%;
  height: 40px;
  float: left;
  border: 0;
  background: #eee;
  outline: none;
}

.nav-mb .search-li input[type="submit"] {
  width: 20%;
  float: left;
  border: 0;
  height: 40px;
  outline: none;
  color: #fff;
  background-color: #f70124;
}

.nav-mb.nav-mb-on {
  height: auto;
}

.nav-mb ol {
  display: none;
  background-color: rgba(140, 35, 35, 0.8);
}

.search-from {
  z-index: 99999;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  opacity: 1;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

.search-from.show {
  right: 0%;
  opacity: 1;
}

.search-from.show .search-close-btn {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.search-from .search-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  background: #000;
  opacity: 0.8;
}

.search-from .search-close-btn {
  z-index: 2;
  position: absolute;
  top: 4rem;
  right: 5rem;
  font-size: 140px;
  vertical-align: top;
  height: 68px;
  font-weight: lighter;
  line-height: 55px;
  color: #fff;
  font-style: normal;
  cursor: pointer;
  width: 68px;
  text-align: center;
  text-indent: -14px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.search-from .search-close-btn:hover {
  color: #f70124;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.search-from .search {
  position: absolute;
  z-index: 2;
  max-width: 600px;
  width: 88%;
  height: 60px;
  overflow: hidden;
  margin: auto;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.search-from .search form {
  font-size: 0;
  overflow: hidden;
}

.search-from .search form:hover .text {
  border-color: #f70124;
}

.search-from .search form:hover #search-btn {
  background-color: #f70124;
  background-image: url(../images/icon_search_form.png);
}

.search-from .search #search-btn {
  display: inline-block;
  width: 20%;
  max-width: 60px;
  height: 60px;
  border: 0;
  padding: 0;
  background-color: #f70124;
  background-image: url(../images/icon_search_form.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%;
  border-radius: 0;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  text-indent: 999999px;
  overflow: hidden;
}

.search-from .search .text {
  display: inline-block;
  border: 0px none;
  background: none;
  width: 80%;
  max-width: 540px;
  padding: 0 20px;
  font-size: 18px;
  height: 60px;
  line-height: 60px;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #f70124;
  color: #fff;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.header-block {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  height: 84px;
}

@media screen and (max-width: 1460px) {
  .header-right {
    margin-left: 30px;
  }
}

@media screen and (max-width: 1345px) {
  html,
  body {
    font-size: 15px !important;
  }
}

@media screen and (max-width: 1240px) {
  .header-right-tel .header-tel {
    display: none;
  }
  .header-right {
    margin-right: 0;
    float: right;
  }
  .header-nav {
    margin-right: 0;
  }
  #home .header-right-tel .header-tel {
    display: none;
  }
}

@media screen and (max-width: 1080px) {
  .header-from,
  .header-lang,
  .header-nav {
    display: none;
  }
  .header {
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 84px;
  }
  .header-block {
    display: block;
    height: 84px;
  }
  .nav-mb {
    top: 84px;
  }
  .header-search-icon {
    margin-right: 5rem;
  }
  .nav-mb,
  .menu-btn {
    display: block;
  }
  .header-right {
    padding-top: 0;
    padding-bottom: 0;
    position: absolute;
    right: 0;
  }
  .header-right-tel {
    margin-top: 1.9rem;
  }
  .header-right-tel .header-link {
    display: none;
  }
}

@media screen and (max-width: 992px) {
  .header-right .header-tel {
    display: none;
  }
  .search-from .search-close-btn {
    font-size: 90px;
    right: 3rem;
  }
}

@media screen and (max-width: 768px) {
  html,
  body {
    font-size: 12px !important;
  }
  .nav-mb {
    top: 70px;
  }
  .header .container {
    position: static;
  }
  .header-block,
  .header,
  .header-top {
    height: 70px;
  }
  .header-right {
    right: 0;
    margin-top: 0;
  }
  .header-right .header-search-icon {
    margin-right: 7.7rem;
  }
  .header-right,
  .header .header-top .header-logo {
    padding-top: 0 !important;
    padding-bottom: 0;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .search-from .search-close-btn {
    font-size: 60px;
    right: 0rem;
    top: 1rem;
  }
  .header-right-tel {
    margin-top: 2.3rem;
  }
  .header-search-icon {
    margin-right: 4rem;
  }
  .header-right-tel {
    display: none;
  }
}

@media screen and (max-width: 640px) {
  html,
  body {
    font-size: 12px;
  }
}

/* ----------------- banner -------------- */
.banner {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  /* 点 */
  /* 左右按钮 */
}

.banner img {
  width: 100%;
}

.banner .container {
  z-index: 999;
  position: absolute;
  height: 100%;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.banner .banner-pagination {
  z-index: 9;
  position: absolute;
  left: 0;
  bottom: 2rem;
  width: 100%;
  text-align: center;
}

.banner .swiper-pagination-bullet {
  display: inline-block;
  margin: 0 0.35rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: rgba(245, 246, 247, 0.6);
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff;
}

@media screen and (max-width: 640px) {
  .banner .swiper-pagination-bullet {
    width: .65rem;
    height: .65rem;
  }
  .banner .banner-pagination {
    bottom: .8rem;
  }
  .owl-carousel .owl-dot {
    width: 8px;
    height: 8px;
  }
}

.product-home {
  position: relative;
  z-index: 2;
  top: -140px;
  width: 70%;
  left: 50%;
  margin-left: -35%;
  height: 744px;
  background: #fff;
  padding: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.product-home .product-con {
  overflow: hidden;
  cursor: pointer;
}

.product-home .product-con .product-main {
  width: 49.5%;
  margin-right: 1%;
  background: #f7f7f7;
  overflow: hidden;
  text-align: center;
  float: left;
  height: 100%;
}

.product-home .product-con .product-main img {
  margin: 80px auto 0;
  display: block;
  max-width: 450px;
  max-height: 293px;
}

.product-home .product-con .product-main h3 {
  font-size: 36px;
  margin-top: 56px;
}

.product-home .product-con .product-main h3 span {
  font-weight: bold;
}

.product-home .product-con .product-main p {
  color: #6d6d6d;
  font-size: 24px;
  margin-top: 14px;
}

.product-home .product-con .product-main .detailbtn {
  width: 100px;
  height: 30px;
  border: 1px solid #8a8a8a;
  border-radius: 50px;
  text-align: center;
  line-height: 30px;
  margin: 50px auto 88px;
}

.product-home .product-con .product-other {
  float: left;
  width: 49.5%;
}

.product-home .product-con .product-other ul a {
  width: 49%;
  float: left;
  background: #f7f7f7;
  height: 327px;
  text-align: center;
}

.product-home .product-con .product-other ul a .img {
  max-width: 240px;
  width: 90%;
  height: 200px;
  margin: 30px auto 0;
}

.product-home .product-con .product-other ul a .img img {
  width: 100%;
}

.product-home .product-con .product-other ul a h4 {
  font-size: .975rem;
  margin-top: 20px;
}

.product-home .product-con .product-other ul a h4 span {
  font-weight: bold;
}

.product-home .product-con .product-other ul a p {
  font-size: 14px;
  color: #6d6d6d;
  margin-top: 14px;
}

.product-home .product-con .product-other ul a.marginR {
  margin-right: 2%;
}

.product-home .product-con .product-other ul a.marginB {
  margin-bottom: 20px;
}

.con:hover {
  -webkit-box-shadow: 5px 5px 5px rgba(200, 200, 200, 0.5);
  box-shadow: 5px 5px 5px rgba(200, 200, 200, 0.5);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform: translate(-2px, -2px);
  transform: translate(-2px, -2px);
}

.software {
  width: 70%;
  background: #fff;
  padding: 20px;
  margin: -100px auto 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}

.software .software-left {
  width: 49%;
  float: left;
  margin-right: 2%;
  position: relative;
}

.software .software-left .imgbg {
  width: 100%;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.software .software-left .software-left:hover {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.software .software-left ul {
  position: absolute;
  top: 0.8854rem;
  left: 10%;
  width: 100%;
}

.software .software-left ul li {
  width: 20%;
  float: left;
  text-align: center;
  cursor: pointer;
  margin-right: 10%;
}

.software .software-left ul li span {
  font-size: 14px;
  color: #fff;
  margin-top: 14px;
  display: inline-block;
}

.software .software-right a {
  display: block;
}

.software .software-right {
  float: left;
  width: 49%;
  cursor: pointer;
}

.software .software-right .software-example {
  margin-bottom: 2%;
}

.software .software-right .software-example img {
  width: 100%;
}

.software .software-right .software-news img {
  width: 100%;
}

.home-video .vjs-poster {
  background-size: cover;
  background-position: top left;
}

.home-video .video-js {
  margin: 0 auto;
  width: 100%;
  height: 1.1979rem;
}

.home-video .video-js .vjs-big-play-button {
  left: 40%;
  top: 33%;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  line-height: 76px;
}

.home-video {
  padding: 20px;
  background: #fff;
  width: 70%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 40px auto;
}

.home-video .video-top {
  margin-bottom: 30px;
}

.home-video .video-top p {
  font-size: 24px;
  color: #010101;
}

.home-video .video-top p span {
  font-size: 16px;
  color: #a90f28;
  line-height: 24px;
  display: inline-block;
  border-bottom: 1px solid #a90f28;
}

.home-video .video-top p a {
  color: #ff6800;
  float: right;
  cursor: pointer;
}

.home-video .video-con {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.home-video .video-con .video-mv {
  width: 32%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.home-video .video-con .video-mv p {
  font-size: 1.125rem;
  color: #999;
  height: 3.125rem;
  line-height: 3.125rem;
  padding-left: 1.25rem;
}

.home-video .video-con .video-mv:hover a p {
  color: #444;
}

.home-video .video-con .video-mv a {
  position: relative;
  display: block;
  float: left;
  width: 100%;
}

.home-video .video-con .video-mv a::after {
  display: block;
  content: "";
  left: 1.25rem;
  width: 60px;
  height: 1px;
  background-color: #888;
  bottom: 0;
  position: absolute;
}

.home-video .video-con .video-mv a figure {
  padding-bottom: 54.054%;
}

.home-video .video-con .video-mv a p {
  position: relative;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/*
new-footer
*/
.new-footer {
  background-color: #f3f3f3;
}

.new-footer .ft-bottom {
  font-size: 13px;
  color: #252b3a;
  opacity: 0.6;
  height: 3.75rem;
  line-height: 3.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.ft-top-wrap {
  overflow: hidden;
  padding-top: 4.563rem;
  padding-bottom: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.ft-top-wrap .ft-l {
  -webkit-box-flex: 70%;
      -ms-flex: 70%;
          flex: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.ft-top-wrap .ft-r {
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-left: 0;
}

.ft-top-wrap .ft-r .ft-r-wrap {
  padding-left: 3.563rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-left: 1px solid rgba(0, 0, 0, 0.15);
}

.ft-list {
  margin-right: 2.9rem;
}

.ft-list h4 {
  margin-bottom: 0.8rem;
  font-size: 1rem;
  font-weight: bold;
  color: #252b3a;
}

.ft-list nav a {
  display: block;
  font-size: 14px;
  color: #252b3a;
  opacity: 0.75;
  line-height: 30px;
}

.ft-list nav a:hover {
  color: #f70124;
}

.ft-r-r .ft-r-logo {
  margin-bottom: 1.688rem;
  width: 11.438rem;
}

.ft-r-r .p1 {
  margin-bottom: 9px;
  color: #252b3a;
}

.ft-r-r .p2 {
  margin-bottom: 9px;
  font-size: 1.5rem;
}

.ft-r-r .p2 i {
  display: inline-block;
  margin-right: 3px;
  width: 16px;
  height: 21px;
  vertical-align: middle;
  background: url("../images/new2/icon_tel.png") no-repeat;
}

.ft-r-r .p3 {
  font-size: 14px;
  color: #252b3a;
  opacity: 0.75;
}

.ft-r-r div {
  margin: 1.625rem 0;
}

.ft-r-r div a {
  display: inline-block;
  margin-top: 9px;
  font-size: 14px;
  color: #252b3a;
  opacity: 0.75;
}

.ft-r-qrcode {
  margin-left: 3.25rem;
  font-size: 13px;
  text-align: center;
  color: #252b3a;
  opacity: 0.75;
}

.ft-r-qrcode img {
  margin-bottom: 10px;
  width: 93px;
}

@media screen and (max-width: 1080px) {
  .ft-top-wrap .ft-l {
    display: none;
  }
  .ft-top-wrap {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 2.563rem;
    padding-bottom: 0.5rem;
  }
  .ft-top-wrap .ft-r {
    margin-left: 0;
  }
  .ft-top-wrap .ft-r .ft-r-wrap {
    border-left: 0;
    padding-left: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .new-footer .ft-bottom {
    padding: 1.5rem 0;
    height: auto;
    line-height: 1.5;
  }
}

.ewm {
  float: left;
  margin-left: 3%;
}

.ewm p {
  font-size: 14px;
  color: #222;
  text-align: center;
  margin-top: 10px;
  font-weight: bold;
}

.call {
  margin-left: 4rem;
  float: right;
}

.call p {
  font-size: 18px;
}

.call p img {
  vertical-align: top;
}

.call h4 {
  font-size: 26px;
  color: #f70124;
  margin-top: 16px;
}

.call .btn1 {
  width: 154px;
  height: 30px;
  background: #222;
  color: #fff;
  line-height: 30px;
  text-align: center;
  font-size: 14px;
  border-radius: 50px;
  margin-top: 14px;
}

.call .btn1 img {
  vertical-align: top;
  margin-top: 7px;
  margin-right: 10px;
}

.call .btn1 a {
  color: #fff;
}

.list-nav-con {
  display: none;
  z-index: 99;
  position: fixed;
  top: 84px;
  left: 0;
  width: 100%;
  background-color: #f6f6f6;
}

.list-nav-con ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.list-nav-con ul li {
  margin-right: 2%;
  margin-bottom: 1%;
  overflow: hidden;
  width: 18%;
  font-size: 14px;
  background-color: #fff;
}

.list-nav-con ul li:hover {
  background-color: #fff;
}

.list-nav-con ul a {
  overflow: hidden;
  display: block;
}

.list-nav-con ul figure {
  margin: 10px auto;
  width: 125px;
  height: 125px;
}

.list-nav-con ul p {
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: center;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.list-nav-con .list-nav-4,
.list-nav-con .list-nav-7 {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.list-nav-con .list-nav-4 li,
.list-nav-con .list-nav-7 li {
  margin-right: 4%;
  width: auto;
  background-color: transparent;
  margin-top: 1%;
}

.list-nav-con .list-nav-4 figure,
.list-nav-con .list-nav-7 figure {
  margin: 0;
  width: 252px;
  height: 149px;
}

.index-news-wrap {
  overflow: hidden;
}

.index-news-wrap a figure {
  padding-bottom: 54.054%;
}

.index-news-wrap a figure img {
  -webkit-transition: all .3s ease !important;
  transition: all .3s ease !important;
}

.index-news-wrap a h4 {
  padding-top: 1.575rem;
  padding-bottom: 1.08rem;
  font-size: 1.063rem;
  line-height: 1.625rem;
  color: #000;
  font-weight: normal;
  -webkit-transition: all .23s ease;
  transition: all .23s ease;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.index-news-wrap a p {
  font-size: 14px;
  line-height: 1.375rem;
  color: #999;
  -webkit-transition: all .23s ease;
  transition: all .23s ease;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.index-news-wrap a span {
  display: block;
  padding-top: 1.2rem;
  font-size: 14px;
  line-height: 1;
  color: #999;
}

.index-news-wrap a:hover h4 {
  color: #f70124;
}

.index-news-wrap a:hover p {
  color: #666;
}

.index-news-wrap .owl-controls {
  margin-top: 2.56rem;
}

@media screen and (max-width: 767px) {
  .index-news-wrap a h4 {
    font-weight: bold;
    padding-top: 0.975rem;
    padding-bottom: 0.88rem;
  }
}

.page-banner {
  position: relative;
  overflow: hidden;
}

.page-banner .container {
  z-index: 2;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
}

.page-banner h4 {
  line-height: 1;
  font-weight: bold;
  font-size: 2.813rem;
  color: #fff;
}

.page-banner img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .page-banner {
    width: 100%;
    margin: 0 auto;
    height: 0;
    overflow: hidden;
    position: relative;
    padding-bottom: 32%;
  }
  .page-banner img {
    position: absolute;
    height: 100%;
    width: auto;
    left: 50%;
    max-width: unset;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .page-banner small,
  .page-banner h4 {
    font-size: 1.6rem;
  }
}

.page-news .index-news-wrap {
  padding: 4.875rem 0 0;
}

.page-news .index-news-wrap li {
  float: left;
  width: 29.5%;
  margin-right: 5.75%;
  margin-bottom: 2.5rem;
}

.page-news .index-news-wrap li:nth-of-type(3n) {
  margin-right: 0;
}

.page-news .index-news-wrap li:hover span {
  color: #333;
}

.page-news .index-news-wrap li:hover p {
  color: #f70124;
}

.page-news .index-news-wrap li p {
  margin-top: .875rem;
  font-size: 1rem;
  height: 1.375rem;
  line-height: 1.6875rem;
  color: #333;
}

.page-news .index-news-wrap figure {
  padding-bottom: 62.154%;
}

@media screen and (max-width: 767px) {
  .page-news .index-news-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .page-news .index-news-wrap li {
    width: 48.5%;
    margin: 2rem 0 0 !important;
  }
  .page-news .index-news-wrap li:nth-of-type(1), .page-news .index-news-wrap li:nth-of-type(2) {
    margin-top: 0 !important;
  }
  .page-news .index-news-wrap li span {
    padding-top: 8px;
    font-size: 13px;
  }
}

.news-ar {
  padding: 3rem 0 4rem;
}

.article-title {
  text-align: center;
  font-weight: normal;
  padding: 0 0 18px;
  font-size: 1.5rem;
  line-height: 1.6;
  color: #333333;
}

.title-line {
  border-bottom: 1px solid #e5e5e5;
}

.article-info {
  padding-top: 0;
  text-align: center;
  padding-bottom: 20px;
  font-size: 14px;
  line-height: 1;
  color: #959595;
}

.article-info span:first-child {
  margin-left: 0;
}

.article-info span {
  margin-left: 18px;
}

.article-content {
  padding: 25px 0 40px;
}

.article-content img {
  padding: 15px 0;
  max-width: 100%;
  width: 100%;
  height: auto;
}

.article-content p {
  font-size: 15px;
  font-weight: normal;
  text-indent: 2em;
  line-height: 32px;
  color: #333333;
}

.article-content video {
  padding: 15px 0;
  max-width: 100%;
  width: 100% !important;
  height: auto !important;
  border: 0;
  outline: none;
}

/* 新闻底部 */
.news-paging {
  border-top: 1px solid #dcdcdc;
  position: relative;
  padding-top: 27px;
}

.news-paging > p {
  width: 80%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.news-paging > p,
.news-paging > p > a {
  line-height: 1.6;
  font-size: 14px;
  color: #999;
}

.news-paging a:hover {
  color: #f70124;
}

.news-paging > p:first-child {
  padding-bottom: 10px;
}

.news-back {
  position: absolute;
  top: 45px;
  right: 0;
  font-size: 0.938rem;
  color: #999999;
}

@media screen and (max-width: 640px) {
  .article-title {
    font-size: 20px;
  }
  .article-content {
    padding-top: 10px;
  }
  .news-paging {
    margin-bottom: 1rem;
  }
  .news-paging > p {
    width: 100%;
    overflow: visible;
    white-space: normal;
    text-overflow: unset;
  }
  .news-share {
    position: static;
    margin-top: 15px;
  }
}

.page-title {
  margin-top: 3rem;
  text-align: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid #c9c9c9;
}

.page-title h4 {
  padding-bottom: 2.25rem;
  font-size: 2.125rem;
}

.article-text,
.article-text p {
  font-size: 1rem;
  text-indent: 2em;
  line-height: 2rem;
  color: #333333;
}

.article-text img {
  margin: 0 auto;
  display: block;
  max-width: 100%;
}

.page-pb {
  padding-bottom: 4rem;
}

.page-pt {
  padding-top: 4rem;
}

.case-list li {
  float: left;
  width: 31.6667%;
  margin-right: 2.46667%;
  margin-bottom: 2.4rem;
}

.case-list li:nth-child(3n) {
  margin-right: 0;
}

.case-list li a:hover .icon-link {
  -webkit-transform: translate(-50%, -50%) scale(1) rotate(0);
          transform: translate(-50%, -50%) scale(1) rotate(0);
  opacity: 1;
}

.case-list li a:hover h4 {
  color: #f70124;
}

.case-list li a:hover p {
  color: #666;
}

.case-list li figure {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-bottom: 100%;
  border: 1px solid #dcdcdc;
}

.case-list li figure .icon-link {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0) rotate(-90deg);
          transform: translate(-50%, -50%) scale(0) rotate(-90deg);
  width: 3.267rem;
  height: 3.267rem;
  background-color: rgba(0, 0, 0, 0.6);
  background-image: url("../images/icon_link.png");
  background-repeat: no-repeat;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.case-list h4 {
  margin-top: 1.5rem;
  margin-bottom: .5rem;
  font-weight: bold;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.case-list p {
  font-size: 14px;
  line-height: 22px;
  color: #888888;
}

@media screen and (max-width: 767px) {
  .case-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .case-list li {
    width: 48.5%;
    margin-right: 0 !important;
  }
}

.page-content {
  width: 77.66666667%;
  float: right;
}

.page-aside {
  float: left;
  width: 18.334%;
  background-color: #fff;
}

.page-aside h4 {
  font-size: 20px;
  line-height: 1;
  color: #f70124;
  font-weight: bold;
  padding-bottom: 12px;
  padding-left: 12px;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 15px;
}

.page-aside .page-aside-nav > li {
  margin-bottom: 4px;
  position: relative;
}

.page-aside .page-aside-nav > li:hover, .page-aside .page-aside-nav > li.on {
  display: block;
}

.page-aside .page-aside-nav > li.on > a,
.page-aside .page-aside-nav > li > a:hover {
  color: #fff;
  background-color: #f70124;
}

.page-aside .page-aside-nav > li.on > a i,
.page-aside .page-aside-nav > li > a:hover i {
  background: url(../images/icon_page_nav_hover.png) no-repeat;
}

.page-aside .page-aside-nav > li a {
  display: block;
  padding-left: 22px;
  line-height: 53px;
  color: #535353;
  background-color: #e6e6e6;
  font-size: 16px;
}

.page-aside .page-aside-nav > li a i {
  z-index: 2;
  top: 20px;
  right: 14px;
  position: absolute;
  display: block;
  width: 6px;
  height: 10px;
  background: url(../images/icon_page_nav.png) no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.page-aside .page-aside-nav ul {
  border-top: 4px solid #fff;
  display: none;
}

.page-aside .page-aside-nav ul > li.on > a,
.page-aside .page-aside-nav ul > li:hover > a {
  color: #f70124;
}

.page-aside .page-aside-nav ul > li > a {
  padding-left: 40px;
  position: relative;
}

.page-aside .page-aside-nav ul > li > a:after {
  content: "";
  top: 50%;
  margin-top: -2px;
  left: 22px;
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: #f70124;
  display: block;
}

@media screen and (max-width: 992px) {
  .page-aside {
    position: relative;
    width: 100%;
    float: none;
    margin-bottom: 25px;
  }
  .page-aside .page-aside-nav {
    z-index: 99;
    position: absolute;
    top: 75px;
    left: 0;
    display: none;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background-color: #fff;
  }
  .page-aside nav {
    padding: 20px 18px;
    background-color: #efefef;
  }
  .page-aside h4 {
    position: relative;
    padding-left: 0;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
  }
  .page-aside h4::after {
    position: absolute;
    right: 0;
    font-weight: lighter;
    content: "+";
    font-size: 40px;
    color: #f70124;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    margin-top: -10px;
    /* height: 30px; */
    font-family: "Arial";
    -webkit-transition: all .23s ease;
    transition: all .23s ease;
  }
  .page-aside h4.on::after {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .page-content {
    width: 100%;
  }
  .pt356 {
    padding-top: 3.25rem;
  }
}

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

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

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

.product_detail {
  padding: 5px;
}

.product_detail h1.title {
  text-align: center;
  line-height: 30px;
  font-size: 1.25rem;
  font-family: "Microsoft YaHei";
  border-bottom: 1px solid #e0e1dc;
  margin-bottom: 15px;
  padding-bottom: 5px;
}

.product_detail .img {
  width: 290px;
  height: 290px;
  float: left;
  padding: 2px;
  border: 1px solid #e0e1dc;
}

.product_detail .small {
  width: 290px;
  height: 290px;
}

.jqzoom {
  text-decoration: none;
  float: left;
}

.product_detail .list {
  width: calc(100% - 350px);
  float: left;
  margin-left: 30px;
  display: block;
  padding-top: 8px;
}

.list_p li {
  line-height: 32px;
  font-size: 15px;
  border-bottom: 1px dashed #e0e1dc;
  padding-bottom: 5px;
  padding-top: 5px;
  font-family: "Microsoft YaHei";
}

.list_p li h2 {
  font-size: 15px;
  font-weight: normal;
  font-family: "Microsoft YaHei";
}

.product_detail .inquiry {
  line-height: 32px;
  border: none;
  margin-top: 6px;
}

.product_detail .inquiry a {
  background: url("../images/xunjia.gif") center center no-repeat;
  display: block;
  width: 112px;
  height: 32px;
  text-indent: -99999px;
}

.buy {
  border: none !important;
}

.buy a {
  background: #0057a8;
  display: block;
  width: 112px;
  height: 32px;
  float: left;
  color: #fff;
  text-align: center;
  line-height: 32px;
  border-radius: 5px;
  margin-right: 10px;
}

.buy a:hover {
  background: #e87518;
}

.buy a.nobuy-product {
  background: #666;
}

.product_detail .inquiry a:hover {
  background-image: url("../images/xunjia_hover.gif");
}

.list_p li h2 a {
  font-size: 12px;
  font-family: "Microsoft YaHei";
}

.p_detail span.title {
  line-height: 28px;
  height: 28px;
  text-align: left;
  margin-top: 10px;
  display: block;
  padding-left: 10px;
  font-size: 12px;
}

.product-tab {
  border-bottom: 1px solid #ddd;
  margin-top: 15px;
}

.product-tab li {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: block;
  width: 100px;
  text-align: center;
  line-height: 40px;
  font-size: 14px;
  color: #000;
  cursor: pointer;
  margin-left: -1px;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  z-index: 1;
  margin-bottom: -1px;
  float: left;
}

.product-tab li.cur {
  border-top: 2px solid #3480ce;
  border-bottom: 1px solid #FFF;
  color: #3480ce;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  z-index: 3;
}

.p_detail span.title strong {
  padding-right: 20px;
  cursor: pointer;
}

.p_detail p.dd {
  padding-top: 5px;
  padding-bottom: 5px;
}

h3.tag {
  line-height: 32px;
  border-top: 1px dashed #e0e1dc;
  margin-top: 10px;
  color: #999;
  font-weight: normal;
}

h3.tag a {
  color: #005a98;
}

h3.tag a:hover {
  color: #e87518;
}

.page {
  line-height: 26px;
  border-top: 1px dashed #e0e1dc;
  margin-top: 6px;
  padding-top: 5px;
  font-size: 12px;
}

.page a {
  color: #005a98;
}

.page a:hover {
  color: #e87518;
}

.page span {
  color: #005a98;
}

.download-list {
  padding: 10px;
  overflow: hidden;
  line-height: 20px;
}

.download-list li {
  min-height: 40px;
  position: relative;
  margin-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f0f0f0;
  padding-left: 40px;
}

.download-list li .iconfont {
  font-size: 30px;
  position: absolute;
  left: 0;
  top: 15px;
}

@media screen and (max-width: 767px) {
  .software,
  .product-home {
    top: 0;
    margin-top: 2rem;
    width: 95%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-left: 0;
    margin-right: 0;
    left: 0;
    height: auto;
  }
  .software .software-right {
    width: 100%;
  }
  .software .software-left,
  .product-home .product-con .product-main {
    width: 100%;
    margin-bottom: 10px;
  }
  .product-home .product-con .product-main img {
    width: 100%;
    margin-top: 20px;
  }
  .product-home .product-con .product-main h3 {
    font-size: 2rem;
    margin-top: 2rem;
  }
  .product-home .product-con .product-main p {
    font-size: 1.4rem;
  }
  .product-home .product-con .product-main .detailbtn {
    margin: 20px auto 40px;
  }
  .product-home .product-con .product-other ul a {
    margin-bottom: 10px;
  }
  .home-video,
  .product-home .product-con .product-other ul a,
  .product-home .product-con .product-other {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .product-home .product-con .product-other ul a h4 {
    font-size: 16px;
    margin-top: 0;
  }
  .product-home .product-con .product-other ul a.marginB {
    margin-bottom: 10px;
  }
  .home-video .video-con .video-mv {
    width: 100%;
    float: none;
    margin-bottom: 20px;
  }
  .home-video .video-con {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .home-video .video-top p a {
    font-size: 16px;
  }
  .ft-top-wrap .ft-r {
    width: 100%;
  }
  .home-video {
    margin-bottom: 0;
  }
  .call h4 {
    font-size: 18px;
  }
  .ft-top-wrap .ft-r {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .call {
    margin-left: 10%;
  }
  .ft-top-wrap {
    margin-bottom: 24px;
  }
  .header {
    border-top-width: 2px;
  }
  .product_detail .list {
    clear: both;
    width: 100%;
    margin-left: 0;
  }
}

.contact p {
  text-indent: 0em;
}

.contact-list {
  margin: 2.25rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.contact-list img {
  width: 100%;
}

.contact-list a:hover p {
  color: #f70124;
}

.contact-list li {
  margin-right: 1.77%;
  margin-bottom: 1.77%;
  width: 23.6667%;
}

.contact-list li:nth-child(4n) {
  margin-right: 0;
}

.contact-list li figure {
  padding-bottom: 62%;
}

.contact-list li p {
  padding: .8rem;
  text-align: center;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .contact-list li {
    width: 100%;
  }
}
