@charset "UTF-8";

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

.ovh {
  overflow: hidden;
}

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

body {
  margin: 0;
  overflow-x: hidden;
}

.w100 {
  width: 100%;
}

main {
  display: block;
}

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

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

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

a {
  background-color: transparent;
}

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

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

b,
strong {
  font-weight: bolder;
}

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

small {
  font-size: 80%;
}

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

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

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

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

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

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

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

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

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

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

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

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

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

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

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

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

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

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

li {
  list-style-type: none;
}

a {
  color: #434343;
  text-decoration: none;
  transition: color, background .2s;
}

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;
}
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

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

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

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

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

@-webkit-keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

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

@-webkit-keyframes flash {

  0%,
  50%,
  100% {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

@keyframes flash {

  0%,
  50%,
  100% {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

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

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

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

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

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

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

@-webkit-keyframes shake {

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

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}

@keyframes shake {

  0%,
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
}

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

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

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

@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

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

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

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

  10%,
  20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

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

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

  10%,
  20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    -ms-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    -ms-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    -ms-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

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

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    -ms-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    -ms-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    -ms-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    -ms-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    -ms-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
}

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

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

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

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

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

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

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

  70% {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
  }

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

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

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

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

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

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

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

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

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

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

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

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

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

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

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

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

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

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

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

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

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

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

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

  25% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }

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

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

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

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

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

  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3);
  }
}

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

@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

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

@keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

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

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

@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

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

@keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

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

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

@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

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

@keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

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

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

@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

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

@keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

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

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

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

  100% {
    opacity: 1;
  }
}

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

  100% {
    opacity: 1;
  }
}

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

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

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

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

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

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

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

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

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

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

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

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

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

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

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

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

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

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

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

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

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

  100% {
    opacity: 0;
  }
}

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

  100% {
    opacity: 0;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

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

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

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }

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

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

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    -ms-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    -ms-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }

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

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

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

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

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

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

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    -ms-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    -ms-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

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

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

  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    -ms-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    -ms-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

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

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

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

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

  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

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

  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

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

  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

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

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

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

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

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

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

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

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

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

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

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

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

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

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

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

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

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

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

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

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

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

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

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

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

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

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

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

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

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

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

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

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

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

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

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

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

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

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

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

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

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

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

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

@-webkit-keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  100% {
    -webkit-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    -webkit-transform: rotate(80deg);
    -ms-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40% {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    -ms-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  100% {
    -webkit-transform: translateY(700px);
    -ms-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

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

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

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

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

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

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

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    -ms-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

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

/*www.jq22.com*/
@font-face {
  font-family: "zkwyt";
  src: url("../fonts/zkwyt.woff2") format("woff2"), url("../fonts/zkwyt.woff") format("woff"), url("../fonts/zkwyt.ttf") format("truetype"), url("../fonts/zkwyt.eot") format("embedded-opentype"), url("../fonts/zkwyt.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* 
 * 	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: transparent;
  /* 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;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-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;
  -khtml-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;
  transition-property: scale;
  transition-duration: 100ms;
  transition-timing-function: ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -moz-transform: scale(1.3, 1.3);
  -ms-transform: scale(1.3, 1.3);
  -o-transform: scale(1.3, 1.3);
  -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;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  transition-property: opacity;
  transition-duration: 400ms;
  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: transparent;
  -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;
  transition-property: opacity;
  transition-duration: 400ms;
  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;
  }
}

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

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

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

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

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

.paging li a {
  display: inline-block;
  color: #000;
  background: #dcdcdc;
  width: 34px;
  height: 34px;
  line-height: 34px;
  margin-right: 8px;
  font-size: 16px;
  vertical-align: middle;
  border-radius: 50%;
  transition: all .5s;
}

.paging li.thisclass a,
.paging li:hover a {
  background: #00a0e9;
  color: #fff;
}

.pageinfo {
  letter-spacing: 1px;
}

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

.paging li.i a,
.paging li a.i,
.paging li.n a,
.paging li a.e,
.paging li.p a,
.paging li.e a {
  text-indent: -9999px;
}

.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.p a {
  background: url(../images/new/icon_pa_left.png) center no-repeat;
}

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

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

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

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

.paging li.p:hover a {
  background: url(../images/new/icon_pa_left_hover.png) center no-repeat;
}

.paging li.n:hover a {
  background: url(../images/new/icon_pa_right_hover.png) center no-repeat;
}

@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;
  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;
  box-shadow: 0 2px 10px #aaa;
  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;
}

/*------------- default ----------*/
body {
  font: 16px "微软雅黑", Arial;
  color: #434343;
  background-color: #fff;
}

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

/*------------ index -------------*/
.header-block {
  height: 80px;
}

.header {
  z-index: 999999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: rgba(0, 0, 0, 0.75);
}

.header .container {
  height: inherit;
}

.header .header-logo img {
  width: 100%;
}

.header .header-logo {
  padding-top: 11px;
  width: 180px;
}

.header .hd-container {
  width: 85%;
  max-width: unset;
}

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

.menu-btn span {
  position: relative;
  margin-top: 15px;
  width: 34px;
  height: 3px;
  display: inline-block;
  background: #fff;
}

.menu-btn i {
  position: absolute;
  left: 0;
  width: 34px;
  height: 3px;
  display: block;
  background: #fff;
  transition-duration: .3s, .3s;
  -webkit-transition-duration: .3s, .3s;
  transition-delay: .3s, 0s;
  -webkit-transition-delay: .3s, 0s;
}

.menu-btn i.menu-btn-top {
  top: -12px;
  transition-property: top, transform;
  -webkit-transition-property: top, transform;
}

.menu-btn i.menu-btn-bottom {
  bottom: -12px;
  transition-property: bottom, 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: #fff;
  transition-delay: 0s, .3s;
  -webkit-transition-delay: 0s, .3s;
}

.nav-mb {
  z-index: 9999;
  position: absolute;
  width: 100%;
  overflow: hidden;
  top: 80px;
  left: 0;
  background: #fff;
  box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.05);
}

.nav-mb ul {
  width: 90%;
  display: none;
  padding: 20px 5%;
  height: calc(100vh - 100px);
  overflow-y: scroll;
  border-top: 1px solid #eee;
}

.nav-mb a {
  padding: 0 20px;
  display: block;
  line-height: 40px;
  border-bottom: 1px solid #eee;
  position: relative;
  color: #434343;
}

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

.nav-mb a.has-childnav:after {
  display: block;
  position: absolute;
  top: 0;
  right: 4%;
  font-size: 22px;
  content: "+";
  transition: all .2s;
}

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

.nav-mb ol {
  display: none;
  background-color: #434343;
}

.nav-mb ol ol {
  background-color: #0086ca;
}

.nav-mb ol a {
  color: rgba(255, 255, 255, 0.6);
}

.nav-mb img {
  margin-right: 10px;
}

.header-nav {
  margin-right: -26px;
}

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

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

.header-nav ul>li:first-child:after {
  display: none;
}

.header-nav ul>li:after {
  content: ' ';
  position: absolute;
  width: 3px;
  height: 3px;
  background: #fff;
  border-radius: 50%;
  left: 0;
  top: 50%;
}

.header-nav ul li a {
  display: block;
  height: 80px;
  line-height: 80px;
  font-size: 16px;
  color: #fff;
}

.header-nav ul li a p {
  height: 17px;
  transition: all .2s;
}

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

.header-nav ul li.on>a span,
.header-nav ul li>a:hover span {
  font-weight: normal;
}

.header-nav ul li:hover>ol {
  z-index: 999;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-nav ol {
  position: absolute;
  top: 60px;
  left: 50%;
  margin-left: -65px;
  width: 130px;
  transform: translateY(10%);
  opacity: 0;
  visibility: hidden;
  transition: all .2s;
}

.header-nav ol li a {
  background: #d4d4d3;
  padding: 19px 0;
  padding: 18.8px 0;
  font-size: 14px;
  height: auto;
  line-height: 1;
  color: #333;
}

.header-nav ol li.on a,
.header-nav ol li a:hover {
  background-color: #00a0e9;
  color: #fff;
}

.header-nav .big-menu ol ol {
  position: absolute;
  top: 0;
  left: 190px;
  margin-left: 0;
  /* width: 260px; */
  width: 260px;
  opacity: 0;
  visibility: hidden;
  background-color: #e6e7e9;
  transition: all .23s ease;
}

.header-nav .big-menu ol ol li {
  position: relative;
}

.header-nav .big-menu ol ol ol {
  position: absolute;
  top: 0;
  left: 190px;
  margin-left: 0;
  width: 260px;
  opacity: 0;
  visibility: hidden;
  background-color: #e6e7e9;
  transition: all .23s ease;
}

.header-nav .big-menu>ol>ol>li:hover>ol {
  opacity: 1;
  visibility: visible;
}

.header-nav .big-menu>ol>li:hover>a::after {
  background: url(../images/new/a.png) no-repeat;
  background-size: cover;
}

.header-nav .big-menu>ol li:hover img {
  filter: invert(0);
}

.header-nav .big-menu>ol li:hover>ol {
  opacity: 1;
  visibility: visible;
}

.header-nav .big-menu ol>li:hover>a,
.header-nav .big-menu>ol>li>li:hover>a {
  background-color: #00a0e9;
  color: #fff;
}

.header-nav .big-menu>ol>li li>a {
  text-align: left;
  padding: 18px;
  background-color: #e6e7e8;
}

.header-nav .big-menu>ol>li>a::after {
  content: "";
  top: 50%;
  display: block;
  position: absolute;
  width: 6px;
  height: 14px;
  background: url(../images/new/b.png) no-repeat;
  background-size: cover;
  margin-top: -7px;
  right: 17px;
  transition: all .23s ease;
}

.header-nav .big-menu.pro-menu>ol>li>a {
  padding: 18px;
}

.header-nav .big-menu>ol>li>a {
  text-align: left;
  padding-left: 17px;
}

.header-nav .big-menu>ol>li {
  width: 100%;
  position: relative;
}

.header-nav .big-menu>ol img {
  vertical-align: middle;
  margin-right: 11px;
  filter: invert(60%);
  transition: all .23s ease;
}

.header-nav .big-menu>ol {
  margin-left: -95px;
  width: 190px;
  background-color: #d3d3d3;
}

.index-video {
  position: relative;
}

.index-video:before {
  z-index: 9;
  position: absolute;
  content: "";
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 60px;
  height: 60px;
  background: url(../images/play.svg) center no-repeat/100% 100%;
}

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

.video-wrap.show {
  opacity: 1;
  visibility: visible;
}

.video-bg {
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}

.video-wrap video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  z-index: 9;
  outline: none;
  width: 65%;
  max-width: 100%;
}

@media screen and (max-width: 1441px) {
  .header-nav .big-menu ol ol ol {
    left: -260px;
  }
}

@media screen and (max-width: 780px) {
  .video-wrap video {
    width: 100%;
  }
}

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

.index-banner {
  position: relative;
  overflow: hidden;
  height: 0;
  width: 100%;
  padding-bottom: 36.45%;
}

.index-banner img {
  z-index: -1;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}

.index-banner figcaption {
  z-index: 9;
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  color: #ffffff;
  text-align: center;
}

.index-banner figcaption h2 {
  font-size: 48px;
  font-weight: lighter;
  /* font-family: "zkwyt"; */
  font-family: "MicrosoftYaHei";
}

.index-banner figcaption small {
  font-size: 18px;
  font-family: "MicrosoftYaHei";
  font-weight: lighter;
}

.index-banner .video-btn {
  display: block;
  width: 167px;
  height: 54px;
  margin: 0 auto;
  margin-top: 3.5%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  line-height: 54px;
  font-size: 14px;
  cursor: pointer;
  position: relative;
  letter-spacing: 3px;
  font-weight: 600;
  color: #fff;
}

.index-banner .video-btn:hover {
  background: #ffffff;
  color: #000000;
  -webkit-transition: all 1s 0.3s;
}

.index-banner video {
  width: 100%;
}

.video-btn span {
  position: absolute;
  background: #ffffff;
}


.video-btn span:nth-child(1),
.honor-item div:nth-child(1) {
  top: -2px;
  left: 0;
  height: 2px;
  width: 0;
}

.video-btn span:nth-child(2),
.honor-item div:nth-child(2) {
  top: 0;
  right: -2px;
  height: 0;
  width: 2px;
}

.video-btn span:nth-child(3),
.honor-item div:nth-child(3) {
  bottom: -2px;
  right: 0;
  height: 2px;
  width: 0;
}

.video-btn span:nth-child(4),
.honor-item div:nth-child(4) {
  bottom: 0;
  left: -2px;
  height: 0;
  width: 2px;
}

.honor-item em {
  font-style: normal;
}

.video-btn:hover span:nth-child(1),
.honor-item:hover div:nth-child(1) {
  width: 100%;
  -webkit-transition: all 0.1s linear;
}

.video-btn:hover span:nth-child(2),
.honor-item:hover div:nth-child(2) {
  height: 100%;
  -webkit-transition: all 0.1s 0.1s linear;
}

.video-btn:hover span:nth-child(3),
.honor-item:hover div:nth-child(3) {
  width: 100%;
  -webkit-transition: all 0.1s 0.2s linear;
}

.video-btn:hover span:nth-child(4),
.honor-item:hover div:nth-child(4) {
  height: 100%;
  -webkit-transition: all 0.1s 0.3s linear;
}

.honor-item:hover:after {
  opacity: 1;
  -webkit-transition: all 0.1s 0.2s linear;
}

.index-about {
  padding: 45px 0;
  overflow: hidden;
}

.index-about img {
  padding-left: 14%;
  padding-right: 3%;
  margin-right: 3.666%;
  width: 6.6667%;
  float: left;
  border-right: 1px solid rgba(0, 0, 0, 0.15);
}

.index-about .index-about-article {
  float: left;
  width: 61%;
  font-size: 14px;
  line-height: 28px;
}

.view-more {
  display: block;
  margin: 30px auto 0;
  width: 145px;
  height: 50px;
  text-align: center;
  border: 1px solid #000;
  font-family: "Arial";
  font-size: 14px;
  line-height: 50px;
  color: #434343;
}

.view-more:hover {
  background-color: #434343;
  color: #fff;
}

.index-item {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* height: 0; */
  /* padding-bottom: 33%; */
  /* padding-bottom: 22.9166667%; */
}

.index-item .item-list.item-three li {
  width: 33.333334%;
}

.index-item .item-list.item-three li img {
  /* width: auto;
  max-width: none;
  max-width: unset; */
  width: 100%;
}

/* .index-item .item-list.item-three li:hover {
  width: 61%;
} */

/* .index-item .item-list.item-three li:first-child:hover {
  width: 61% !important;
}

.index-item .item-list.item-three li:first-child:hover + li {
  left: 46% !important;
  width: 19.5% !important;
}

.index-item .item-list.item-three li:first-child:hover + li + li {
  left: 80.5% !important;
  width: 19.5%;
} */

/* .index-item .item-list.item-three li:first-child + li {
  left: 33.333334%;
}

.index-item .item-list.item-three li:first-child + li i {
  background-image: url(../images/icon_pptg.png);
} */

/* .index-item .item-list.item-three li:first-child + li:hover {
  left: 34.5% !important;
  width: 61% !important;
}

.index-item .item-list.item-three li:first-child + li:hover + li {
  width: 19.5%;
  left: 80.5% !important;
} */

/* .index-item .item-list.item-three li:first-child + li + li {
  left: 66.6666667%;
} */

/* .index-item .item-list.item-three li:first-child + li + li i {
  background-image: url(../images/icon_ys.png);
} */

/* .index-item .item-list.item-three li:first-child + li + li:hover {
  left: 54% !important;
  width: 61% !important;
} */

/* .index-item .item-list.item-two li {
  width: 50%;
} */

/* .index-item .item-list.item-two li i {
  background-image: url(../images/icon_pptg_1.png);
} */

/* .index-item .item-list.item-two li img {
  width: auto;
  max-width: none;
  max-width: unset;
} */

/* .index-item .item-list.item-two li:hover {
  width: 61%;
}

.index-item .item-list.item-two li:hover figcaption {
  left: 50%;
} */

/* .index-item .item-list.item-two li:first-child:hover + li {
  left: 61% !important;
  width: 39% !important;
} */

.index-item .item-list.item-two li:first-child+li {
  left: 50%;
}

.index-item .item-list.item-two li:first-child+li i {
  background-image: url(../images/icon_pptg_2.png);
}

/* 
.index-item .item-list.item-two li:first-child + li:hover {
  left: 39%;
  width: 61%;
} */

.index-item .item-list li {
  /* position: absolute; */
  float: left;
  top: 0;
  left: 0;
  transition: all .3s;
}

/* .index-item .item-list li:hover i {
  opacity: 1;
  transform: rotate(0);
} */

.index-item .item-list li a {
  position: relative;
  display: block;
}

/* .index-item .item-list li i {
  opacity: 0;
  transform: rotate(-300deg);
  display: inline-block;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: url(../images/icon_spys.png) center no-repeat;
  transition: all .6s ease-in-out;
} */

.index-item .item-list li figcaption {
  position: absolute;
  top: 50%;
  left: 46.875%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.index-item .item-list li p {
  padding: 20px 0 5%;
  font-size: 26px;
  color: #fff;
}

.index-item .item-list li span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.3);
}

.index-honor {
  overflow: hidden;
  padding: 40px 0;
}

.index-honor .honor-item {
  float: left;
  width: 25%;
  height: 250px;
  text-align: center;
  position: relative;
  cursor: pointer;
}

.index-honor .honor-item:hover span {
  -webkit-transform: translate(0, -10px);
  opacity: 0;
}

.index-honor .honor-item:hover .honor-more {
  opacity: 1;
  -webkit-transform: translate(0, 10px);
}

.index-honor h4 {
  font-size: 65px;
  width: 100%;
  margin-top: 43px;
  display: inline-block;
  color: #434343;
}

.index-honor span {
  display: block;
  font-size: 18px;
  transition: all .3s;
}

.index-honor p {
  overflow: hidden;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 30px;
  transition: all 0.5s;
}

.index-honor .honor-more {
  display: block;
  margin-top: 20%;
  position: absolute;
  width: 156px;
  height: 48px;
  border: 1px solid #000000;
  bottom: 15%;
  left: 0;
  right: 0;
  margin: auto;
  color: #000000;
  line-height: 48px;
  font-size: 13px;
  opacity: 0;
  -webkit-transition: all 0.5s;
  -webkit-transform: translate(0, 30px);
  letter-spacing: 1px;
  font-weight: 600;
}

.index-honor .honor-more:hover {
  background-color: #000;
  color: #fff;
}

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

.index-news-list li {
  float: left;
  width: 33.3334%;
  overflow: hidden;
  position: relative;
}

.index-news-list li a:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: rgba(0, 0, 0, 0.65);
}

.index-news-list li:hover figcaption {
  opacity: 1;
}

.index-news-list li:hover a:after {
  opacity: 1;
}

.index-news-list li:hover .icon-more {
  opacity: 1;
}

.index-news-list li:hover img {
  transform: scale(1.05, 1.05);
}

.index-news-list li img {
  width: 100%;
  transition: all 0.5s;
}

.index-news-list li figcaption {
  z-index: 9;
  position: absolute;
  width: 100%;
  bottom: 10%;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s;
}

.index-news-list li figcaption h4 {
  font-size: 22px;
  padding: 0 35px;
  color: #fff;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all .3s ease;
}

.index-news-list li figcaption p {
  font-size: 14px;
  color: #fff;
  padding: 10px 35px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all .3s ease;
}

.index-news-list li figcaption span {
  font-size: 13px;
  color: #fff;
  padding: 0 35px;
  transition: all .3s ease;
}

.index-news-list li .icon-more {
  z-index: 10;
  opacity: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -31px;
  margin-left: -31px;
  width: 62px;
  height: 62px;
  transition: all .5s;
}

.title-style h4 {
  font-size: 34px;
  font-weight: bold;
  color: #000;
  text-align: center;
}

.index-case .title-style {
  padding: 30px 0 30px;
}

.index-case-wrap video {
  outline: none;
  border: 0;
  width: 100%;
  object-fit: cover;
}

.footer {
  position: relative;
  padding: 65px 0 0 0;
  /* margin-top: 160px; */
  color: rgba(255, 255, 255, 0.45);
  background-color: #1b1b1b;
}

.footer .ft-t {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  width: 92%;
  border-bottom: 3px solid #02909e;
  max-width: 1200px;
  box-shadow: 0px 10px 20px 0px rgba(49, 49, 49, 0.2);
}

.footer .ft-t li {
  width: 33.33334%;
  height: 100px;
  line-height: 100px;
  float: left;
  text-align: center;
  vertical-align: middle;
}

.footer .ft-t li:first-child+li i {
  background: url(../images/QQ.png) center no-repeat;
}

.footer .ft-t li:first-child+li+li i {
  background: url(../images/tel.png) center no-repeat;
}

.footer .ft-t li:first-child+li {
  position: relative;
}

.footer .ft-t li:first-child+li:after,
.footer .ft-t li:first-child+li:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -22px;
  width: 1px;
  height: 43px;
  background-color: rgba(0, 0, 0, 0.15);
}

.footer .ft-t li:first-child+li:after {
  left: auto;
  right: 0;
}

.footer .ft-t li a {
  color: #080102;
}

.footer .ft-t li .tel {
  padding-left: 8px;
}

.footer .ft-t li p {
  display: inline-block;
  font-size: 16px;
  vertical-align: middle;
}

.footer .ft-t li span {
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
  color: #13b5b1;
  vertical-align: top;
}

.footer .ft-t li i {
  margin-right: 3px;
  display: inline-block;
  vertical-align: middle;
  width: 26px;
  height: 26px;
  background: url(../images/wexin.png) center no-repeat;
}

.footer .ft-l {
  float: left;
}

.footer .ft-l h4 {
  font-size: 26px;
  color: #fff;
  padding-bottom: 20px;
}

.footer .ft-l p {
  font-size: 13px;
  line-height: 22px;
}

.footer .ft-m {
  float: left;
  margin-top: 52px;
  margin-left: 10%;
  font-size: 13px;
}

.footer .ft-m div {
  padding-bottom: 13px;
}

.footer .ft-m h4 {
  float: left;
  font-weight: normal;
  color: #fff;
  padding-right: 16px;
}

.footer .ft-r {
  float: right;
  overflow: hidden;
  text-align: center;
}

.footer .ft-r div {
  float: left;
  margin-left: 28px;
}

.footer .ft-r div:first-child {
  margin-left: 0;
}

.footer .ft-r p {
  padding-top: 9px;
  font-size: 13px;
}

.footer .ft-b {
  margin-top: 50px;
  border-top: 1px solid #535353;
  padding: 17px 0 26px;
  width: 100%;
  text-align: center;
  font-size: 13px;
}

.footer .sirui {
  margin-left: 14px;
  display: inline-block;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.footer .sirui:hover {
  color: #fff;
}

.page-title {
  padding-top: 4.6875rem;
  padding-bottom: 4.375rem;
}

.page-title.white h4 {
  color: #fff;
}

.page-title h4 {
  font-size: 2rem;
  color: #333;
  text-align: center;
  line-height: 1;
}

/* 
.page-title hr {
  margin: 24px auto 0;
  width: 74px;
  height: 1px;
  background-color: #000000;
  border: 0;
  display: none;
}

.tab-ol {
  overflow: hidden;
  margin: 0 auto;
  max-width: 637px;
  padding: 40px 0;
  width: 88%;
  height: 70px;
  display: flex;
  justify-content: space-between;
}

.tab-ol li {
  float: left;
  width: 31.4%;
  line-height: 70px;
  height: 70px;
  text-align: center;
  border: 1px solid #f5f5f5;
  border-radius: 5px;
  box-sizing: border-box;
  transition: background-color,color .2s;
}

.tab-ol li:first-child + li {
  margin: 0 1.8%;
}

.tab-ol li:hover, .tab-ol li.on {
  border: 1px solid #13b5b1;
}

.tab-ol li:hover a, .tab-ol li.on a {
  color: #13b5b1;
}

.tab-ol li a {
  display: block;
  font-size: 18px;
  color: #434343;
}

.tab-ol-line {
  border: 0;
  height: 2px;
  margin: 0;
  overflow: hidden;
  width: 100%;
  background: #000;
} */

.page-news .news-list {
  width: 100%;
}

.page-news .news-list li {
  float: left;
  width: 24.21%;
  margin: 0 .36% 44px;
  transition: all .2s ease-in-out;
}

.page-news .news-list a {
  display: block;
  color: #434343;
  border-bottom: 1px solid transparent;
  transition: border .2s;
}

.page-news .news-list li span {
  display: block;
  width: 100%;
  text-align: center;
  position: relative;
}

.page-news .news-list li span:before {
  content: "";
  z-index: 3;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
  opacity: 0;
  background: url(../images/icon_right.png) center no-repeat;
  transition: all .5s;
}

.page-news .news-list li span:after {
  z-index: 2;
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(0, 0, 0, 0.4);
  transition: all .5s;
  content: "";
}

.page-news .news-list li div {
  padding: 5.65% 3.7%;
}

.page-news .news-list li h4 {
  padding-bottom: 12px;
  font-size: 16px;
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: all .2s ease;
}

.page-news .news-list li p {
  font-size: 14px;
  line-height: 22px;
  color: #959595;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: all .2s ease;
}

.page-news .news-list li em {
  display: block;
  margin-top: 13px;
  font-style: normal;
  color: #aaa;
  line-height: 1;
  font-size: 12px;
}

.page-news .news-list li:hover {
  background-color: #fff;
}

.page-news .news-list li:hover a {
  border-color: #000;
}

.page-news .news-list li:hover span:before,
.page-news .news-list li:hover span:after {
  opacity: 1;
}

.page-news .news-list li:hover p {
  color: #555;
}

.page-news .news-list li img {
  display: inline-block;
  max-width: 100%;
  width: 100%;
  max-height: 100%;
  vertical-align: middle;
}

.list-more {
  display: block;
  text-align: center;
  width: 93.75%;
  margin: 0 auto;
  font-size: 18px;
  line-height: 70px;
  height: 70px;
  border: 1px solid #e5e5e5;
  cursor: pointer;
  transition: all .2s;
}

.list-more:hover {
  background-color: #f1f1f1;
}

.page-contact-wrap {
  margin: 0 auto;
  width: 93.75%;
  overflow: hidden;
}

.page-contact-wrap .contact-img-left,
.page-contact-wrap .contact-img-right {
  width: 50%;
}

.contact-img-left img,
.contact-img-right img {
  width: 100%;
}

.contact-info {
  overflow: hidden;
  padding: 58px 0;
  border-bottom: 1px solid #d1d1d1;
}

.contact-info .contact-info-left,
.contact-info .contact-info-right {
  float: left;
  width: 50%;
}

.contact-info .contact-info-right {
  padding-left: 20%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.contact-info h4 {
  font-size: 20px;
  padding-bottom: 16px;
  font-weight: bold;
}

.contact-info a:hover {
  color: #00a0e9;
}

.contact-info p {
  font-size: 13px;
  line-height: 26px;
}

.contact-info2 {
  padding-top: 3.3rem;
  padding-bottom: 3.875rem;
}

.contact-info2 p {
  float: left;
  line-height: 1.625rem;
}

.contact-info2 .contact-info-left .contact-img {
  display: inline-block;
  padding-top: 0;
  padding-left: 52px;
  text-align: center;
}

.contact-info2 .contact-info-left em {
  display: block;
  text-align: center;
  padding-top: 5px;
  font-size: 0.938rem;
  font-style: normal;
  color: #666;
}

.contact-info2 .contact-info-right .contact-img {
  padding-top: 0;
  padding-left: 47px;
  text-align: center;
}

.contact-mb {
  display: none;
}

.contact-form {
  overflow: hidden;
  padding-bottom: 7.6rem;
}

.contact-form h4 {
  padding-top: 45px;
  font-weight: bold;
  font-size: 20px;
  color: #313131;
}

.contact-form p {
  padding-top: 12px;
  font-size: 14px;
  color: #959595;
}

.contact-form form {
  margin-top: 28px;
}

.contact-form form .submit {
  margin-top: 50px;
  width: 100%;
  height: 50px;
  line-height: 50px;
  background-color: #000;
  box-shadow: none;
  outline: none;
  border: 0;
  padding: 0;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  transition: all .5s;
}

.contact-form form .submit:hover {
  background-color: #434343;
  box-shadow: 0px 10px 20px 0px rgba(49, 49, 49, 0.2);
}

.contact-form .form-left {
  width: 49.08%;
  float: left;
}

.contact-form .form-left input {
  width: calc(100% - 40px);
  padding: 0 20px;
  margin-top: 10px;
  border: 0;
  outline: none;
  height: 60px;
  background-color: #e5e5e5;
}

.contact-form .form-left input:first-child {
  margin-top: 0;
}

.contact-form .form-right {
  width: 49.08%;
  float: right;
}

.contact-form .form-right textarea {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  border: 0;
  padding: 20px;
  outline: none;
  background-color: #e5e5e5;
}

.page-about .tab-ol {
  padding: 0;
}

/* 
.page-about .tab-ol li {
  width: 50%;
}

.page-about .about-content {
  max-width: 890px;
  width: 90%;
  text-align: center;
  margin: 0 auto;
  padding-bottom: 62px;
}

.page-about .about-content img {
  padding: 20px 0;
  height: 87px;
}

.page-about .about-content p {
  font-size: 15px;
  line-height: 28px;
} */

/* .about-article {
  font-size: 15px;
  line-height: 29px;
  text-align: center;
}

.about-article .center {
  max-width: 920px;
  width: 90%;
  margin: 0 auto;
}

.about-article img {
  padding: 40px 0 60px;
} */

.about-img-list {
  padding-top: 58px;
  overflow: hidden;
}

.about-img-list img {
  padding: 0;
  margin-bottom: 7px;
}

.about-img-list img:nth-child(odd) {
  float: left;
}

.about-img-list img:nth-child(even) {
  float: right;
}

.about-icon-list {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.about-icon-list li {
  float: left;
  width: 33.333334%;
  padding-top: 10px;
  text-align: center;
}

.about-icon-list li i {
  margin: 0 auto;
  display: block;
  width: 96px;
  height: 96px;
  border: 13px solid #f5f5f5;
  box-shadow: 0 0 0 2px #e5e5e5;
  border-radius: 50%;
  background-color: #e5e5e5;
  background-image: url(../images/about_icon_list.png);
  background-repeat: no-repeat;
  background-position-y: center;
  background-position-x: 28px;
}

.about-icon-list li:first-child+li i {
  background-position-x: -170px;
}

.about-icon-list li:first-child+li+li i {
  background-position-x: -347px;
}

.about-icon-list li p {
  padding-top: 20px;
  font-size: 18px;
  padding-bottom: 2px;
  color: #000;
}

.about-icon-list li span {
  font-size: 14px;
  color: #b6b6b6;
}

.page-item .page-item-wrap {
  width: 100%;
  margin: 0 auto;
}

.page-item-top {
  position: relative;
}

.page-item-top img {
  width: 100%;
}

.page-item-top:hover .page-item-left {
  width: 75%;
}

.page-item-top:hover .page-item-left .page-item-left-wrap {
  transform: translate(0, -50%);
  left: 60%;
}

.page-item-top .page-item-left {
  position: absolute;
  width: 35%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.35);
  transition: all .5s;
}

.page-item-top .page-item-left .page-item-left-wrap {
  width: 260px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all .5s;
}

.page-item-top .page-item-left .page-item-title {
  overflow: hidden;
}

.page-item-top .page-item-left .page-item-title .number {
  font-size: 130px;
  font-weight: lighter;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1;
  height: 65px;
  overflow: hidden;
}

.page-item-top .page-item-left .page-item-title a {
  color: #fff;
}

.page-item-top .page-item-left .page-item-title a:hover {
  color: #13b5b1;
}

.page-item-top .page-item-left .page-item-title h4 {
  padding: 10px 0 20px;
  font-weight: normal;
  font-size: 35px;
  line-height: 1;
  color: #fff;
}

.page-item-top .page-item-left .page-item-title hr {
  float: left;
  width: 40px;
  height: 2px;
  margin: 0;
  border: 0;
  background-color: #13b5b1;
}

.page-item-top .page-item-left .page-item-content {
  padding-top: 28%;
  font-size: 14px;
  line-height: 28px;
  color: #fff;
}

.page-item-article {
  padding-top: 40px;
}

.page-item-article p {
  font-size: 14px;
  line-height: 28px;
  color: #535353;
}

.item-relative-list {
  overflow: hidden;
  display: flex;
  justify-content: space-between;
}

.item-relative-list img {
  width: 100%;
}

.item-relative-list li {
  float: left;
  width: 24.21%;
  height: 0;
  margin: 0 .36% 0;
  float: left;
  position: relative;
  padding-bottom: 13.6%;
  overflow: hidden;
}

.item-relative-list li a:hover p,
.item-relative-list li a:hover h4,
.item-relative-list li a:hover i,
.item-relative-list li a:hover:after {
  opacity: 1;
}

.item-relative-list li a:after {
  opacity: 0;
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(0, 0, 0, 0.65);
  content: "";
  transition: all .5s;
}

.item-relative-list li figcaption {
  width: 100%;
  height: 100%;
}

.item-relative-list li figcaption h4 {
  opacity: 0;
  z-index: 9;
  position: absolute;
  left: 9.47%;
  bottom: 21.333%;
  width: 80%;
  font-size: 24px;
  color: #f5f5f5;
  transition: all .5s;
}

.item-relative-list li figcaption p {
  opacity: 0;
  z-index: 9;
  position: absolute;
  left: 9.47%;
  bottom: 38.2222%;
  font-size: 16px;
  color: #f5f5f5;
  transition: all .5s;
}

.item-relative-list li figcaption i {
  z-index: 9;
  opacity: 0;
  position: absolute;
  right: 8%;
  bottom: 18.66667%;
  width: 38px;
  height: 38px;
  display: block;
  background: url(../images/icon_right.png) no-repeat;
  background-size: cover;
  transition: all .5s;
}


.article-img video,
.article-img img {
  max-width: 100%;
}


.film-video {
  width: 100%;
  margin: 0 auto 3%;
  background: #000000;
  text-align: center;
  padding: 30px 0;
}

.film-video>video {
  width: 76%;
  outline: none;
}

.pptg-container {
  width: 72.91%;
}

.pptg-title .pptg-container {
  margin: 0 auto;
  padding-top: 45px;
  padding-bottom: 45px;
}

.pptg-title h4 {
  font-size: 40px;
  font-weight: normal;
  color: #333;
}

.pptg-title p {
  padding-top: 20px;
  font-size: 18px;
  color: #666;
}

@media screen and (max-width: 1100px) {
  .pptg-title h4 {
    font-size: 32px;
  }

  .pptg-title p {
    font-size: 16px;
  }
}

@media screen and (max-width: 992px) {
  .pptg-title .pptg-container {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .pptg-title h4 {
    font-size: 26px;
  }

  .pptg-title p {
    padding-top: 15px;
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .pptg-title .pptg-container {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .pptg-title h4 {
    font-size: 22px;
  }

  .pptg-title p {
    padding-top: 10px;
    font-size: 12px;
  }
}

.pptg-ul li {
  padding: 50px 0;
}

.pptg-ul li:last-child {
  padding-bottom: 0;
}

.pptg-ul li.white {
  background-color: #fff;
}

.pptg-ul li .pptg-ul-container {
  max-width: 1200px;
  width: 92%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.pptg-ul li.img-left .pptg-right {
  order: 1;
}

.pptg-ul li.img-left .pptg-left {
  order: 2;
}

.pptg-ul li .pptg-right {
  width: 50%;
}

.pptg-ul li .pptg-right img {
  max-width: 100%;
}

.pptg-ul li .pptg-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.pptg-ul li .pptg-left .pptg-left-wrap {
  width: 80%;
}

.pptg-ul li .pptg-left h4 {
  padding-bottom: 10px;
  font-size: 40px;
  font-weight: normal;
  line-height: 1;
  color: #323232;
}

.pptg-ul li .pptg-left p {
  font-size: 18px;
  font-weight: normal;
  line-height: 36px;
  color: #333;
}

@media screen and (max-width: 1200px) {
  .pptg-ul li .pptg-left h4 {
    font-size: 24px;
  }

  .pptg-ul li .pptg-left p {
    font-size: 16px;
    line-height: 26px;
  }

  .pptg-ul li .pptg-left .pptg-left-wrap {
    width: 92%;
  }
}

@media (max-width: 767px) {
  .pptg-ul li .pptg-left h4 {
    font-size: 20px;
  }

  .pptg-ul li .pptg-left p {
    font-size: 12px;
    line-height: 22px;
  }

  .pptg-ul li {
    padding: 30px 0;
  }

  .pptg-ul li .pptg-right {
    padding-top: 20px;
  }

  .pptg-ul li .pptg-ul-container {
    display: flex;
    flex-direction: column;
  }

  .pptg-ul li .pptg-left .pptg-left-wrap {
    width: 100%;
  }

  .pptg-ul li.img-left .pptg-left {
    order: 1;
  }

  .pptg-ul li .pptg-right {
    width: 100%;
  }

  .pptg-ul li .pptg-left {
    width: 100%;
  }
}

.product-list li figure {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
}


/*  */
.big-container {
  max-width: 1620px;
  width: 84.375%;
  margin: 0 auto;
}

.big-big-container {
  max-width: 1844px;
  width: 96%;
  margin: 0 auto;
}

.icon-more-style {
  position: relative;
  display: block;
}

.icon-more-style:hover .icon-more {
  opacity: 1;
  transform: scale(1);
  visibility: visible;
}

.icon-more-style .icon-more {
  z-index: 10;
  opacity: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -1.9375rem;
  margin-left: -1.9375rem;
  width: 3.875rem;
  height: 3.875rem;
  transition: all .5s;
  transform: scale(1.4);
  visibility: hidden;
}

.mask::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.65);
  transition: opacity .5s;
}

.mask:hover::after {
  visibility: visible;
  opacity: 1;
}

.index-title-style h4 {
  padding-top: 4.625rem;
  padding-bottom: 1.138rem;
  font-size: 2.125rem;
  line-height: 1;
}

.index-title-style small {
  display: inline-block;
  font-size: 0.938rem;
  color: #999999;
  line-height: 1.625rem;
}

.index-title-style {
  padding-bottom: 2rem;
  text-align: center;
}

.tab-list.no-logo span::after {
  display: none;
}

.tab-list {
  padding-top: 2.05rem;
  font-size: 0;
  user-select: none;
}

.tab-list span:hover::after,
.tab-list span.on::after {
  opacity: 1;
  visibility: visible;
}

.tab-list span:hover,
.tab-list span.on {
  color: #00a0e9;
}

.tab-list span::after {
  opacity: 0;
  visibility: hidden;
  margin-top: 7px;
  content: "";
  display: block;
  width: 100%;
  height: 7px;
  background: url(../images/new/icon_arrow_down.png) center no-repeat;
  transition: all .23s ease-in-out;
}

.tab-list span {
  margin: 0 1.594rem;
  display: inline-block;
  font-size: 1rem;
  color: #333;
  cursor: pointer;
}

/* .index-visual{
  margin-bottom: 5.125rem;
} */
.index-visual-wrap ul {
  overflow: hidden;
}

.index-visual-wrap {
  display: none;
}

.index-visual-item {
  width: 49.382716%;
  float: left;
  position: relative;
  overflow: hidden;
}

.index-visual-item:nth-of-type(4),
.index-visual-item:nth-of-type(3) {
  margin-top: 1.25rem;
}

.index-visual-item:nth-of-type(2n) {
  float: right;
}

.index-visual-item figure img {
  width: 100%;
}

.index-visual-item:hover img {
  transform: scale(1.05, 1.05);
}

.index-visual-item img {
  width: 100%;
  transition: all 0.5s;
}

.index-product-wrap img {
  width: 100%;
}

.index-product-wrap .big-container::after {
  content: "";
  display: block;
  width: 100%;
  position: relative;
}

.index-product-wrap .big-container {
  z-index: 9;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.index-product-wrap .swiper-button-next,
.index-product-wrap .swiper-button-prev {
  outline: none;
  color: #fff;
  transition: color .23s ease-in-out;
}

.index-product-wrap .swiper-button-next:hover,
.index-product-wrap .swiper-button-prev:hover {
  color: #00a0e9;
}

.list-3 {
  overflow: hidden;
}

.list-3 li:nth-of-type(3) {
  margin-right: 0;
}

.list-3 li {
  float: left;
  width: 32.716%;
  margin-right: 0.8642%;
}

video {
  max-width: 100%;
  vertical-align: top;
}

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

.index-server-item figcaption {
  z-index: 9;
  bottom: 36%;
  left: 0;
  box-sizing: border-box;
  position: absolute;
  width: 100%;
  padding: 0 7.533%;
  text-align: center;
  font-size: 1.5rem;
  color: #fff;
  transition: all .2s ease;
  opacity: 0;
  visibility: hidden;
}

.index-server-item:hover figcaption {
  opacity: 1;
  visibility: visible;
}


/* about */
.about-nav {
  background-color: #f2f2f2;
}

.about-nav.show {
  z-index: 9;
  position: fixed;
  left: 0;
  width: 100%;
}

.page-nav-style>div {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: justify;
  justify-content: space-between;
  -moz-box-pack: justify;
  -webkit--moz-box-pack: justify;
  box-pack: justify;
}

.page-nav-style>div a::after {
  width: 100%;
  height: 2px;
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  background-color: #00a0e9;
  opacity: 0;
  visibility: hidden;
  transition: all .23s ease;
}

.page-nav-style>div a {
  position: relative;
  display: block;
  text-align: center;
  width: 25%;
  height: 4.375rem;
  line-height: 4.375rem;
  background-color: transparent;
}

.page-nav-style>div a:hover::after,
.page-nav-style>div a.on::after {
  opacity: 1;
  visibility: visible;
}

.page-nav-style>div a:hover,
.page-nav-style>div a.on {
  background: #fff;
  color: #00a0e9;
}


.intro-title p {
  font-size: 1rem;
}

.intro-title h4 {
  font-size: 1.75rem;
  font-weight: bold;
  color: #333;
}

.intro-title div {
  display: inline-block;
  vertical-align: middle;
}

.intro-title {
  padding-top: 5rem;
  padding-bottom: 2.2rem;
  text-align: center;
}

.intro-title img {
  max-width: 100%;
  margin: 0 auto;
}

.about-article p {
  font-size: 0.938rem;
  line-height: 1.625rem;
}

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

.about-article2 p {
  font-size: 0.938rem;
  line-height: 1.625rem;
  color: #434343;
}

.about-article2 h4 {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.625rem;
  color: #000000;
}

.about-article2 {
  padding-top: 3rem;
  padding-bottom: 3.188rem;
}

.about-article2 img {
  display: inline-block;
  width: 66.333334%;
}

.about-article2>div {
  padding-left: 3.5%;
  width: 27.5833334%;
  display: inline-block;
  vertical-align: middle;
}

/* .about-article3{
  margin-bottom: 4.5rem;
} */

.about-article3-ol {
  margin-top: 1.5rem;
  overflow: hidden;
}

.about-article3-ol li div {
  margin-top: 4px;
  margin-left: 10px;
  line-height: 1.5;
}

.about-article3-ol li img {
  width: 52px;
  height: 52px;
}

.about-article3-ol li p {
  font-size: 14px;
}

.about-article3-ol li {
  float: left;
  width: 24%;
  padding-bottom: 1.2rem;
  margin-right: 1.3%;
  box-sizing: border-box;
  border-right: 1px solid #ebebeb;
}

.about-article3-ol li:nth-of-type(n+5) {
  padding-bottom: 0;
}

.about-article3-ol li:nth-of-type(4n) {
  border-right: 0;
  margin-right: 0;
}

.serve {
  overflow: hidden;
  width: 100%;
  background: url(../images/new/about_serve.jpg) center no-repeat;
  background-size: cover;
  padding-bottom: 5.625rem;
}

.serve-list li img {
  transform: rotate(-360deg);
}

.serve-list.move-rotate li img {
  transform: rotate(0);
  opacity: 1;
}

.serve-list li:hover img {
  transition: transform all .5s;
  transform: rotate(360deg);
}

.serve-list li {
  width: 25%;
  float: left;
  text-align: center;
  color: #fff;
  cursor: default;
}

.serve-list li img {
  width: 111px;
  height: 111px;
  display: inline-block;
  opacity: 0;
  transition: transform 1s, opacity 1s;
}

.serve-list li p {
  padding-top: 2.125rem;
  padding-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1;
}

.serve-list li span {
  display: inline-block;
  line-height: 1;
  font-size: 0.875rem;
  opacity: .5;
}

.honor-text li p {
  box-sizing: border-box;
  padding: 0 8%;
  font-size: 0.938rem;
  color: #666;
  line-height: 1.875rem;
  transition: all .23s ease-in;
}

.honor-text li:nth-of-type(3) {
  width: 40%;
}

.honor-text li:nth-of-type(2) {
  border-left: 1px solid #bfbfbf;
  border-right: 1px solid #bfbfbf;
  width: 28%;
}

.honor-text li {
  box-sizing: border-box;
  float: left;
  width: 32%;
}

.honor-text {
  overflow: hidden;
}

.honor-text li p:hover {
  color: #00a0e9;
}

.honor-list-big {
  padding-top: 2.9375rem;
  padding-bottom: .875rem;
  overflow: hidden;
}

.honor-list-big a {
  display: block;
  position: relative;
  overflow: hidden;
}

/* .honor-list-big li:hover img{
  transform: translate(-50%,-50%) scale(1.1);
} */
.honor-list-big li {
  float: left;
  width: 21.75%;
  margin-right: 4.3%;
}

.honor-list-big li:nth-of-type(4n) {
  margin-right: 0;
}

.honor-list-big li figure img {
  position: absolute;
  width: auto;
  max-height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all .5s ease-in;
}

.honor-list-big li figure {
  position: relative;
  height: 0;
  padding-bottom: 68.231%;
  overflow: hidden;
}

.search-btn .icon-search {
  z-index: 2;
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  margin-top: -30px;
  margin-left: -30px;
  transform: scale(1.15);
  opacity: 0;
  background: rgba(0, 0, 0, 0.35) url(../images/icon_search.png) center no-repeat;
  transition: all .3s;
}

.search-btn li:hover .icon-search {
  transform: scale(1) translateZ(0);
  opacity: 1;
}

/* .honor-list li:nth-of-type(10){
  margin-right: 0;
} */
.honor-list li img {
  width: 100%;
}

.honor-list li {
  width: 8%;
  margin-top: 12px;
  margin-right: 1.83333334%;
}

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

.honor-list a {
  display: block;
  position: relative;
  overflow: hidden;
}

.honor {
  padding-bottom: 6.1875rem;
}

.cooperation {
  background: #f5f5f5;
}

.cooperation-p p {
  font-size: 0.938rem;
  color: #666;
  line-height: 1.625rem;
  text-align: center;
}

.cooperation-p {
  padding-top: 1.2rem;
}

.cooperation-list {
  padding-bottom: 4.75rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.cooperation-list li:nth-of-type(6n) {
  margin-right: 0;
}

.cooperation-list li img {
  transition: all .23s ease-in;
}

.cooperation-list li:hover img {
  transform: scale(1.05);
}

.cooperation-list li {
  width: 13.9166667%;
  margin-right: 3.25%;
  margin-bottom: 2.0625rem;
  overflow: hidden;
}

.page-banner {
  position: relative;
}

.page-banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}

.page-banner-text h4 {
  font-weight: normal;
  font-size: 2.75rem;
  line-height: 1;
}

.page-banner-text p {
  padding-top: 1.875rem;
  line-height: 1;
  font-size: 2.375rem;
}

.page-case a:hover,
.page-case a.on {
  opacity: 1;
}

.page-case a {
  display: inline-block;
  width: 16.66666%;
  text-align: center;
  height: 54px;
  line-height: 54px;
  font-size: 1.125rem;
  color: #fff;
  opacity: 0.4;
  transition: all .3s ease;
}

.page-case {
  font-size: 0;
  overflow: hidden;
  background-color: #000;
}

.nav-solu.case-nav-mb,
.case-nav-mb {
  position: relative;
  margin: 20px auto;
  width: 92%;
  background: transparent;
  color: #333;
  overflow: visible;
}

.case-nav-h4.on::after {
  transform: translateY(-50%) rotate(45deg);
}

.case-nav-h4::after {
  content: "+";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  line-height: 1;
  vertical-align: top;
  transition: all .23s ease;
}

.case-nav-h4 {
  position: relative;
  font-size: 1.4rem;
  font-weight: normal;
  text-align: center;
  background-color: #000;
  color: #fff;
  border-radius: 3px;
  padding: 6px 0;
}

.case-nav-ol.on {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.case-nav-ol {
  top: 50px;
  z-index: 100;
  transform: translateY(50px);
  opacity: 0;
  visibility: hidden;
  position: absolute;
  width: 100%;
  border-radius: 3px;
  background-color: #eee;
  transition: all .5s ease;
}

.case-nav-mb .case-nav-ol a.on {
  background-color: #00a0e9;
  color: #fff;
}

.case-nav-mb,
.nav-solu.case-nav-mb {
  line-height: 1.8;
  background-color: transparent;
}

.case-nav-mb .case-nav-ol a {
  display: block;
  border-bottom: 1px solid #dcdcdc;
  width: 100%;
  float: none;
  border-radius: 3px;
  height: auto;
  line-height: unset;
  padding: 12px 0;
  color: #000;
}

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

.case-list figure img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all .4s;
  object-fit: cover;
}

.case-list figcaption {
  z-index: 9;
  /* position: absolute; */
  top: 0;
  left: 0;
  width: 80%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
  text-align: center;
  /* color:#fff; */
  margin: 0 auto;
  line-height: 2;
}

.case-list figure {
  overflow: hidden;
  position: relative;
  height: 0;
  padding-bottom: 64.935%;
}

.case-list li:hover img {
  transform: translate(-50%, -50%) scale(1.1);
}

.case-list a {
  position: relative;
  display: block;
}

.case-list li {
  float: left;
  margin-right: 1.816667%;
  margin-bottom: 3.563rem;
  width: 32.083334%;
}

.case-list {
  padding-top: 5.625rem;
  overflow: hidden;
}

.case {
  padding-bottom: 4.75rem;
}

.contact-title {
  padding: 4.875rem 0 3.438rem;
  font-size: 2.0625rem;
  line-height: 1;
  color: #333;
  text-align: center;
}

.contact-info3 {
  padding-top: 5.2rem;
  padding-bottom: 1.3rem;
  border-bottom: 1px solid #dcdcdc;
}

.contact-info3 small {
  font-size: 0.875rem;
  color: #00a0e9;
}

.contact-info3 h4 {
  font-size: 1.563rem;
  color: #00a0e9;
  font-weight: bold;
}

.contact-info4 {
  text-align: center;
  border-bottom: 1px solid #d2d2d2;
}

.contact-info4 h4 {
  padding-bottom: 2rem;
  line-height: 1;
  font-size: 50px;
  color: #ffab40;
  font-weight: normal;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-info4 h4 em {
  font-style: normal;
  position: relative;
  display: inline-block;
}

.contact-info4 h2 {
  padding-top: 4.5rem;
  padding-bottom: 2rem;
  line-height: 1;
  font-size: 3.75rem;
  font-weight: normal;
  color: #00a0e9;
}

.contact-info4-list span:first-child {
  margin-left: 0;
}

.contact-info4-list span {
  margin-left: 2.25rem;
  line-height: 1;
  font-size: 1.125rem;
  color: #00a0e9;
}

.contact-info4 p {
  line-height: 1.625rem;
  color: #666;
}

.contact-info4-list {
  padding: 2rem 0 4.5rem;
  font-size: 0;
}

.news-banner .page-banner-text h4 {
  font-size: 2.75rem;
  padding-bottom: 1.5rem;
}

.news-banner .page-banner-text span {
  display: inline-block;
  font-size: 1rem;
  line-height: 2rem;
  text-align: center;
}

.block-more:hover {
  background-color: #00a0e9;
  color: #fff;
}

.block-more {
  display: block;
  margin: 8.625rem auto 0;
  width: 8.75rem;
  height: 3.375rem;
  line-height: 3.375rem;
  text-align: center;
  background: transparent;
  border-radius: 1.688rem;
  border: 1px solid #00a0e9;
  color: #00a0e9;
  transition: all .23s ease;
}

.product-title {
  padding: 2.938rem 0 1.563rem;
  font-size: 1.375rem;
  color: #333;
}

.product-list1 {
  overflow: hidden;
}

.product-list1 li:nth-of-type(4n) {
  margin-right: 0;
}

.product-list1 li a {
  display: block;
}

.product-list1 li {
  float: left;
  width: 22.5%;
  margin-right: 3.25%;
  margin-bottom: 3.375rem;
}

.product-list1 li figure img {
  max-width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all .23s;
}

.product-list1 li figure {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  box-sizing: border-box;
  overflow: hidden;
  border: 1px solid #e5e5e5;
}

.product-list1 li p {
  margin: 1.625rem 0 1.2rem;
  font-size: 1rem;
  color: #333333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-list1 li:hover img {
  transform: translate(-50%, -50%) scale(1.1);
}

.product-list1 li:hover p {
  color: #00a0e9;
}

.product-list1 li:hover span {
  color: #666;
}

.product-list1 li span {
  font-size: 14px;
  display: block;
  color: #999999;
  line-height: 22px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
  overflow: hidden;
}

.product-list1 li .more {
  margin-top: 10px;
  font-size: 14px;
  color: #00a0e9;
}

.product .product-list1 {
  margin-top: 1.8rem;
}

.pro-wrap2 {
  /* border-top: 1px solid #d2d2d2; */
}

.pro-nav a:hover,
.pro-nav a.on {
  background-color: #e5f5fd;
  color: #00a0e9;
}

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

.pro-nav a {
  margin-left: 1%;
  display: inline-block;
  font-size: 1.13rem;
  color: #333333;
  padding: 1.125rem 0;
  box-sizing: border-box;
  width: 15.8333334%;
  text-align: center;
  background-color: #f2f2f2;
}

.pro-nav {
  font-size: 0;
  /* padding-top: 2.813rem; */
  /* padding-bottom: 1.873rem; */
  overflow: hidden;
}

.product-list1.pb1125 li {
  margin-bottom: 1.125rem;
}

.product-list1 li:hover figcaption {
  background: #00a0e9;
  color: #fff;
}

.product-list1 figcaption {
  z-index: 10;
  box-sizing: border-box;
  position: relative;
  padding: 1.24rem 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  text-align: center;
  color: #333;
  background: #eee;
  font-size: 1rem;
  transition: all .23s ease;
}

.product {
  padding-bottom: 4.625rem;
}

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

.article {
  padding-top: 2.188rem;
  padding-bottom: 2.813rem;
  font-size: 0.938rem;
  line-height: 1.625rem;
  color: #333;
}

.article-case-top {
  padding-top: 4.813rem;
  border-bottom: 1px solid #d2d2d2;
  overflow: hidden;
}

.article-case-title p {
  padding-bottom: 1.375rem;
  line-height: 1;
  font-size: 1.125rem;
  color: #333;
}

.article-case-title h4 {
  padding-bottom: 1.25rem;
  color: #333;
  font-weight: normal;
  font-size: 1.875rem;
}

.article-case-top .article-case-title {
  float: left;
}

.article-case-location .back {
  margin-bottom: 1.125rem;
  display: block;
}

.article-case-location .back,
.article-case-location .a a,
.article-case-location .a {
  color: #999;
  font-size: 14px;
}

.article-case-top .article-case-location {
  text-align: right;
  float: right;
  color: #999;
  font-size: 14px;
}

.article-case-location a:hover {
  color: #000;
}

.pro-wrap {
  padding: 4rem 0 2.5rem;
  width: 100%;
  overflow: hidden;
}

.pro-article {
  width: 48.33333334%;
  float: left;

}

.pro-article figure img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pro-article figure {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  border: 1px solid #e5e5e5;
}

.pro-info {
  width: 46.6666667%;
  float: right;
}

.pro-sub-title h4 {
  display: inline-block;
  font-size: 1.13rem;
  font-weight: normal;
  background-color: #fff;
}

.pro-sub-title a:hover {
  font-weight: bold;
}

.pro-sub-title a {
  display: inline-block;
  color: #00a0e9;
  background-color: #fff;
}

.pro-sub-title::after {
  z-index: -1;
  display: block;
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #d2d2d2;
}

.pro-sub-title {
  position: relative;
  margin-top: 2rem;
  margin-bottom: 1.75rem;
}

.small-list li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.small-list li:first-child {
  margin-left: 0;
}

.small-list li:hover,
.small-list li.on {
  border-color: #00a0e9;
}

.small-list li {
  box-sizing: border-box;
  display: inline-block;
  margin-left: 0.8125rem;
  width: 6.875rem;
  height: 6.875rem;
  border: 2px solid #e5e5e5;
  transition: all .23s ease;
  cursor: pointer;
}

.small-list {
  font-size: 0;
  height: 6.875rem;
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
  overflow-x: scroll;
}

.pro-info .price {
  margin-top: 1.8rem;
  color: #00a0e9;
  line-height: 1.75rem;
  font-size: 0.875rem;
}

.pro-info .title {
  width: 100%;
  padding: .875rem 0;
  font-size: 1.875rem;
  font-weight: normal;
  border-bottom: 1px solid #dcdcdc;
}

.pro-info-desc>div:nth-of-type(2) {
  width: 52%;
  float: right;
}

.pro-info-desc {
  overflow: hidden;
}

.pro-info-desc>div {
  width: 46%;
  float: left;
  font-size: 0.875rem;
  line-height: 1.75rem;
  color: #666;
}

.pro-info-more {
  margin-top: 2.56rem;
  text-align: center;
  display: block;
  width: 12.313rem;
  height: 2.875rem;
  line-height: 2.875rem;
  background-color: #00a0e9;
  border-radius: 1.438rem;
  color: #fff;
  transition: all .23s ease;
}

.pro-info-more:hover {
  background-color: #000;
  color: #fff;
}

.pro-info-more i {
  line-height: 1;
  margin-left: 8px;
  display: inline-block;
  width: 1.188rem;
  height: 1.188rem;
  background: url(../images/new/icon.png) no-repeat;
  background-size: cover;
  vertical-align: middle;
  transition: all .23s ease;
}

/* .pro-info-more:hover i{
  background: url(../images/new/icon_hover.png) no-repeat;
} */

.page-pro-title::after {
  content: "";
  position: absolute;
  min-width: 1200px;
  width: 100%;
  height: 1px;
  bottom: -2px;
  background-color: #d2d2d2;
  left: 100%;
  z-index: 1;
}

.page-pro-title {
  z-index: 2;
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  padding: 0 .625rem .75rem;
  /* margin-bottom: 2rem; */
  border-bottom: 3px solid #00a0e9;
}

.pro-re {
  padding-bottom: 4.188rem;
}

.pro-re-wrap {
  padding-top: 3.063rem;
  padding-bottom: 4rem;
}

.pro-re .swiper-slide a {
  display: block;
}

.pro-re .swiper-slide figure {
  position: relative;
  height: 0;
  padding-bottom: 100%;
  box-sizing: border-box;
  border: 1px solid #eee;
  overflow: hidden;
}

.pro-re .swiper-slide figure img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 100%;
  transition: all .2s;
}

.pro-re .swiper-slide figcaption {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
  padding: 1.75rem 10px;
  color: #333333;
  background-color: #eee;
  transition: all .2s;
}

.swiper-pagination-bullet-active,
.pro-re .swiper-slide:hover figcaption {
  background-color: #00a0e9;
  color: #fff;
}

.pro-re .swiper-slide:hover img {
  transform: translate(-50%, -50%) scale(1.08);
}

.solution-banner-text h4 {
  padding-top: 2.188rem;
  padding-bottom: 1.4rem;
  font-size: 2.75rem;
  font-weight: normal;
}

.solution-banner-text p {
  font-size: 14px;
  line-height: 1.75rem;
}

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

.solution-banner-text {
  text-align: center;
  max-width: 820px;
  width: 90%;
  color: #fff;
}

.page-banner .icon-banner {
  width: auto;
  height: 25px;
  ;
}

.page-banner .banner-next i {
  width: 100%;
  height: 100%;
  display: block;
  background: url(../images/new/down.png) top center no-repeat;
  animation: 1.2s down ease-out infinite;
  cursor: pointer;
}

.page-banner .banner-next {
  box-sizing: border-box;
  width: 50px;
  height: 50px;
  margin: 0 auto;
  margin-top: 1.5rem;
  border: 2px solid #00a0e9;
  border-radius: 50%;
  overflow: hidden;
}

@keyframes down {
  0% {
    opacity: .5;
    background-position: top -14px center;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: .5;
    background-position: bottom -14px center;
  }
}

.nav-solu.show {
  position: fixed;
  left: 0;
  z-index: 99;
}

.nav-solu {
  width: 100%;
  height: 54px;
  line-height: 54px;
  background: #000;
}

.nav-solu a {
  width: 16.6666667%;
  float: left;
  text-align: center;
}

.nav-solu.case-nav-mb .case-nav-ol img {
  filter: invert(100%);
}

.nav-solu.case-nav-mb .case-nav-ol a.on img {
  filter: invert(0);
}

.nav-solu.case-nav-mb .case-nav-ol a.on span {
  color: #fff;
}

.nav-solu.case-nav-mb .case-nav-ol span {
  color: #333;
}

.nav-solu span {
  vertical-align: middle;
  margin-left: 10px;
  color: #fff;
  opacity: 0.4;
  line-height: 1;
  transition: all .23s ease;
}

.nav-solu img {
  display: inline-block;
  line-height: 1;
  opacity: 0.4;
  vertical-align: middle;
  transition: all .23s ease;
}

.nav-solu a.on span,
.nav-solu a:hover span,
.nav-solu a:hover img,
.nav-solu a.on img {
  opacity: 1;
}

.solu-section {
  width: 100%;
}

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

.solution-banner-text {
  margin: 0;
}

.solution-text {
  color: #00a0e9;
}

.block-more.jishu {
  margin: 4rem 0 0;
  width: 10.875rem;
  line-height: 2.875rem;
  height: 2.875rem;
  border-radius: 1.438rem;
}

.dongtai-text {
  margin: 4.413rem 0 3rem;
  font-size: 0.938rem;
  color: #00a0e9;
}

.dongtai-title {
  font-size: 2.25rem;
  font-weight: normal;
  color: #333;
}

.dongtai-desc {
  font-size: 0.938rem;
  line-height: 1.625rem;
  margin: 2.25rem 0 3.5rem;
}

.dongtai-list li:hover h4 {
  color: #0077B5;
}

.dongtai-list li:hover span {
  color: #313131;
}

.dongtai-list li a {
  display: block;
}

.dongtai-list {
  margin-top: -20px;
  width: 47.41666667%;
  float: left;
}

.dongtai-t {
  padding-top: 20px;
  overflow: hidden;
  margin-bottom: 12px;
}

.dongtai-list span {
  display: block;
  float: right;
  font-weight: normal;
  color: #aaa;
  font-size: 14px;
  width: 80px;
  text-align: right;
  transition: all .23s ease;
}

.dongtai-list h4 {
  width: calc(100% - 100px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.938rem;
  color: #333333;
  font-weight: bold;
  float: left;
  transition: all .23s ease;
}

.dongtai-list .dongtai-d {
  font-size: 0.938rem;
  color: #333;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.dongtai-list li:last-child {
  border-bottom: 0;
}

.dongtai-list li {
  padding-bottom: 15px;
  border-bottom: 1px dashed #e1e0e0;
}

.dongtai-video {
  width: 45.666667%;
  float: right;
}

.dongtai {
  padding-bottom: 8.5rem;
}

.news .solution-banner-text {
  max-width: 620px;
}

.text-weight-normal h4 {
  font-weight: normal;
}

.more-news-list {
  padding-bottom: 2rem;
}

.more-news-info h4 {
  font-weight: normal;
  color: #333;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  transition: all .23s ease;
}

.more-news-info span {
  padding-top: .85rem;
  display: block;
  font-size: 13px;
  color: #aaa;
  transition: all .23s ease;
}

.more-news-info em {
  margin: .9rem 0;
  height: 0;
  width: 100%;
  display: block;
  border-top: 1px dashed #313131;
}

.more-news-info p {
  font-size: 13px;
  color: #aaa;
  line-height: 1.563rem;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.more-news-info {
  float: right;
  width: 48.0216%;
}

.more-news-img {
  float: left;
  width: 48.0216%;
}

.more-news-list a {
  display: block;
  overflow: hidden;
}

.more-news-list figure img {
  position: absolute;
  max-width: 100%;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.more-news-list figure {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 67.4157%;
  overflow: hidden;
}

/* .more-news-list li:nth-of-type(2n){
  float: right;
}
.more-news-list li:nth-of-type(2n+1){
  float: left;
}
.more-news-list li:nth-of-type(1),
.more-news-list li:nth-of-type(2){
  margin-top: 2.25rem;
} */
.more-news-list li:hover .more-news-info p {
  color: #333;
}

.more-news-list li:hover .more-news-info span {
  color: #666;
}

.more-news-list li:hover .more-news-info h4 {
  color: #00a0e9;
}

.more-news-list li:hover .icon-link {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.more-news-list li {
  margin-top: 3rem;
  width: 100%;
}

.icon-link {
  opacity: 0;
  visibility: hidden;
  width: 2.625rem;
  height: 2.625rem;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.2);
  background: url(../images/new/icon_link.png) no-repeat;
  background-size: cover;
  transition: all .23s ease;
}

.news {
  padding-bottom: 5rem;
}

.hangye {
  padding-top: 9.313rem;
  padding-bottom: 8.5rem;
  background: url(../images/new/bg_new1.jpg) top center no-repeat;
}

.hangye-top p {
  font-size: 15px;
  color: #fff;
  line-height: 26px;
}

.hangye-top h4 {
  padding-top: 0;
  padding-bottom: 2rem;
  font-size: 2.25rem;
  color: #fff;
  line-height: 1;
  font-weight: normal;
}

.hangye-top {
  padding-bottom: 2.5rem;
}

.hangye-list li:nth-of-type(3n) {
  margin-right: 0;
}

.hangye-list li figcaption {
  margin-top: 20px;
  font-size: 14px;
  color: #fff;
  opacity: 0.5;
  text-align: center;
  transition: all .23s ease;
}

.hangye-list li:hover figure img {
  transform: translate(-50%, -50%) scale(1.1);
}

.hangye-list li figure img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  transition: all .23s ease;
}

.hangye-list li figure {
  box-sizing: border-box;
  border: 1px solid #626262;
  position: relative;
  height: 0;
  width: 100%;
  padding-bottom: 67.53%;
  overflow: hidden;
}

.hangye-list li:hover .icon-link {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.hangye-list li a:hover figcaption {
  color: #fff;
  opacity: 1;
}

.hangye-list li a {
  overflow: hidden;
  display: block;
}

.hangye-list li {
  margin-right: 1.833334%;
  width: 32.08333334%;
  float: left;
}

.hangye-list {
  overflow: hidden;
}


.hidden {
  overflow: hidden;
  padding: 0 !important;
  width: 0 !important;
  height: 0 !important;
  opacity: 0 !important;
}

.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: #004898;
}

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

.index-project-wrap img {
  width: 100%;
}


.page-banner-text small {
  margin-top: 1.4rem;
  display: block;
  color: #999999;
}

.page-banner-text small a:hover {
  color: #fff
}

.page-banner-text small a {
  font-size: 0.94rem;
  color: #999999;
  line-height: 1.38rem;
}


/* ====================== */
.type-product-menu {
  width: 270px;
  float: right;
}

.type-product-menu-list a::before {
  position: absolute;
  margin-top: -5px;
  top: 50%;
  left: 0;
  display: block;
  content: "";
  width: 8px;
  height: 11px;
  background: url(../images/icon_arrow_left_p.png) no-repeat;
}

.type-product-menu-list li {
  line-height: 32px;
}

.type-product-menu-list li.on>a,
.type-product-menu-list a:hover {
  color: #00a0e9;
}

.type-product-menu-list a {
  padding-left: 16px;
  position: relative;
  font-size: 15px;
}

.type-product-menu-list ol {
  padding-left: 10px;
}

.type-product-list {
  width: calc(100% - 300px);
}

.type-product-list .product-list1 li:nth-of-type(4n) {
  margin-right: 1.9%;
}

.type-product-list .product-list1 li:nth-of-type(3n) {
  margin-right: 0;
}

.type-product-list .product-list1 li {
  width: 32.03125%;
  margin-right: 1.9%;
}

.type-product-menu-title {
  font-weight: normal;
  font-size: 1.44rem;
  line-height: 1;
  padding-bottom: 1.25rem;
}


.type-product {
  margin-top: 5.8rem;
}

.product-search {
  margin-bottom: 2.8rem;
  box-sizing: border-box;
  position: relative;
  width: 100%;
  height: 40px;
  overflow: hidden;
  border: solid 1px #bfbfbf;
  font-size: 14px;
}

.product-search input {
  box-sizing: border-box;
  padding: 0 5.575rem 0 1.125rem;
  line-height: 40px;
  width: 100%;
  height: inherit;
  border: 0;
  outline: none;
}

.product-search .s-btn {
  z-index: 9;
  position: absolute;
  top: -1px;
  right: -1px;
  display: block;
  width: 3.05rem;
  height: 40px;
  color: #fff;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
  transition: all .23s ease;
  background: url(../images/icon_search.png) center no-repeat;
  filter: invert(57%);
}

.product-search .s-btn:hover {
  filter: invert(100%);
}


@media screen and (max-width: 768px) {
  .type-product {
    margin-top: 3.5rem;
  }

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

  .type-product-list,
  .type-product-menu {
    width: 100%;
  }

  .type-product-list .product-list1 li:nth-of-type(4n) {
    margin-right: 0;
  }

  .type-product-list .product-list1 li {
    margin-left: 0;
    margin-right: 0;
    width: 48.5%;
  }

  .product-search {
    margin-bottom: 1.8rem;
  }

  .p-title.menu-md {
    margin-bottom: 3rem;
    position: relative;
    font-size: 1.4rem;
    font-weight: normal;
    text-align: center;
    background-color: #000;
    color: #fff;
    border-radius: 3px;
    padding: 13px 0;
  }

  .p-title.menu-md::after {
    content: "+";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    line-height: 1;
    vertical-align: top;
    transition: all .23s ease;
  }

  .type-product-menu-list.menu-md {
    display: none;
  }
}


.index-visual-video {
  width: 100%;
}

.more-news .more-news-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.more-news .more-news-img {
  float: left;
  width: 26.0216%;
  min-width: 312px;
}

.more-news .more-news-info {
  width: 74%;
  width: calc(100% - 365px);
}

.video {
  padding-bottom: 4rem;
  overflow: hidden;
}

.hover-pic-zoom:hover img {
  transform: scale(1.05);
}

.hover-pic-zoom img {
  transition: all .2s ease;
}

.hover-pic-zoom a,
.hover-pic-zoom {
  display: inline-block;
  overflow: hidden;
}



video::-internal-media-controls-download-button {
  display: none;
}

video::-webkit-media-controls-enclosure {
  overflow: hidden;
}

video::-webkit-media-controls-panel {
  width: calc(100% + 30px);
}





/* -------------------------------------修改---------------------------------*/
#page38 .pro-sub-title.pro-sub-child-title::before {
  content: "";
  width: 0;
  height: 0;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
  border-width: 12px;
  border-style: solid dashed dashed dashed;
  border-color: transparent transparent transparent #ccc;
  position: absolute;
  left: 0;
  top: 0;
}

#page38 .pro-sub-title.pro-sub-child-title h4 {
  margin-left: 20px;
}

#page38 .pro-sub-title.pro-sub-child-title::after {
  background-color: transparent;
}

#page38 .pro-sub-title.pro-sub-parent-title a {
  display: none;
}