@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;
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.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: rgba(0, 0, 0, 0);
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  vertical-align: middle;
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[type="button"],
[type="reset"],
[type="submit"],
button {
  -webkit-appearance: button;
}

[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

ol,
ul,
li {
  margin: 0;
  padding: 0;
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;
}

p,
h2,
h3,
h4 {
  margin: 0;
}

a:hover {
  -webkit-tap-highlight-color: transparent;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.por {
  position: relative;
}

.poa {
  position: absolute;
}

.clearfix:after {
  display: block;
  clear: both;
  content: "";
  visibility: hidden;
  height: 0;
}

.clearfix {
  zoom: 1;
}

.tac {
  text-align: center;
}

input[type="text"],
input[type="number"],
input[type="password"],
input[type="reset"],
input[type="submit"],
input[type="button"],
input[type="tel"],
button,
textarea {
  -webkit-appearance: none;
  outline: none;
}

figure {
  margin: 0;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-transition-delay: 9999s;
  -webkit-transition: color 9999s ease-out, background-color 9999s ease-out;
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
}

sub {
  bottom: -0.05em;
}

a {
  transition: all 0.23s ease;
}

input {
  box-sizing: border-box;
  border: 0;
  outline: none;
  padding: 0;
}

.ovh {
  overflow: hidden;
}

.pb0 {
  padding-bottom: 0 !important;
}

.pt0 {
  padding-top: 0 !important;
}

/*!
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 {
  animation-duration: 2s;
  animation-fill-mode: both;
}

.animated.hinge {
  animation-duration: 2s;
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
.bounce {
  animation-name: bounce;
}
@keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.pulse {
  animation-name: pulse;
}
@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-10px);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translateX(10px);
  }
}
.shake {
  animation-name: shake;
}
@keyframes swing {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}
@keyframes tada {
  0% {
    transform: scale(1);
  }
  10%,
  20% {
    transform: scale(0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    transform: scale(1.1) rotate(3deg);
  }
  40%,
  60%,
  80% {
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}
.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  0% {
    transform: translateX(0%);
  }
  15% {
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    transform: translateX(0%);
  }
}
.wobble {
  animation-name: wobble;
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
.bounceIn {
  animation-name: bounceIn;
}
@keyframes bounceInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    transform: translateY(30px);
  }
  80% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    transform: translateX(30px);
  }
  80% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0);
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    transform: translateX(-30px);
  }
  80% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    transform: translateY(-30px);
  }
  80% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}
@keyframes bounceOut {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    transform: scale(0.3);
  }
}
.bounceOut {
  animation-name: bounceOut;
}
@keyframes bounceOutDown {
  0% {
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
  0% {
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
  0% {
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
  0% {
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-20px);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(20px);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes flip {
  0% {
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    animation-timing-function: ease-in;
  }
  100% {
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  backface-visibility: visible;
  animation-name: flip;
}
@keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
.flipInX {
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
.flipInY {
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@keyframes flipOutX {
  0% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-name: flipOutX;
  backface-visibility: visible !important;
}
@keyframes flipOutY {
  0% {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.flipOutY {
  backface-visibility: visible !important;
  animation-name: flipOutY;
}
@keyframes lightSpeedIn {
  0% {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedOut {
  0% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}
@keyframes rotateIn {
  0% {
    transform-origin: center center;
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}
@keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}
@keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}
@keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}
@keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}
@keyframes rotateOut {
  0% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: center center;
    transform: rotate(200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}
@keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}
@keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}
@keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}
@keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}
@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  100% {
    transform: translateY(0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  100% {
    transform: translateX(0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  100% {
    transform: translateX(0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}
@keyframes slideOutLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  0% {
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  0% {
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
}
@keyframes hinge {
  0% {
    transform: rotate(0);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    transform: rotate(80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40% {
    transform: rotate(60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  80% {
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  100% {
    transform: translateY(700px);
    opacity: 0;
  }
}
.hinge {
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
}
.rollIn {
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut {
  0% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translateX(100%) rotate(120deg);
  }
}
.rollOut {
  animation-name: rollOut;
}

/*www.jq22.com*/
/**
 * Swiper 5.3.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://swiperjs.com
 *
 * Copyright 2014-2020 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: January 11, 2020
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA")
    format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-container-3d {
  perspective: 1200px;
}

.swiper-container-3d .swiper-cube-shadow,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}

.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

:root {
  --swiper-navigation-size: 44px;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-next.swiper-button-white,
.swiper-button-prev.swiper-button-white {
  --swiper-navigation-color: #ffffff;
}

.swiper-button-next.swiper-button-black,
.swiper-button-prev.swiper-button-black {
  --swiper-navigation-color: #000000;
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.6;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical
  > .swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-container-horizontal
  > .swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-container-horizontal.swiper-container-rtl
  > .swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-container-rtl
  .swiper-pagination-progressbar
  .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-horizontal
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-container-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white {
  --swiper-pagination-color: #ffffff;
}

.swiper-pagination-black {
  --swiper-pagination-color: #000000;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  animation: swiper-preloader-spin 1s infinite linear;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-next + .swiper-slide,
.swiper-container-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-cube .swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

/*翻页样式*/
.paging {
  text-align: center;
  padding: 45px 0 65px;
  font-size: 12px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.paging li {
  display: inline-block;
  line-height: 1;
  text-align: center;
  font-size: 12px;
}

.paging li a {
  display: inline-block;
  width: 31px;
  height: 31px;
  line-height: 31px;
  margin-right: 8px;
  font-size: 12px;
  color: #000;
  vertical-align: middle;
  transition: all 0.5s;
}

.paging li.thisclass a,
.paging li:hover a {
  background: #306fdb;
  color: #fff;
  border-color: #306fdb;
}

.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.n a,
.paging li.p a {
  background: url(../images/paging_btn.png) -31px center no-repeat;
}

.paging li.n a {
  background: url(../images/paging_btn.png) -97px center no-repeat;
}

.paging li.i:hover a {
  background: url(../images/paging_btn_hover.png) 7px center no-repeat #306fdb;
}

.paging li:hover a.e {
  background: url(../images/paging_btn_hover.png) -152px center no-repeat #306fdb;
}

.paging li.e:hover a {
  background: url(../images/paging_btn_hover.png) -152px center no-repeat #306fdb;
}

.paging li.p:hover a {
  background: url(../images/paging_btn_hover.png) -31px center no-repeat #306fdb;
}

.paging li.n:hover a {
  background: url(../images/paging_btn_hover.png) -97px center no-repeat #306fdb;
}

.paging .paging-to {
  font-size: 16px;
  line-height: 33px;
  vertical-align: middle;
  color: #000;
}
.paging .paging-number input {
  width: 31px;
  height: 29px;
  line-height: 29px;
  font-size: 14px;
  text-align: center;
  vertical-align: middle;
  background: transparent;
  color: #b6b6b6;
  border-radius: 4px;
  border: 1px solid #b5b5b5;
}
.paging .paging-left {
  margin-left: 14px;
}
.paging .paging-go {
  margin-left: 10px;
}
.paging .paging-go a {
  display: inline-block;
  width: 52px;
  height: 33px;
  background-color: #306fdb;
  color: #fff;
  text-align: center;
  line-height: 33px;
  font-size: 16px;
  font-weight: normal;
  border: 0;
  border-radius: 3px;
}
.paging .paging-go a:hover {
  text-indent: 1em;
}

.paging-radius.paging li,
.paging-radius.paging li.thisclass a,
.paging-radius.paging li a {
  border-radius: 50%;
}
.paging-radius.paging li.thisclass a,
.paging-radius.paging li:hover a {
  background-color: #306fdb;
  color: #000;
  border-color: #306fdb;
}
.paging-radius.paging li.p:hover a {
  background: url(../images/paging_btn.png) -31px center no-repeat #306fdb;
}
.paging-radius.paging li.n:hover a {
  background: url(../images/paging_btn.png) -97px center no-repeat #306fdb;
}

.pading-border li a {
  border: 1px solid #b5b5b5;
}

.pading-bg-transparent li a {
  border: 1px solid #b5b5b5;
  background-color: transparent;
}

@media screen and (max-width: 640px) {
  .paging {
    padding: 35px 0 45px;
  }
  .paging li a {
    width: 24px;
    height: 24px;
    line-height: 24px;
  }
  .paging li.p a {
    background-position-x: -33px;
  }
  .paging li.n a {
    background-position-x: -100px;
  }
  .paging .paging-to {
    line-height: 24px;
    font-size: 14px;
    color: #b6b6b6;
  }
  .paging .paging-number input {
    width: 26px;
    height: 24px;
    line-height: 24px;
    padding: 0;
  }
  .paging .paging-go {
    margin-left: 16px;
  }
  .paging .paging-go a {
    height: 26px;
    line-height: 26px;
    font-size: 14px;
  }
}
html,
body {
  font: 16px/1 "SourceHanSansSC-VF", "Microsoft YaHei";
  color: #1a1a1a;
}

a {
  color: #1a1a1a;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.j-b {
  justify-content: space-between;
}

.f-w {
  -webkit-box-lines: multiple;
  /* 12版 */
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}

.j-c {
  justify-content: center;
}

.a-c {
  align-items: center;
}

.flex-1 {
  flex: 1;
}

.fc {
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

.theme-color {
  color: #f5f5f7;
}

.index-more-style {
  padding: 3.813rem 0 5rem;
  text-align: center;
}
.index-more-style a {
  margin: 0 auto;
  display: block;
  width: 11.313rem;
  height: 2.75rem;
  line-height: 2.75rem;
  border-radius: 1.375rem;
  color: #a0a0a0;
  border: 1px solid #c9c9c9;
}
.index-more-style a:hover {
  background: #f5f5f7;
  border-color: #f5f5f7;
  color: #fff;
  font-weight: bold;
}
.index-more-style.page-more-style a {
  border-radius: 0;
  border-color: #f5f5f7;
  color: #f5f5f7;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.index-more-style.page-more-style a:hover {
  color: #fff;
}

@media screen and (max-width: 640px) {
  .index-more-style {
    padding: 2.5rem 0;
  }
}
.index-button-style {
  display: inline-flex;
  padding: 13px 30px;
  border-radius: 30px;
  min-width: 64px;
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  background-color: #ffffff;
  cursor: pointer;
}
.index-button-style.black {
  background-color: #54595c;
  color: #ffffff;
}

/*------------ index -------------*/
/* ----------------- header -------------- */
.header {
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4.375rem;
  background-color: rgba(0, 0, 0, 0.8);
  transition: all 0.26s ease;
}
.header .container {
  position: relative;
  display: flex;
  height: 100%;
  align-items: center;
}
.header .header-top {
  position: relative;
  width: 100%;
}
.header .header-top .container {
  border-bottom: 1px solid #e5e5e5;
}
.header .header-top .header-logo img {
  width: 95px;
  transition: all 0.23s ease;
}

.header-info {
  flex: 1;
  margin-left: 3rem;
  display: flex;
  align-items: center;
}

.header-nav {
  position: relative;
  display: block;
  width: 100%;
}
.header-nav > ul {
  display: flex;
}
.header-nav ul > li {
  position: relative;
  text-align: center;
  margin-left: 4%;
  margin-right: 4%;
}
.header-nav ul > li.on > a,
.header-nav ul > li:hover > a {
  color: #f5f5f7;
}
.header-nav ul > li.on > a::after,
.header-nav ul > li:hover > a::after {
  transform: scaleX(1);
  width: 100%;
  opacity: 1;
}
.header-nav ul > li:hover .nav-pro {
  opacity: 1;
  visibility: visible;
}
.header-nav ul > li:hover > ol {
  z-index: 999;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header-nav ul > li > ol li {
  position: relative;
}
.header-nav ul > li > a {
  display: block;
  position: relative;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  height: 48px;
  line-height: 48px;
  color: #fff;
}
.header-nav ul > li > a::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  bottom: 0;
  left: 0;
  display: block;
  background-color: #fff;
  transform: scaleX(0);
  transition: all 0.23s ease;
}

.header-nav > ul > li > ol ol li:hover > ol {
  z-index: 999;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.header-nav > ul > li > ol > li:hover > ol {
  z-index: 999;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header-nav > ul > li > ol ol {
  position: absolute;
  top: 0;
  left: 100%;
  width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  transform: translateX(40px);
  box-shadow: 0rem 0.625rem 1.25rem 0rem rgba(0, 0, 0, 0.1);
}
.header-nav ul > li > ol {
  position: absolute;
  top: 59px;
  left: 50%;
  width: 100%;
  width: 200px;
  margin-left: -100px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  transform: translateY(-40px);
  box-shadow: 0rem 0.625rem 1.25rem 0rem rgba(0, 0, 0, 0.1);
}
.header-nav ol li {
  display: block;
  text-align: center;
  background: rgba(0, 0, 0, 0.8);
}
.header-nav ul > li > a > ol a {
  padding: 0;
}
.header-nav ol li a {
  padding: 17px 0;
  text-align: center;
  display: block;
  font-size: 0.875rem;
  height: auto;
  color: #fff;
}
.header-nav ol li:hover > a {
  background-color: #f5f5f7 !important;
  color: #1a1a1a !important;
}

.menu-btn {
  display: none;
  z-index: 9999;
  position: absolute;
  top: 50%;
  right: 6%;
  margin-top: -16px;
  height: 32px;
  text-align: center;
}
.menu-btn span {
  position: relative;
  margin-top: 15px;
  width: 2rem;
  height: 0.2rem;
  display: inline-block;
  background: #f5f5f7;
}
.menu-btn i {
  position: absolute;
  left: 0;
  width: 2rem;
  height: 0.2rem;
  display: block;
  background: #f5f5f7;
  transition-duration: 0.3s, 0.3s;
  -webkit-transition-duration: 0.3s, 0.3s;
  transition-delay: 0.3s, 0s;
  -webkit-transition-delay: 0.3s, 0s;
}
.menu-btn i.menu-btn-top {
  top: -0.7rem;
  transition-property: top, transform;
  -webkit-transition-property: top, transform;
}
.menu-btn i.menu-btn-bottom {
  bottom: -0.7rem;
  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: #f5f5f7;
  transition-delay: 0s, 0.3s;
  -webkit-transition-delay: 0s, 0.3s;
}

.nav-mb {
  display: none;
  z-index: 9999;
  position: absolute;
  width: 100%;
  overflow: hidden;
  top: 4.375rem;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.05);
  transition: all 0.23s ease;
}
.nav-mb ul {
  display: none;
  padding: 20px 5%;
  box-sizing: border-box;
  height: calc(100vh - 66px);
  overflow: hidden;
  overflow-y: scroll;
  margin: 0 auto;
  border-top: 1px solid #eee;
}
.nav-mb ul li.on > a {
  background: rgba(255, 255, 255, 0.5);
}
.nav-mb a {
  padding: 0.5rem 20px;
  display: block;
  line-height: 40px;
  border-bottom: 1px solid #eee;
  position: relative;
  color: #fff;
  font-size: 1.2rem;
}
.nav-mb a.on:after {
  transform: rotate(45deg);
}
.nav-mb a.has-childnav:after {
  display: block;
  position: absolute;
  top: 0.5rem;
  right: 4%;
  font-size: 22px;
  content: "+";
  transition: all 0.2s;
  background: transparent !important;
}
.nav-mb .search-li {
  margin-bottom: 8px;
  overflow: hidden;
}
.nav-mb .search-li input[type="text"] {
  padding: 0;
  padding-left: 2%;
  width: 78%;
  height: 40px;
  float: left;
  border: 0;
  background: #eee;
  outline: none;
}
.nav-mb .search-li input[type="submit"] {
  width: 20%;
  float: left;
  border: 0;
  height: 40px;
  outline: none;
  color: #fff;
  background-color: #f5f5f7;
}
.nav-mb.nav-mb-on {
  height: auto;
}
.nav-mb ol {
  display: none;
  background-color: #1a1a1a;
}
.nav-mb ol ol {
  background-color: #1d1d1d;
}

.search-from {
  z-index: 99999;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: all ease-in-out 0.3s;
}
.search-from.show {
  right: 0%;
  opacity: 1;
}
.search-from.show .search-close-btn {
  transform: rotate(0);
}
.search-from .search-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  background: #000;
  opacity: 0.8;
}
.search-from .search-close-btn {
  z-index: 2;
  position: absolute;
  top: 4rem;
  right: 5rem;
  font-size: 140px;
  vertical-align: top;
  height: 68px;
  font-weight: lighter;
  line-height: 55px;
  color: #fff;
  font-style: normal;
  cursor: pointer;
  width: 68px;
  text-align: center;
  text-indent: -14px;
  transform: rotate(-90deg);
  transition: all 0.5s;
}
.search-from .search-close-btn:hover {
  color: #f5f5f7;
  transform: rotate(90deg);
}
.search-from .search {
  position: absolute;
  z-index: 2;
  max-width: 600px;
  width: 88%;
  height: 60px;
  overflow: hidden;
  margin: auto;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.search-from .search form {
  font-size: 0;
  overflow: hidden;
}
.search-from .search form:hover .text {
  border-color: #f5f5f7;
}
.search-from .search form:hover #search-btn {
  background-color: #f5f5f7;
  background-image: url(../images/icon_search_form.png);
}
.search-from .search #search-btn {
  display: inline-block;
  width: 20%;
  max-width: 60px;
  height: 60px;
  border: 0;
  padding: 0;
  background-color: #f5f5f7;
  background-image: url(../images/icon_search_form.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.5s;
  text-indent: 999999px;
  overflow: hidden;
}
.search-from .search .text {
  display: inline-block;
  border: 0px none;
  background: none;
  width: 80%;
  max-width: 540px;
  padding: 0 20px;
  font-size: 18px;
  height: 60px;
  line-height: 60px;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #f5f5f7;
  color: #fff;
  transition: all 0.5s;
}

.header-block {
  transition: all 0.23s ease;
  height: 4.375rem;
}

.header-search {
  margin-right: 3.188rem;
  margin-top: 33px;
  box-sizing: border-box;
  position: relative;
  width: 19.125rem;
  height: 40px;
  border-radius: 1.25rem;
  overflow: hidden;
  border: solid 1px #bfbfbf;
  font-size: 14px;
}
.header-search input {
  box-sizing: border-box;
  padding: 0 5.575rem 0 1.125rem;
  line-height: 40px;
  width: 100%;
  height: inherit;
}
.header-search .s-btn {
  z-index: 9;
  position: absolute;
  top: -1px;
  right: -1px;
  display: block;
  width: 4.75rem;
  height: 40px;
  color: #fff;
  line-height: 40px;
  text-align: center;
  border: solid 1px #f5f5f7;
  background-color: #f5f5f7;
  border-radius: 1.25rem;
  cursor: pointer;
  transition: all 0.23s ease;
}
.header-search .s-btn:hover {
  background-color: #1a1a1a;
  border-color: #1a1a1a;
}

.header-tel {
  margin-top: 39px;
}
.header-tel i {
  vertical-align: top;
  display: inline-block;
  margin-right: 4px;
  width: 15px;
  height: 16px;
  background: url(../images/icon_tel.png) no-repeat;
}
.header-tel div {
  margin-top: -2px;
  display: inline-block;
}
.header-tel div a {
  font-family: "Oswald-Semi";
  font-weight: bold;
  font-size: 1.375rem;
  color: #666;
  line-height: 1;
}
.header-tel div a:hover {
  color: #f5f5f7;
}
.header-tel div span {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  color: #999;
}

@media screen and (max-width: 1080px) {
  html,
  body {
    font-size: 15px !important;
  }
  .header-from,
  .header-lang,
  .header-nav {
    display: none;
  }
  .header {
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 84px;
  }
  .header-block {
    display: block;
    height: 84px;
  }
  .nav-mb {
    top: 84px;
  }
  .header-search-icon {
    margin-right: 5rem;
  }
  .nav-mb,
  .menu-btn {
    display: block;
  }
  .header-right {
    padding-top: 0;
    padding-bottom: 0;
    position: absolute;
    right: 0;
  }
  .header .header-links {
    display: none;
  }
  .header .header-top .header-logo {
    margin: 12px 0 0;
  }
  .header-tel {
    display: none;
  }
  .header-search {
    margin-right: 100px;
    margin-top: 23px;
    width: 16.125rem;
  }
  .header .header-top .container {
    border-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  html,
  body {
    font-size: 13px !important;
  }
  .nav-mb {
    top: 66px;
  }
  .header .container {
    position: static;
  }
  .header-block,
  .header,
  .header-top {
    height: 66px;
  }
  .header-search {
    display: none;
  }
  .header-right {
    right: 0;
    margin-top: 0;
  }
  .header-right .header-search-icon {
    margin-right: 7.7rem;
  }
  .header-right,
  .header .header-top .header-logo {
    margin: 0;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .search-from .search-close-btn {
    font-size: 60px;
    right: 0rem;
    top: 1rem;
  }
  .header .header-top .header-logo img {
    width: 222px;
  }
}
.nav-pro {
  top: 48px;
  left: 0;
  position: absolute;
  padding-top: 3px;
  width: 643px;
  overflow: hidden;
  box-shadow: 0rem 0.625rem 1.25rem 0rem rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.23s ease;
}
.nav-pro .nav-pro-p {
  position: relative;
  float: left;
  box-sizing: border-box;
  width: 242px;
  padding: 0.25rem 0 0.25rem 1.625rem;
  background-color: #fff;
  text-align: left;
}
.nav-pro .nav-pro-p::after {
  top: 50%;
  right: 0;
  margin-top: -6.4375rem;
  position: absolute;
  display: block;
  width: 1px;
  height: 12.875rem;
  background-color: #999;
  content: "";
}
.nav-pro .nav-pro-p p {
  margin: 0.5rem 0;
  padding: 0.8rem 0;
  font-size: 15px;
  cursor: default;
}
.nav-pro .nav-pro-p p::before {
  content: "";
  margin-right: 0.625rem;
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: #848484;
  vertical-align: middle;
  border-radius: 50%;
}
.nav-pro .nav-pro-p p.on,
.nav-pro .nav-pro-p p:hover {
  color: #f5f5f7;
}
.nav-pro .nav-pro-p p.on::before,
.nav-pro .nav-pro-p p:hover::before {
  background-color: #f5f5f7;
}
.nav-pro .nav-pro-c-wrap {
  float: left;
  box-sizing: border-box;
  width: calc(100% - 242px);
  background-color: #fff;
  padding: 0.25rem 0 0.25rem 2.5rem;
}
.nav-pro .nav-pro-c-wrap div.on {
  display: block;
}
.nav-pro .nav-pro-c-wrap div {
  display: none;
  text-align: left;
}
.nav-pro .nav-pro-c-wrap div a {
  display: block;
  margin: 0.5rem 0;
  padding: 0.8rem 0;
}
.nav-pro .nav-pro-c-wrap div a:hover {
  color: #f5f5f7;
}

/* ----------------- banner -------------- */
.banner {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  /* 点 */
  /* 左右按钮 */
}
.banner-swiper a {
  display: block;
  width: 100%;
  height: 100%;
}
.banner-swiper .swiper-slide {
  height: inherit;
}
.banner-swiper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-video-mask {
  z-index: 2;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}
.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner .banner-pagination {
  z-index: 9;
  position: absolute;
  left: 0;
  bottom: 2.25rem;
  width: 100%;
  text-align: center;
}
.banner .banner-pagination .swiper-active-switch {
  background: #fff;
}
.banner .swiper-pagination-switch,
.banner .swiper-pagination-bullet {
  display: inline-block;
  margin: 0 12px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: none;
  outline: none;
  cursor: pointer;
}
.banner .swiper-pagination-switch.swiper-pagination-bullet-active,
.banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff;
}

@media screen and (max-width: 640px) {
  .banner .banner-pagination.block .swiper-pagination-switch,
  .banner .banner-pagination.block .swiper-pagination-bullet {
    width: 0.5rem;
    height: 0.5rem;
  }
  .banner .banner-pagination,
  .banner .swiper-pagination {
    bottom: 0.8rem;
  }
  .owl-carousel .owl-dot {
    margin: 0 4px;
    width: 8px;
    height: 8px;
  }
  .swiper-pagination-switch,
  .swiper-pagination-bullet {
    margin: 0 4px !important;
    width: 0.5rem !important;
    height: 0.5rem !important;
  }
}
.banner-content-info {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  top: 5vw;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  box-sizing: border-box;
}
.slide-0 .banner-content-info {
  justify-content: center;
  top: 0;
}

.banner-content-sub-title {
  margin-bottom: 1.5rem;
}

.banner-content-title {
  box-sizing: border-box;
  font-size: 3.75rem;
  color: #fff;
  font-weight: bold;
}

.banner-content-sub-title {
  line-height: 1.4;
  text-align: center;
  font-size: 1.125rem;
  letter-spacing: 2.7px;
  color: #fff;
  font-weight: normal;
}

.banner-content-title2 {
  box-sizing: border-box;
  font-size: 3.75rem;
  color: #fff;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}

.banner-btn:hover {
  background: #1a1a1a;
}

.banner-btn {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 10.875rem;
  height: 3.25rem;
  background: #59595f;
  border-radius: 2.38rem;
  font-size: 1.125rem;
  font-weight: bold;
  transition: all 0.23s ease;
}

@media screen and (max-width: 1660px) {
  .banner-content-sub-title {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 1440px) {
  .banner-content-sub-title {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 1440px) {
  .banner-btn {
    width: 11.5rem;
    height: 3.25rem;
    font-size: 1rem;
  }
}
@media screen and (max-width: 1230px) {
  .banner-content-info {
    top: 6vw;
  }
}
@media screen and (max-width: 767px) {
  .banner-content-title {
    font-size: 2.2rem;
  }
  .banner-content-sub-title {
    font-size: 14px;
    margin: 0.5rem 0;
  }
  .banner-content-title2 {
    font-size: 2rem;
  }
  .banner-content-info {
    top: 27vw;
  }
}
.page-pagination {
  z-index: 9;
  position: absolute;
  left: 0;
  bottom: 1.25rem;
  width: 100%;
  text-align: center;
}
.page-pagination .swiper-active-switch {
  background: #1a1a1a;
}

.swiper-pagination-switch,
.swiper-pagination-bullet {
  display: inline-block;
  margin: 0 8px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #d1d1d1;
  box-shadow: none;
  outline: none;
  cursor: pointer;
}
.swiper-pagination-switch.swiper-pagination-bullet-active,
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #1a1a1a;
}

.white-style .swiper-pagination-switch,
.white-style .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.6);
}
.white-style .swiper-pagination-switch.swiper-pagination-bullet-active,
.white-style .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff;
}

.index-title-style {
  margin-bottom: 2.125rem;
  padding: 5.5rem 0 0;
  text-align: center;
  font-size: 2.125rem;
  line-height: 1;
}
.index-title-style.white-style {
  color: #fff;
}
.index-title-style.white-style::after {
  background-color: #eb8080;
}
.index-title-style::after {
  content: "";
  display: block;
  margin: 1rem auto 0;
  width: 3.75rem;
  height: 3px;
  background-color: #f5f5f7;
}
.index-title-style small {
  display: inline-block;
  font-size: 0.938rem;
  color: #999;
  line-height: 1.625rem;
}

@media screen and (max-width: 768px) {
  .index-title-style {
    margin-bottom: 1.125rem;
    padding: 3.2rem 0 0;
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .index-title-style {
    margin-bottom: 2.125rem;
    font-size: 1.7rem;
  }
}
.tab-list {
  margin-bottom: 2.063rem;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.tab-list span {
  padding: 0 1.813rem;
  display: inline-block;
  height: 2.5rem;
  line-height: 2.5rem;
  color: #333;
  cursor: pointer;
}
.tab-list span:hover,
.tab-list span.on {
  background-color: #f5f5f7;
  color: #fff;
}

.pic-item {
  position: relative;
  display: block;
  overflow: hidden;
}
.pic-item:hover img {
  transform: translate(-50%, -50%) scale(1.1);
}
.pic-item figure {
  overflow: hidden;
  position: relative;
  height: 0;
}
.pic-item figure img {
  position: absolute;
  width: 66.625%;
  height: 100%;
  top: 50%;
  left: 50%;
  border-radius: 20px;
  transform: translate(-50%, -50%);
  transition: all 0.4s;
  -o-object-fit: cover;
  object-fit: cover;
}
.pic-item figcaption {
  z-index: 9;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

.more-text {
  display: inline-block;
  margin-top: 2.25rem;
  font-size: 14px;
  color: #f34a48;
}
.more-text:hover {
  font-weight: bold;
  color: #f5f5f7;
}

.more-block {
  display: inline-block;
  margin-top: 1.25rem;
  width: 6.75rem;
  height: 2.5rem;
  line-height: 2.5rem;
  text-align: center;
  font-size: 14px;
  background-color: #f5f5f7;
  color: #fff;
}
.more-block:hover {
  background-color: #1a1a1a;
}

.index-news {
  padding-bottom: 4.563rem;
}

.index-news-wrap {
  overflow: hidden;
}
.index-news-wrap a figure {
  padding-bottom: 54.054%;
}
.index-news-wrap a figure img {
  transition: all 0.3s ease !important;
}
.index-news-wrap a h4 {
  padding-top: 1.575rem;
  padding-bottom: 1.08rem;
  font-size: 1.063rem;
  line-height: 1.625rem;
  color: #000;
  font-weight: normal;
  transition: all 0.23s ease;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.index-news-wrap a p {
  font-size: 14px;
  line-height: 1.375rem;
  color: #999;
  transition: all 0.23s ease;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.index-news-wrap a span {
  display: block;
  padding-top: 1.2rem;
  font-size: 14px;
  line-height: 1;
  color: #999;
}
.index-news-wrap a:hover h4 {
  color: #f5f5f7;
}
.index-news-wrap a:hover p {
  color: #666;
}
.index-news-wrap .owl-controls {
  margin-top: 2.56rem;
}

@media screen and (max-width: 767px) {
  .index-news-wrap a h4 {
    font-weight: bold;
    padding-top: 0.975rem;
    padding-bottom: 0.88rem;
  }
}
.home-product {
  overflow: hidden;
  background-color: #f8f8f8;
}

.home-product-container {
  width: calc(100vw - 210px);
  margin: 0 auto;
}

.home-product-list {
  margin-top: 2.625rem;
  margin-bottom: 4.375rem;
  position: relative;
  width: 100%;
}

.home-product-wrap li a {
  background-color: #ffffff;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

.home-product-wrap li figure {
  position: relative;
  padding-bottom: 135.714%;
  border-radius: 1.875rem;
  width: 100%;
  height: 0;
  overflow: hidden;
}

.home-product-wrap li figure .pic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
}

.home-product-wrap .product-show-title {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding-bottom: 9rem;
}

.home-product-wrap li h4 {
  text-align: center;
  margin: 0 0 1.25rem;
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  transition: all 0.22s ease;
  -o-transition: all 0.22s ease;
  -moz-transition: all 0.22s ease;
  -webkit-transition: all 0.22s ease;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.home-product-wrap li span {
  font-size: 14px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: #666666;
  line-height: 1.5rem;
}

.home-product-wrap li:hover .pic {
  transform: scale(1.1);
}

.home-product-wrap li:hover h4 {
  transform: translateY(-4rem);
}

.home-product-wrap li:hover .index-button-style {
  transform: translateY(-1rem);
}

.home-product-list .home-product-lt,
.home-product-list .home-product-rt {
  width: 40px;
  height: 40px;
  background: #2e2e2e;
  border-radius: 6px;
  padding: 0;
  margin: 0;
}

.home-product-list .home-product-lt::after,
.home-product-list .home-product-rt::after {
  width: 8px;
  height: 14px;
  color: #ffffff;
  font-size: small;
}

@media screen and (max-width: 992px) {
  .home-product-list {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }
  .home-product-container {
    width: calc(100vw - 30px);
  }
  .home-product-wrap li h4 {
    font-size: 1.85rem;
  }
}

.home-about {
  position: relative;
  overflow: hidden;
}

.home-about-container .swiper-slide::after {
  position: absolute;
  z-index: 2;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s;
}

.home-about-container .swiper-slide-active::after {
  opacity: 0;
  visibility: hidden;
}

.home-about-wrap li a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.4509803922) 100%
  );
}

.home-about-wrap li a {
  display: block;
  position: relative;
  background-color: #ffffff;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  border-radius: 1.875rem;
  overflow: hidden;
}

.home-about-wrap li figure {
  position: relative;
  padding-bottom: 62.5%;
  border-radius: 1.875rem;
  width: 100%;
  height: 0;
  overflow: hidden;
}

.home-about-wrap li figure .pic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
}

.home-about-wrap .about-show-content {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 0 4.875rem 2rem;
  box-sizing: border-box;
}

.home-about-wrap li .about-title {
  margin: 0 0 1.25rem;
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  transition: all 0.22s ease;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.home-about-wrap li .about-title-sub-en {
  margin: 0 0 1.25rem;
  font-size: 2.25rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.22s ease;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.home-about-wrap li .about-content {
  color: #fff;
  max-height: 3.375rem;
  line-height: 1.6875rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.home-about-wrap li span {
  font-size: 14px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: #666666;
  line-height: 1.5rem;
}

.home-about-wrap li:hover .pic {
  transform: scale(1.05);
}

.home-about-list .home-about-lt,
.home-about-list .home-about-rt {
  width: 40px;
  height: 40px;
  background: #2e2e2e;
  border-radius: 6px;
  padding: 0;
  margin: 0;
}

.home-about-list .home-about-lt::after,
.home-about-list .home-about-rt::after {
  width: 8px;
  height: 14px;
  color: #ffffff;
  font-size: small;
}

.home-about .home-about-pagination {
  position: static;
  padding: 3.2rem 0;
  z-index: 9;
  width: 100%;
  text-align: center;
}
.home-about .home-about-pagination .swiper-active-switch {
  background: #000000;
}
.home-about .swiper-pagination-switch,
.home-about .swiper-pagination-bullet {
  display: inline-block;
  margin: 0 8px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #909090;
  box-shadow: none;
  outline: none;
  cursor: pointer;
}
.home-about .swiper-pagination-switch.swiper-pagination-bullet-active,
.home-about .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #000000;
}

@media screen and (max-width: 992px) {
  .home-about-container {
    width: calc(100vw - 30px);
    margin-left: auto;
    margin-right: auto;
  }
  .home-about-wrap .about-show-content {
  }
}
@media screen and (max-width: 767px) {
  .home-about-wrap li .about-title-sub-en {
    font-size: 1.25rem;
  }
  .home-about-wrap li .about-title {
    font-size: 1.35rem;
  }
  .home-about-wrap .about-show-content {
    padding: 0 1.65rem 1.2rem;
  }
  .home-about .home-about-pagination {
    padding: 1.5rem 0;
  }
}

.footer {
  background-color: #f5f5f7;
  font-size: 14px;
}
.footer a {
  color: #1a1a1a;
}
.footer a:hover {
  font-weight: bold;
  color: #1a1a1a !important;
}
.footer .footer-top {
  padding: 48px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.footer .footer-bottom {
  border-top: 1px solid #e0e0e0;
  padding: 1.625rem 0;
  color: #444445;
  display: flex;
  flex-wrap: wrap;
}
.footer .footer-bottom div {
  margin-right: 20px;
}
.footer .footer-bottom a {
  color: #444445;
}
.footer .footer-title {
  padding: 1rem 0 1rem;
  color: #1e1e1e;
  font-size: 28px;
  font-weight: bold;
}

.social-media-list {
  display: flex;
  text-align: center;
}
.social-media-list .social-media-item {
  cursor: pointer;
}
.social-media-list .social-media-item + .social-media-item {
  margin-left: 2rem;
}
.social-media-list .social-media-name {
  padding-top: 10px;
}
.social-media-list .social-media-img {
  height: 35px;
}

.footer-qrcode-list {
  display: flex;
}
.footer-qrcode-list .footer-qrcode-item {
  margin-left: 34px;
  width: 150px;
}
.footer-qrcode-list .footer-qrcode-item img {
  width: 100%;
}

.footer-qrcode-list .footer-qrcode-item .footer-qrcode-desc {
  text-align: center;
  font-size: 14px;
  padding-top: 10px;
}

.footer-info p {
  padding-left: 0.375rem;
  line-height: 2.075rem;
}

@media screen and (max-width: 767px) {
  .footer .footer-top {
    padding: 2.5rem 0;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-bottom div {
    margin-right: 10px;
  }
  .social-media-list .social-media-img {
    height: 25px;
    width: auto;
  }
  .social-media-list .social-media-img img {
    width: auto;
    height: 100%;
  }
  .social-media-list {
    margin-top: 1.5rem;
  }
  .footer-qrcode-list {
    margin-top: 1.8rem;
  }
  .footer-qrcode-list .footer-qrcode-item:first-child {
    margin-left: 0;
  }
  .footer-qrcode-list .footer-qrcode-item {
    margin-left: 24px;
    width: 100px;
  }
  .footer .footer-title {
    padding-top: 2rem;
    font-size: 1.5rem;
  }
  .social-media-list .social-media-item + .social-media-item {
    margin-left: 1rem;
  }
  .footer .footer-bottom {
    padding: 0.9rem 0 1.24rem;
    line-height: 1.5;
    font-size: 14px;
  }
}

.page-main {
  min-height: 350px;
}

/* --------------- page-banner ------------- */
.page-banner {
  position: relative;
  overflow: hidden;
}
.page-banner.page-banner-center {
  text-align: center;
}
.page-banner .container {
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.page-banner .page-banner-title {
  line-height: 1;
  font-weight: bold;
  font-size: 4.375rem;
  color: #fff;
}
.page-banner .page-banner-title-en {
  position: relative;
  font-size: 5.8125rem;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1;
  text-transform: uppercase;
}
.page-banner .page-banner-title-desc {
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  position: absolute;
  line-height: 1;
  font-weight: normal;
  color: #fff;
  font-size: 1.75rem;
}
.page-banner img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .page-banner {
    width: 100%;
    margin: 0 auto;
    height: 0;
    overflow: hidden;
    position: relative;
    padding-bottom: 70%;
  }
  .page-banner img {
    position: absolute;
    height: 100%;
    width: auto;
    left: 50%;
    max-width: unset;
    transform: translateX(-50%);
  }
  .page-banner small,
  .page-banner h4 {
    font-size: 1.6rem;
  }
  .page-banner .page-banner-title-en {
    font-size: 3.125rem;
  }
  .page-banner .page-banner-title-desc {
    font-size: 1.25rem;
  }
  .page-banner .page-banner-title {
    font-size: 2.375rem;
  }
}
.tab-style {
  margin: 2.5rem 0 0;
}
.tab-style a {
  display: inline-block;
  padding: 1rem 0 1.25rem;
  transition: all 0.3s;
  font-size: 1.25rem;
  font-weight: bold;
  position: relative;
  overflow: hidden;
}
.tab-style a + a {
  margin-left: 1.65rem;
}
.tab-style a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0%);
  width: 3.4375rem;
  height: 0.375rem;
  background-color: #306fdb;
  opacity: 0;
  transition: all 0.3s ease;
}
.tab-style a:hover::after,
.tab-style a.on::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(100%);
}

@media screen and (max-width: 768px) {
  .tab-style {
    margin: 1.2rem 0 1.82rem;
  }
  .tab-style a {
    margin-top: 0.5rem;
  }
}
.page-title {
  text-align: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid #c9c9c9;
}
.page-title h4 {
  padding-bottom: 2.25rem;
  font-size: 2.125rem;
}

@media screen and (max-width: 768px) {
  .page-title h4 {
    padding-bottom: 1.75rem;
    font-size: 1.625rem;
  }
}
.article-text {
  padding-bottom: 1rem;
}

.article-text,
.article-text p {
  font-size: 1rem;
  line-height: 2.4rem;
  color: #333333;
}
.article-text p {
  text-indent: 2em;
}
.article-text img {
  margin: 10px auto;
  display: block;
  max-width: 100%;
}

@media screen and (max-width: 768px) {
  .article-text,
  .article-text p {
    font-size: 15px;
  }
}

.product-detail-info-content,
.product-detail-info-content p {
  font-size: 1rem;
  line-height: 2.4rem;
  color: #333333;
}
.product-detail-info-content img {
  margin: 10px auto;
  display: block;
  max-width: 100%;
}

.page-pb {
  padding-bottom: 4rem;
}

.page-about-wrap {
  padding-top: 4.0625rem;
}

.about-us-content-wrap {
  display: flex;
  flex-wrap: wrap;
}

.about-us-content-left {
  flex: 1;
}
.about-us-content-left .about-us-content-title {
  font-size: 2.5rem;
  font-weight: 700;
}
.about-us-content-left .about-us-content-article {
  margin-top: 1.25rem;
  margin-bottom: 2.5rem;
}

.about-us-content-right {
  width: 22.25rem;
  padding-top: 3.125rem;
}

.about-us-content-right-item {
  text-align: center;
  padding: 1.5rem 0;
  background-image: linear-gradient(
    90deg,
    #ffffff 0%,
    #f4f4f4 48.8%,
    #ffffff 100%
  );
}
.about-us-content-right-item + .about-us-content-right-item {
  margin-top: 1.25rem;
}
.about-us-content-right-item:hover .about-us-content-number {
  color: #306fdb;
}

.about-us-content-number {
  font-size: 3.125rem;
  font-weight: bold;
  transition: all 0.3s;
  cursor: default;
}

.about-us-content-description {
  margin-top: 0.5rem;
  font-size: 15px;
  color: #999;
}

@media screen and (max-width: 768px) {
  .page-about-wrap {
    padding-top: 0;
  }
  .about-us-content-wrap {
    flex-direction: column;
  }
  .about-us-content-left .about-us-content-article {
    margin-bottom: 0;
  }
  .about-us-content-left .about-us-content-title {
    font-size: 1.875rem;
  }
  .about-us-content-right {
    padding-top: 0;
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    padding-bottom: 3.2rem;
  }
  .about-us-content-right-item {
    width: 48.5%;
    margin: 1.5rem 0 0;
  }
}

.team-content-title-wrap {
  display: flex;
  align-items: center;
}

.team-content-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-right: 2.24rem;
  margin-bottom: 5rem;
}
.team-content-title.on a {
  color: #306fdb;
}

.team-content-wrap {
  padding-bottom: 4.0625rem;
}

.team-list-wrap {
  display: flex;
  flex-wrap: wrap;
}
.team-list-wrap .team-item {
  width: 23.8%;
  margin-right: 1.6%;
  margin-bottom: 2.5rem;
}
.team-list-wrap .team-item:nth-of-type(4n) {
  margin-right: 0;
}
.team-list-wrap .team-item:hover .team-content-desc {
  color: #666;
}
.team-list-wrap .team-item:hover p {
  color: #1a1a1a;
}
.team-list-wrap .team-item .team-content-name {
  margin-top: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #3a3a3a;
  text-align: center;
}

.team-list-wrap .team-item .team-content-desc {
  margin-top: 0.875rem;
  font-size: 1rem;
  height: 3.375rem;
  line-height: 1.6875rem;
  color: #999;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  transition: 0.3s;
  text-align: center;
}
.team-list-wrap figure {
  padding-bottom: 100%;
  border-radius: 1rem;
  overflow: hidden;
}
.team-list-wrap .team-item .pic-item figure img {
  -o-object-fit: scale-down;
  object-fit: scale-down;
}

@media screen and (max-width: 767px) {
  .team-content-title {
    /* display: none; */
    font-size: 1.4rem;
  }
  .team-list-wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .team-list-wrap .team-item {
    width: 48.5%;
    margin: 2rem 0 0 !important;
  }
  .team-list-wrap .team-item:nth-of-type(1),
  .team-list-wrap .team-item:nth-of-type(2) {
    margin-top: 0 !important;
  }
  .team-list-wrap .team-item .team-content-name {
    margin: 10px 0 0;
    font-size: 15px;
  }
  .team-list-wrap .team-item .team-content-desc {
    font-size: 13px;
  }
}
.culture-content-wrap {
  position: relative;
  width: 100%;
  background-color: #f5f5f7;
  padding: 12.5rem 0;
}
.culture-content-wrap::before {
  content: "";
  display: block;
  width: 321px;
  height: 846px;
  background: url("../images/culture/culture_bg_left.png") center no-repeat;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.culture-content-wrap::after {
  content: "";
  display: block;
  width: 348px;
  height: 722px;
  background: url("../images/culture/culture_bg_right.png") center no-repeat;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.culture-title {
  text-align: center;
  font-size: 3.75rem;
  color: #1a1a1a;
  font-weight: normal;
  margin-bottom: 3.75rem;
}

.culture-content-item {
  text-align: center;
}
.culture-content-item + .culture-content-item {
  margin-top: 4.125rem;
}

.culture-content-title {
  font-size: 2.5rem;
  font-weight: normal;
  margin: 1.24rem 0 0.875rem;
}

.culture-content-desc {
  font-size: 1.75rem;
  line-height: 2.5rem;
  font-weight: normal;
}

.title-line {
  margin-bottom: 1.25rem;
}
.title-line::before {
  content: "";
  display: block;
  width: 8.4375rem;
  height: 0.625rem;
  background-color: #306fdb;
}
.title-line::after {
  content: "";
  display: block;
  width: 14.6875rem;
  height: 1px;
  background-color: #306fdb;
}

/*     文化       */
.create-hope-item-title-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 1.24rem;
}
.create-hope-item-title-wrap .create-hope-item-img-icon {
  margin-right: 1.24rem;
  width: 4rem;
}

.culture-title {
  text-align: center;
  display: block;
  background: url("../images/culture_title.png") center no-repeat;
  background-size: auto 100%;
  margin: 2.5625rem 0 3.75rem;
}
.culture-title.no-bg {
  background: none;
}
.culture-title.no-bg .culture-title-en {
  margin-top: 1rem;
}
.culture-title .culture-title-en {
  font-size: 2rem;
  color: #e8e8e8;
  font-weight: normal;
}
.culture-title .culture-title-cn {
  margin-top: 0.4rem;
  font-size: 2.5rem;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .culture-content-wrap::before {
    width: 100px;
    height: 480px;
    background: url(../images/culture/culture_bg_left.png) no-repeat center /
      100% auto;
  }
  .culture-content-wrap::after {
    width: 100px;
    height: 480px;
    background: url(../images/culture/culture_bg_right.png) no-repeat center /
      100% auto;
  }
  .culture-content-wrap {
    padding: 3.2rem 0;
  }
  .culture-title {
    margin-top: 1rem;
    font-size: 2.25rem;
    margin: 3.25rem 0 3.25rem;
  }
  .culture-content-title {
    font-size: 1.8rem;
    background: url(../images/culture_title.png) center no-repeat;
    background-size: auto 80%;
  }
  .culture-content-item {
    max-width: 220px;
    margin-left: auto;
    margin-right: auto;
  }
  .culture-content-desc {
    font-size: 1.5rem;
  }

  .culture-title .culture-title-en {
    font-size: 1.2rem;
  }
  .culture-title .culture-title-cn {
    font-size: 1.8rem;
  }
}

.create-hope-wrap .swiper-slide {
  box-sizing: border-box;
  padding: 1.2rem;
  background-color: #f5f5f7;
  border-radius: 1.875rem;
}
.create-hope-wrap .create-hope-item {
  padding: 1rem 1.2rem 1rem;
  height: 11.875rem;
  overflow-x: hidden;
  overflow-y: auto;
  cursor: pointer;
}
.create-hope-wrap .create-hope-item::-webkit-scrollbar {
  width: 4px;
  border-radius: 2px;
}
.create-hope-wrap .create-hope-item::-webkit-scrollbar-track {
  background-color: #f0f0f0;
  border-radius: 2px;
}
.create-hope-wrap .create-hope-item::-webkit-scrollbar-thumb {
  border-radius: 2px;
  background-color: #306fdb;
}
.create-hope-wrap .create-hope-item .create-hope-item-title {
  font-size: 2rem;
  font-weight: normal;
  line-height: 1;
}
.create-hope-wrap .create-hope-item .create-hope-item-desc {
  line-height: 2rem;
}
.create-hope-wrap .swiper-button-prev,
.create-hope-wrap .swiper-button-next {
  z-index: 9;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.create-hope-wrap .swiper-button-prev {
  left: -107px;
}
.create-hope-wrap .swiper-button-next {
  right: -107px;
}

@media screen and (max-width: 767px) {
  .create-hope-title {
    font-size: 1.54rem;
  }
  .create-hope-wrap .create-hope-item,
  .create-hope-wrap .swiper-slide {
    padding: 1rem;
  }
  .create-hope-item-title-wrap .create-hope-item-img-icon {
    width: 3.2rem;
  }

  .enjoy-hope-wrap .enjoy-hope-item .enjoy-hope-item-title,
  .explore-hope-wrap .explore-hope-item .explore-hope-item-title,
  .create-hope-wrap .create-hope-item .create-hope-item-title {
    font-size: 1.625rem !important;
  }
  .enjoy-hope-item-desc,
  .explore-hope-item-desc,
  .create-hope-item-desc {
    font-size: 15px;
  }
  .create-hope-wrap .create-hope-item {
    height: 15rem;
  }
}
.explore-hope-item-title-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 1.24rem;
}
.explore-hope-item-title-wrap .explore-hope-item-img-icon {
  margin-right: 1.24rem;
  width: 3.25rem;
}

.explore-hope-wrap .swiper-slide {
  box-sizing: border-box;
  padding: 1.2rem;
  background-color: #f5f5f7;
  border-radius: 1.875rem;
}
.explore-hope-wrap .explore-hope-item {
  padding: 1rem 1.2rem 1rem;
  height: 18.125rem;
  overflow-x: hidden;
  overflow-y: auto;
  cursor: pointer;
}
.explore-hope-wrap .explore-hope-item::-webkit-scrollbar {
  width: 4px;
  border-radius: 2px;
}
.explore-hope-wrap .explore-hope-item::-webkit-scrollbar-track {
  background-color: #f0f0f0;
  border-radius: 2px;
}
.explore-hope-wrap .explore-hope-item::-webkit-scrollbar-thumb {
  border-radius: 2px;
  background-color: #306fdb;
}
.explore-hope-wrap .explore-hope-item .explore-hope-item-title {
  font-size: 2rem;
  font-weight: normal;
  line-height: 1;
}
.explore-hope-wrap .explore-hope-item .explore-hope-item-desc {
  line-height: 2rem;
}
.explore-hope-wrap .swiper-button-prev,
.explore-hope-wrap .swiper-button-next {
  z-index: 9;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.explore-hope-wrap .swiper-button-prev {
  left: -107px;
}
.explore-hope-wrap .swiper-button-next {
  right: -107px;
}

.enjoy-hope-item-title-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 1.24rem;
}
.enjoy-hope-item-title-wrap .enjoy-hope-item-img-icon {
  margin-right: 1.24rem;
  width: 3.25rem;
}

.enjoy-hope-wrap .swiper-slide {
  box-sizing: border-box;
  padding: 1.2rem;
  background-color: #f5f5f7;
  border-radius: 1.875rem;
}
.enjoy-hope-wrap .enjoy-hope-item {
  padding: 1rem 1.2rem 1rem;
  height: 18.125rem;
  overflow-x: hidden;
  overflow-y: auto;
  cursor: pointer;
}
.enjoy-hope-wrap .enjoy-hope-item::-webkit-scrollbar {
  width: 4px;
  border-radius: 2px;
}
.enjoy-hope-wrap .enjoy-hope-item::-webkit-scrollbar-track {
  background-color: #f0f0f0;
  border-radius: 2px;
}
.enjoy-hope-wrap .enjoy-hope-item::-webkit-scrollbar-thumb {
  border-radius: 2px;
  background-color: #306fdb;
}
.enjoy-hope-wrap .enjoy-hope-item .enjoy-hope-item-title {
  font-size: 2rem;
  font-weight: normal;
  line-height: 1;
}
.enjoy-hope-wrap .enjoy-hope-item .enjoy-hope-item-desc {
  line-height: 2rem;
}
.enjoy-hope-wrap .swiper-button-prev,
.enjoy-hope-wrap .swiper-button-next {
  z-index: 9;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.enjoy-hope-wrap .swiper-button-prev {
  left: -107px;
}
.enjoy-hope-wrap .swiper-button-next {
  right: -107px;
}

.hope-content-wrap {
  padding: 6.25rem 0;
  background-color: #fafafc;
}
.hope-content-wrap .article-content {
  max-width: 50rem;
  margin: 0 auto;
}
.hope-content-wrap .article-content p {
  margin-top: 0.5rem;
}
.hope-content-wrap .article-content,
.hope-content-wrap .article-content p {
  font-size: 1.125rem;
  line-height: 2.2rem;
}

.hope-title-wrap {
  position: relative;
  text-align: center;
  margin-bottom: 2.5rem;
}
.hope-title-wrap .hope-title-douhao {
  width: 4.375rem;
  position: absolute;
  right: 0;
  bottom: 0;
}

.hope-title {
  font-size: 3.75rem;
  font-weight: normal;
  line-height: 1;
}

.enterprise-mission-content-wrap {
  padding-bottom: 7.5rem;
}

.corporate-vision-content-wrap {
  padding: 4.0625rem 0 7.5rem;
  background-color: #f5f5f7;
}

.corporate-vision-wrap .corporate-vision-item-img-icon {
  width: 5rem;
  margin-bottom: 1.2rem;
}
.corporate-vision-wrap .swiper-slide {
  box-sizing: border-box;
  padding: 1.2rem;
  background-color: #fff;
  border-radius: 1.875rem;
}
.corporate-vision-wrap .corporate-vision-item {
  padding: 1rem 1.2rem 1rem;
  height: 18.125rem;
  overflow-x: hidden;
  overflow-y: auto;
  cursor: pointer;
}
.corporate-vision-wrap .corporate-vision-item::-webkit-scrollbar {
  width: 4px;
  border-radius: 2px;
}
.corporate-vision-wrap .corporate-vision-item::-webkit-scrollbar-track {
  background-color: #f0f0f0;
  border-radius: 2px;
}
.corporate-vision-wrap .corporate-vision-item::-webkit-scrollbar-thumb {
  border-radius: 2px;
  background-color: #306fdb;
}
.corporate-vision-wrap .corporate-vision-item .corporate-vision-item-title {
  font-size: 1.875rem;
  font-weight: normal;
  line-height: 1;
  margin-bottom: 1rem;
}
.corporate-vision-wrap .corporate-vision-item .corporate-vision-item-desc {
  line-height: 2rem;
}
.corporate-vision-wrap .swiper-button-prev,
.corporate-vision-wrap .swiper-button-next {
  z-index: 9;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.corporate-vision-wrap .swiper-button-prev {
  left: -107px;
}
.corporate-vision-wrap .swiper-button-next {
  right: -107px;
}

.core-values {
  position: relative;
  overflow: hidden;
}

.core-values-container .swiper-slide::after {
  position: absolute;
  z-index: 2;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s;
}

.core-values-container .swiper-slide-active::after {
  opacity: 0;
  visibility: inherit;
}

.core-values-wrap li a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.4509803922) 100%
  );
}

.core-values-wrap li a {
  display: block;
  position: relative;
  background-color: #ffffff;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  border-radius: 1.875rem;
  overflow: hidden;
}

.core-values-wrap li figure {
  position: relative;
  padding-bottom: 62.5%;
  border-radius: 1.875rem;
  width: 100%;
  height: 0;
  overflow: hidden;
}

.core-values-wrap li figure .pic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
}

.core-values-wrap .core-values-show-content {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 0 4.875rem 2rem;
  box-sizing: border-box;
}

.core-values-wrap li .core-values-title {
  margin: 0 0 1.25rem;
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  transition: all 0.22s ease;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.core-values-wrap li .core-values-content {
  color: #fff;
  max-height: 3.375rem;
  line-height: 1.6875rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.core-values-wrap li span {
  font-size: 14px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: #666666;
  line-height: 1.5rem;
}

.core-values-wrap li:hover .pic {
  transform: scale(1.05);
}

.core-values-list .core-values-lt,
.core-values-list .core-values-rt {
  width: 40px;
  height: 40px;
  background: #2e2e2e;
  border-radius: 6px;
  padding: 0;
  margin: 0;
}

.core-values-list .core-values-lt::after,
.core-values-list .core-values-rt::after {
  width: 8px;
  height: 14px;
  color: #ffffff;
  font-size: small;
}

.swiper-btn-wrap {
  margin: 2.4rem auto;
  display: flex;
  justify-content: flex-end;
}

.page-swiper-btn.swiper-button-prev {
  margin-right: 2rem;
}

.page-swiper-btn.swiper-button-prev,
.page-swiper-btn.swiper-button-next {
  margin-top: 0;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: #f5f5f5;
  overflow: hidden;
  position: static;
  transition: all 0.2s;
  box-sizing: border-box;
  color: #1a1a1a;
}
.page-swiper-btn.swiper-button-prev:hover,
.page-swiper-btn.swiper-button-next:hover {
  background-color: #0f2769;
  color: #fff;
}

.page-swiper-btn.swiper-button-prev.swiper-button-disabled,
.page-swiper-btn.swiper-button-next.swiper-button-disabled {
  opacity: 0.5;
  cursor: no-drop;
}

.page-swiper-btn.swiper-button-prev::after,
.page-swiper-btn.swiper-button-next::after {
  display: none;
}

@media screen and (max-width: 768px) {
  .corporate-vision-content-wrap {
    padding: 0 0 3.2rem;
    overflow: hidden;
  }
  .enterprise-mission-content-wrap {
    padding-bottom: 3.2rem !important;
  }
  .corporate-vision-wrap .corporate-vision-item-img-icon {
    width: 3.2rem;
  }
  .corporate-vision-wrap .corporate-vision-item .corporate-vision-item-title {
    font-size: 1.625rem;
    line-height: 1.5;
  }
  .corporate-vision-item-desc {
    font-size: 15px;
  }
  .corporate-vision-wrap .corporate-vision-item {
    height: 19rem;
  }
  .core-values-container {
    width: calc(100vw - 30px);
    margin: 0 auto;
  }
  .core-values-wrap li figure {
    border-radius: 15px;
  }
  .swiper-btn-wrap {
    margin: 1.6rem auto;
  }
  .page-swiper-btn.swiper-button-prev,
  .page-swiper-btn.swiper-button-next {
    width: 30px;
    height: 30px;
  }
  .page-swiper-btn.swiper-button-prev svg,
  .page-swiper-btn.swiper-button-next svg {
    width: 10px;
    height: 10px;
  }

  .hope-title-wrap {
    margin-bottom: 0;
  }
  .hope-content-wrap {
    padding: 2rem 0 0;
  }
  .hope-title {
    font-size: 2.25rem;
    padding: 2rem 0;
  }
  .hope-title-wrap .hope-title-douhao {
    width: 3rem;
    top: 50%;
    transform: translateY(-50%);
  }
}

.team-info-top-wrap {
  padding: 3.2rem 0;
  background-color: #f5f5f7;
}

.team-info-top-item {
  display: flex;
  align-items: center;
}

.team-info-top-left {
  flex: 1;
  margin-right: 2.5rem;
}

.team-info-top-pic {
  width: 22.25rem;
  height: 22.25rem;
}
.team-info-top-pic .img {
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
  object-fit: scale-down;
  border-radius: 1.25rem;
}

.team-info-name {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.team-info-desc {
  margin-top: 1.2rem;
  width: 25rem;
  font-size: 16px;
  color: #999;
  line-height: 2rem;
}

.team-info-bottom-wrap {
  padding: 3.2rem 0;
}

@media screen and (max-width: 768px) {
  .team-info-top-wrap {
    padding: 2rem 0;
  }
  .team-info-top-item {
    flex-direction: column-reverse;
  }
  .team-info-top-pic {
    width: 100%;
    margin-bottom: 1.6rem;
  }
  .team-info-top-left {
    margin-right: 0;
  }
  .team-info-name {
    font-size: 1.625rem;
  }
  .team-info-desc {
    width: 100%;
  }
}

.history-top-wrap {
  background: url("../images/bg_deve_1.png") bottom center no-repeat;
  background-size: cover;
}

.history-top-info {
  padding: 8rem 0 6rem;
  text-align: center;
}

.history-top-toyear {
  color: #b9b9ba;
  font-size: 3.75rem;
  font-weight: bold;
}

.history-top-goal {
  font-weight: bold;
  font-size: 3.75rem;
  line-height: 1.4;
}

.history-top-goal::after {
  content: "";
  display: block;
  width: 8.4375rem;
  height: 0.625rem;
  background-color: #306fdb;
  margin: 1.25rem auto 0;
}

.history-list-wrap {
  display: flex;
  flex-wrap: wrap;
  width: calc(100vw - 224px);
  margin: 0 auto;
}
.history-list-wrap .history-item {
  width: 23.8%;
  padding: 2rem 1.5rem;
  box-sizing: border-box;
  margin-right: 1.6%;
  margin-bottom: 2.5rem;
  background-color: #fff;
  border-radius: 2.25rem;
  box-shadow: 0px 0.625rem 1.875rem rgba(178, 178, 178, 0.1607843137);
  cursor: default;
}
.history-list-wrap .history-item:nth-of-type(4n) {
  margin-right: 0;
}
.history-list-wrap .history-item:hover .team-item-desc {
  color: #666;
}
.history-list-wrap .history-item .history-item-type {
  margin-top: 1.2rem;
  position: relative;
  font-size: 1.25rem;
  line-height: 1;
  padding-left: 30px;
}
.history-list-wrap .history-item .history-item-type::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  position: absolute;
  border: 4px solid #306fdb;
  border-radius: 50%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.history-list-wrap .history-item .history-item-name {
  font-size: 3.125rem;
  line-height: 1;
  font-weight: 700;
  color: #1a1a1a;
}
.history-list-wrap .history-item .history-item-desc {
  margin-top: 0.875rem;
  font-size: 1rem;
  line-height: 1.6875rem;
  color: #999;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  transition: 0.3s;
}
.history-list-wrap figure {
  padding-bottom: 100%;
}

.history-bottom-wrap {
  padding-top: 12.5rem;
  padding-bottom: 37.5rem;
  background: url("../images/bg_deve_2.png") bottom center no-repeat;
  background-size: auto 100%;
}
.history-bottom-wrap .history-bottom-info {
  text-align: center;
}
.history-bottom-wrap .history-bottom-title {
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 1.6;
}
.history-bottom-wrap .history-bottom-desc {
  margin-top: 1.2rem;
  font-size: 1.125rem;
  line-height: 2rem;
  color: #999;
}

@media screen and (max-width: 768px) {
  .history-top-wrap {
    background-size: 100% auto;
  }
  .history-list-wrap {
    width: calc(100vw - 30px);
  }
  .history-top-info {
    padding: 0 0 2rem;
    line-height: 1.6;
  }
  .history-top-toyear {
    font-size: 2.25rem;
  }
  .history-top-goal {
    font-size: 2rem;
  }
  .history-top-goal::after {
    width: 5rem;
    height: 0.425rem;
  }
  .history-list-wrap .history-item {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .history-list-wrap .history-item .history-item-name {
    font-size: 1.625rem;
  }
  .history-list-wrap .history-item .history-item-type::before {
    width: 10px;
    height: 10px;
  }
  .history-list-wrap .history-item .history-item-desc {
    font-size: 15px;
  }

  .history-bottom-wrap {
    padding-top: 5rem;
    padding-bottom: 22rem;
  }
  .history-bottom-info {
    width: calc(100vw - 30px);
    margin: 0 auto;
  }
  .history-bottom-wrap .history-bottom-title {
    font-size: 2rem;
  }
  .history-bottom-wrap .history-bottom-desc {
    font-size: 14px;
  }
}

.honor-content-wrap {
  position: relative;
}

.honor-wrap {
  padding: 6.25rem 0;
  background-color: #f8f8f9;
}

.honor-swiper-wrap .honor-pic {
  position: relative;
  padding-bottom: 52.5%;
  border-radius: 1.875rem;
  width: 100%;
  height: 0;
  overflow: hidden;
}
.honor-swiper-wrap .honor-pic .pic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.honor-swiper-wrap .honor-show-content {
  background-color: #fff;
  padding: 2.5rem 4.1875rem 4.375rem;
  border-radius: 1.25rem;
}
.honor-swiper-wrap .honor-title {
  margin-bottom: 1.25rem;
  font-weight: bold;
  font-size: 2.5rem;
}
.honor-swiper-wrap .title-line {
  margin-bottom: 1.25rem;
}
.honor-swiper-wrap .title-line::before {
  content: "";
  display: block;
  width: 8.4375rem;
  height: 0.625rem;
  background-color: #306fdb;
}
.honor-swiper-wrap .title-line::after {
  content: "";
  display: block;
  width: 14.6875rem;
  height: 1px;
  background-color: #306fdb;
}
.honor-swiper-wrap .honor-content {
  font-size: 1rem;
  line-height: 2rem;
  color: #999;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.honor-swiper-wrap .honor-content p::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-color: #306fdb;
  border-radius: 50%;
  margin-right: 1rem;
}

@media screen and (max-width: 768px) {
  .honor-wrap {
    padding: 3.25rem 0;
  }
  .honor-swiper-wrap .honor-show-content {
    padding: 2rem 2rem 4rem;
  }
  .honor-swiper-wrap .honor-pic {
    border-radius: 1.25rem;
  }
  .honor-swiper-wrap .honor-title {
    font-size: 1.425rem;
  }
  .honor-swiper-wrap .title-line::before {
    width: 4rem;
    height: 0.325rem;
  }
  .honor-swiper-wrap .title-line::after {
    width: 10rem;
  }
  .honor-swiper-wrap .honor-content p::before {
    width: 10px;
    height: 10px;
  }
  .honor-swiper-wrap .honor-content {
    font-size: 15px;
  }
}

.contact-right {
  width: 55.6666667%;
}

.contact-form {
  overflow: hidden;
}

.form-style.border-0 textarea:focus,
.form-style.border-0 textarea:hover,
.form-style.border-0 input:focus,
.form-style.border-0 input:hover,
.form-style textarea:focus,
.form-style textarea:hover,
.form-style input:focus,
.form-style input:hover {
  border: 1px solid #1a1a1a;
}
.form-style.border-0 input,
.form-style.border-0 textarea {
  border: 1px solid transparent;
}
.form-style input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 0 20px;
  height: 56px;
  margin-bottom: 15px;
  outline: none;
  line-height: 56px;
  border: 1px solid #e5e5e5;
  color: #555;
  background: #f5f5f5;
  transition: all 0.23s ease;
}
.form-style input.half {
  width: 48.6%;
  float: left;
}
.form-style input.half:nth-child(2n + 1) {
  margin-right: 1.4%;
}
.form-style input.half:nth-child(2n) {
  margin-left: 1.4%;
}
.form-style textarea {
  display: block;
  box-sizing: border-box;
  padding: 12px 20px;
  width: 100%;
  outline: none;
  border: 1px solid #e5e5e5;
  line-height: 28px;
  height: 11.25rem;
  color: #555;
  background: #f5f5f5;
  transition: all 0.23s ease;
}
.form-style ::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #c9c9c9;
}
.form-style ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #c9c9c9;
}
.form-style :-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #c9c9c9;
}
.form-style button[type="submit"] {
  margin: 2rem auto 0;
  display: block;
  outline: none;
  width: 12.75rem;
  height: 3.2rem;
  line-height: 3.2rem;
  background-color: #306fdb;
  color: #fff;
  border: 0;
  text-align: center;
  font-size: 15px;
  transition: all 0.2s;
  cursor: pointer;
}
.form-style button[type="submit"].border-radius {
  border-radius: 3.25rem;
}
.form-style button[type="submit"]:hover {
  background-color: #1a1a1a;
}

.contact-main {
  overflow: hidden;
  background-color: #fafafa;
}

.contact-wrap {
  margin: 3.5rem 0;
  background-color: #fff;
  padding: 6rem 3.6rem 3.2rem;
}

.contact-top {
  display: flex;
  flex-wrap: wrap;
}

.contact-left {
  width: 37.5%;
  color: #333;
}
.contact-left .contact-title {
  font-size: 2.125rem;
  font-weight: bold;
  line-height: 2rem;
  padding-bottom: 0.5rem;
}
.contact-left p {
  line-height: 1.875rem;
}

.contact-line {
  margin: 3.125rem 0rem 2.5rem;
  display: block;
  width: 4.5rem;
  height: 0.375rem;
  background-color: #306fdb;
}

.icon-contact {
  margin-right: 0.9375rem;
  width: 19px;
  height: 19px;
  display: inline-block;
  vertical-align: middle;
  background: url(../images/icon_xuebi_hover.png) no-repeat;
  background-position: -100% -100%;
}

.icon-address {
  background-position: 0 0;
}

.icon-web {
  background-position: 0 -42px;
}

.icon-email {
  background-position: 0 -86px;
}

.icon-tel {
  background-position: 0 -125px;
}

.contact-bottom {
  padding-top: 2rem;
}

.contact-bottom-title {
  font-size: 1.5rem;
  margin: 2.5rem 0;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .contact-wrap {
    margin: 2.5rem 0 0;
    padding: 2.5rem 1.5rem 2.5rem;
  }
  .contact-right {
    margin-top: 2.2rem;
  }
  .contact-left,
  .contact-right,
  .contact-info {
    float: none;
    width: 100%;
  }
  .contact-left .contact-title {
    font-size: 1.85rem;
  }
  .contact-line {
    margin: 2.125rem 0rem 2rem;
    width: 3.5rem;
  }
  .form-style button[type="submit"] {
    width: 10.75rem;
  }
}
.join-top-info {
  margin-top: 5rem;
  margin-bottom: 2.5rem;
}

.join-year,
.join-title {
  font-weight: bold;
  font-size: 2.8125rem;
  text-align: center;
}

.join-year {
  color: #bababa;
}

.join-title {
  margin-top: 1.25rem;
  position: relative;
}
.join-title::after {
  width: 8.375rem;
  height: 0.5rem;
  background: #306fdb;
  border-radius: 0px 0px 0px 0px;
  content: "";
  display: block;
  margin: 2.1875rem auto 0;
}

.join-desc {
  margin-top: 1.25rem;
  font-size: 1.25rem;
  line-height: 1.6875rem;
  color: #535353;
  text-align: center;
}

.recruitment-list li {
  margin-bottom: 1.125rem;
  color: #535353;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.recruitment-list li.on .job-more {
  margin-top: 4px;
  transform: rotate(90deg);
}
.recruitment-list li .job-title {
  padding-bottom: 0.85rem;
  font-size: 16px;
}
.recruitment-list li .job-title ~ .job-title {
  margin-top: 1.25rem;
}
.recruitment-list li .job-top {
  position: relative;
  padding: 1.5rem 0;
  background-color: #eaeaea;
  cursor: pointer;
  display: flex;
  align-items: center;
  border-radius: 0.625rem;
}
.recruitment-list li .job-bottom {
  display: none;
}
.recruitment-list li .job-bottom.job-text {
  background-color: #fff;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  padding: 1.25rem 1.25rem 2rem;
}
.recruitment-list li .job-bottom.job-text p {
  font-size: 16px;
  color: #333;
  line-height: 27px;
}
.recruitment-list li .job-more {
  position: absolute;
  margin-left: 23px;
  margin-top: 7px;
  display: block;
  width: 20px;
  height: 20px;
  background: url(../images/icon_arrow_right.svg) no-repeat;
  transition: all 0.23s ease;
}
.recruitment-list li .job-1 {
  font-size: 1.375rem;
  font-weight: bold;
  padding-left: 3.375rem;
}
.recruitment-list li span {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 0.75rem;
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .join-top-info {
    margin-top: 3rem;
  }
  .join-top-info .join-year {
    font-size: 1.825rem;
  }
  .join-top-info .join-title {
    font-size: 2rem;
  }
  .join-top-info .join-title::after {
    margin: 1.5rem auto 0;
    width: 4.5rem;
    height: 0.375rem;
  }
  .join-desc {
    font-size: 15px;
    line-height: 1.4;
  }
  .recruitment-list li .job-1 {
    font-size: 16px;
    font-weight: bold;
    padding-left: 40px;
  }
  .recruitment-list li .job-top {
    box-sizing: border-box;
    padding: 1.2rem 2.4rem 1.2rem 0.4rem;
    line-height: 1.4;
  }
  .recruitment-list li .job-bottom.job-text p {
    font-size: 15px;
  }
  .recruitment-list li .job-more {
    margin-left: 8px;
  }
}
.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: #1a1a1a;
}

.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;
  }
}
.product-search-bar {
  margin: 0 auto 1.875rem;
  position: relative;
  background: #ffffff;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding: 0 6px 0 2px;
  width: 100%;
  height: 3.75rem;
  background: #ffffff;
  border-radius: 0.625rem;
}

.product-search-bar .icon-search {
  display: block;
  width: 16px;
  height: 16px;
  color: #999999;
}

.product-search-bar .icon-search img {
  width: 100%;
  vertical-align: top;
}

.product-search-bar .search-input-wrap {
  flex: 1;
}

.product-search-bar .search-input-wrap input {
  padding: 0 15px;
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 100%;
}

.product-search-bar .button {
  display: block;
  width: 6.25rem;
  height: 3rem;
  line-height: 3rem;
  text-align: center;
  border-radius: 0.5rem;
  background-color: #eff2f7;
  color: #306fdb;
  opacity: 1;
  cursor: pointer;
  transition: 0.3s;
}

.product-search-bar .button:hover {
  background-color: #306fdb;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .product-search-bar {
    margin: 0 auto;
    height: 3.2rem;
    padding: 0 0.325rem;
  }
  .product-search-bar .button {
    width: 5.45rem;
    height: 2.5rem;
    line-height: 2.5rem;
  }
}
.select-item-list {
  display: flex;
  margin-bottom: 3rem;
}

.select2-container--default .select2-selection--single {
  border: 0;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  top: 50%;
  margin-top: -14px;
}

.select2-container--default .select2-selection--single {
  width: 100%;
  height: 100%;
}

.select2 .selection,
.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.select-item-list .select2,
.select-wrapper {
  width: 12.81rem !important;
  height: 3.625rem;
  background: #ffffff;
  border-radius: 0.31rem 0.31rem 0.31rem 0.31rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0.9rem;
  cursor: pointer;
}

.select-text {
  color: #999;
}

.select-value {
  display: block;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select-wrapper + .select-wrapper {
  margin-left: 10px;
}

.select2 ~ .select2 {
  margin-left: 10px;
}

.news-filter {
  padding: 2.375rem 0;
  background-color: #f5f5f7;
}

.select-item-title {
  margin-right: 1.5rem;
  font-size: 1.125rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.select-item-list .select2 {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .news-filter {
    padding: 1.5rem 0;
  }
  .select-item-list {
    margin-bottom: 0;
  }
  .select-item-title {
    margin-right: 0;
    display: none;
  }
  .select2 ~ .select2 {
    margin-left: 0;
  }
}

.page-news-list {
  display: inline-block;
  box-sizing: border-box;
  width: 100%;
  padding-top: 2.5rem;
}

.page-news-list li + li {
  margin-top: 1.68rem;
  padding-top: 1.688rem;
  border-top: 1px solid #e5e5e5;
}

.page-news-list li {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 1.68rem;
  transition: 0.2s;
}

.page-news-list li:first-child {
  padding-top: 0;
}

.page-news-list li a:hover {
  box-shadow: 0px 10px 50px 0px rgba(83, 83, 83, 0.15);
}

.page-news-list li:hover .news-more-btn {
  background-color: #306fdb;
  border-color: #306fdb;
  color: #fff;
}

.page-news-list li .page-news-item-a {
  padding: 0;
  display: block;
}

.page-news-list li .page-news-item-a:hover img {
  transform: scale(1.1);
}

.page-news-list li .page-news-item-a:hover .page-news-title {
  color: #306fdb;
}

.page-news-list li .page-news-item-a:hover .page-news-desc {
  color: #1f1f1f;
}

.page-news-list li .page-news-item-a:hover .news-more-btn {
  background-color: #306fdb;
  color: #fff;
}

.page-news-list li .page-news-item-a:hover .news-more-btn i {
  display: none;
}

.page-news-list li .page-news-item-a:hover .news-more-btn i.hover {
  display: block;
}

.page-news-list .pic-wrap {
  padding-bottom: 56.19%;
}

.page-news-list li figure {
  display: flex;
  box-align: center;
  align-items: center;
  box-sizing: border-box;
}

.page-news-list li figure .pic-wrap-big {
  display: block;
  width: 308px;
}

.page-news-list li figure .pic-wrap-big .pic-wrap {
  overflow: hidden;
  height: 0;
  padding-bottom: 63.5467%;
  border-radius: 1rem;
  overflow: hidden;
}

.page-news-list li figure .pic-wrap-big .pic-wrap img {
  width: 100%;
  transition: 0.5s;
}

.page-news-list li figure .page-news-info {
  width: 65.916667%;
  padding: 0 2.25rem 0 3.375rem;
}

.page-news-list li figure .page-news-info .page-news-title {
  font-size: 1.5rem;
  line-height: 1.6;
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  transition: all 0.23s ease;
}

.page-news-list li figure .page-news-info .page-news-desc {
  padding-top: 0.1rem;
  padding-bottom: 0;
  font-size: 1rem;
  line-height: 1.63rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: #999;
  transition: all 0.23s ease;
}

.page-news-list .time {
  padding: 1.0125rem 0;
  display: flex;
  align-items: baseline;
  color: #999;
}

.news-more-btn i.hover {
  display: none;
  width: 0.99rem;
  height: 0.45rem;
  background: url("../images/icon_arrow_right.svg") no-repeat;
}

.news-more-btn i {
  margin-left: 0.5rem;
  display: block;
  width: 0.99rem;
  height: 0.45rem;
  background: url("../images/icon_arrow_right_hover.svg") no-repeat;
}

.news-more-btn {
  overflow: hidden;
  margin-top: 0;
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 155px;
  height: 52px;
  transition: all 0.2s;
  border: 1px solid #eee;
  box-sizing: border-box;
  background-color: #f4f4f4;
  color: #306fdb;
  border-radius: 1.63rem 1.63rem 1.63rem 1.63rem;
}

@media screen and (max-width: 768px) {
  .page-news-list li + li {
    margin-top: 1.8rem;
    margin-bottom: 0;
  }
  .page-news-list li figure {
    flex-direction: column;
  }
  .page-news-list li figure .pic-wrap-big {
    width: 100%;
  }
  .page-news-list li .time-wrap {
    padding: 1rem 1.875rem;
  }
  .page-news-list li figure .page-news-info {
    width: 100%;
    box-sizing: border-box;
    padding: 1rem 0 0;
    margin-top: 0;
  }
  .page-news-list li figure .page-news-info .page-news-title {
    font-size: 1.25rem;
  }
  .page-news-list li figure .pic-wrap {
    width: 100%;
    padding-bottom: 50.789%;
  }
  .page-news-list li figure figcaption {
    width: 100%;
    margin-top: 14px;
    margin-left: 0;
  }
  .page-news-list li figure figcaption h4 {
    font-size: 18px;
  }
  .page-news-list li figure .page-news-info .page-news-desc {
    padding-top: 0.2rem;
    color: #999;
    font-size: 1rem;
    line-height: 1.6;
  }
  .page-news-list .time {
    padding: 0.7125rem 0 0;
  }
  .news-more-btn {
    width: 120px;
    height: 38px;
    font-size: 12px;
  }
  .page-news-info {
    font-size: 13px;
  }
}
/* new-article */
.page-news-article {
  padding-top: 3rem;
}

.news-show .news-title {
  text-align: center;
  font-size: 2rem;
  font-weight: normal;
  line-height: 1.68;
}

.news-show .news-date {
  font-size: 1rem;
  color: #999999;
  text-align: center;
  display: block;
  margin: 0.65rem 0 3.2rem;
}

.news-show .news-content {
  line-height: 1.72;
}

@media screen and (max-width: 767px) {
  .news-show .news-title {
    font-size: 16px;
    font-weight: bold;
  }
  .news-show .news-date {
    font-size: 15px;
    margin-bottom: 1.4rem;
  }
  .news-show .news-content {
    font-size: 15px;
  }
  .other-news-title {
    font-size: 1.625rem;
  }
  .article-news-paging .item {
    font-size: 15px !important;
  }
}
.article-news-paging {
  padding-top: 3.25rem;
}

.article-news-paging .item + .item {
  margin-top: 0.8rem;
}

.article-news-paging .item a {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.article-news-paging .item {
  font-size: 1rem;
  margin-bottom: 0.725rem;
  color: #1a1a1a;
  font-weight: normal;
}

.article-news-paging a:hover {
  color: #306fdb;
}

.other-news {
  padding-bottom: 3.25rem;
}

.other-news-title {
  padding-top: 3.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e5e5;
  font-size: 2rem;
  font-weight: bold;
}

.product-section {
  padding: 5.625rem 0 0;
}

.product-left {
  width: 206px;
}

.product-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2.5rem;
}

.product-menu {
  list-style: none;
  padding: 0;
}
.product-menu > li {
  margin-bottom: 10px;
}

.product-menu-item {
  margin-bottom: 10px;
}
.product-menu-item > .product-submenu {
  margin-top: 1.25rem;
}

.product-menu-link {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  display: block;
  padding: 5px 0;
  position: relative;
}

.product-menu-link.has-submenu::after {
  content: "";
  margin-left: 20px;
  display: inline-block;
  width: 20px;
  height: 14px;
  background: url(../images/icon_arrow_right.svg) no-repeat;
  transition: transform 0.3s;
  transform: translate(0, 1px) rotate(0deg);
}

/* .product-menu-item.active > .product-menu-link.has-submenu::after {
  transform: translate(0, 1px) rotate(90deg);
} */
.product-menu .active > a {
  color: #306fdb;
  font-weight: bold;
}

.product-submenu {
  list-style: none;
  padding-left: 10px;
  display: none;
}

.product-menu-item.active > .product-submenu {
  display: block;
}

.product-submenu li {
  margin-top: 5px;
}

.product-submenu a {
  margin: 3px 0;
  text-decoration: none;
  color: #1a1a1a;
  display: block;
  padding: 6px 21px;
  position: relative;
  border-radius: 20px;
}

.product-submenu a.has-submenu::after {
  content: "";
  width: 11px;
  height: 5px;
  background: url(../images/icon_arrow_down.svg) no-repeat center center;
  position: absolute;
  top: 10px;
  right: 10px;
  transition: transform 0.3s;
  transform: rotate(-90deg);
}

.product-submenu li.active > a.has-submenu::after {
  transform: rotate(0deg);
}

.product-submenu .product-submenu {
  display: none;
}

.product-submenu li.active > .product-submenu {
  display: block;
}

.product-submenu a:hover,
.product-submenu a.active {
  background-color: #f5f5f7;
}

.product-section-wrap {
  display: flex;
}

.product-right {
  margin-left: 5.625rem;
  flex: 1;
}

.product-list {
  display: flex;
  flex-wrap: wrap;
}

.product-list .product-item:not(:nth-child(-n + 3)) {
  margin-top: 50px;
}

.product-list .product-item {
  position: relative;
  width: 31.25%;
  margin-right: 3.12%;
  transition: all 0.3s ease;
}

.product-list .product-item:nth-child(3n) {
  margin-right: 0;
}

.product-list li .product-item-title {
  margin-top: 0.86rem;
  font-size: 1.25rem;
  line-height: 1.625rem;
  color: #1a1a1a;
  display: block;
  text-align: center;
  /* white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; */
  transition: color 0.3s ease;
}

.product-list .product-item-desc {
  margin: 0.5rem 0 0;
  font-size: 1rem;
  line-height: 1.5rem;
  transition: color 0.3s ease;
  color: #999;
}

.product-list .product-item .product-info-icon {
  margin-top: 1.25rem;
  max-width: 100%;
  height: 50px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.product-list .product-item:hover .product-item-title {
  color: #306fdb;
}

.product-list .product-item:hover .product-item-desc {
  color: #666;
}

.product-list .pic-wrap {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  overflow: hidden;
  border-radius: 1.25rem;
}

.product-list .pic-wrap img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: scale-down;
  object-fit: scale-down;
  transition: all 0.3s ease;
}

.product-list .product-item:hover .pic-wrap img {
  transform: scale(1.05);
}

@media screen and (max-width: 767px) {
  .product-section-wrap {
    flex-direction: column;
  }
  .product-section {
    padding-top: 0;
  }
  .product-title {
    display: none;
  }
  .product-right,
  .product-left {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .product-list .product-item + .product-item {
    margin-top: 2rem !important;
  }
  .product-list .product-item {
    width: 100%;
    margin-right: 0 !important;
  }
}
.product-info-section {
  padding: 4.6875rem 0 0;
}

.product-info-section-wrap {
  display: flex;
}

.product-info-left {
  width: 35rem;
  margin-right: 2.5rem;
}

.product-model-wrap {
  display: none;
  position: relative;
  width: 35rem;
  height: 35rem;
  border-radius: 1.25rem;
  overflow: hidden;
}

.product-carousel {
  position: relative;
}

.model-play-pause-button {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  font-size: 0;
  background: url("../images/icon_model_rotate.svg") no-repeat center center;
}
.model-play-pause-button.on {
  background: url("../images/icon_model_pause.svg") no-repeat center center;
}

#modelCanvas {
  width: 100%;
  height: 100%;
}

#loadingContainer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  display: none;
}

#loadingSpinner {
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 10px;
}

#loadingPercentage {
  margin-top: 10px;
  font-size: 18px;
  color: #333;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.product-button-list {
  display: flex;
  margin-top: 20px;
}

.product-button .product-button-img {
  width: 24px;
}

.product-button .product-button-720 {
  width: 32px;
}

.product-button + .product-button {
  margin-left: 1.5625rem;
}

.product-button {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  background-color: #e9effb;
  color: #306fdb;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  transition: 0.3s ease;
}

.product-button.on img,
.product-button:hover img {
  filter: brightness(0) invert(1);
}

.product-button.on,
.product-button:hover {
  background-color: #306fdb;
  color: #fff;
}

.product-button img {
  margin-right: 10px;
  width: 20px;
  height: 20px;
}

.product-info-section-content .product-name {
  margin-top: 3.125rem;
  margin-bottom: 1.25rem;
  font-size: 2.25rem;
  font-weight: bold;
}
.product-info-section-content .product-desc {
  font-size: 1rem;
  line-height: 2.125rem;
  color: #666;
}

.product-info-right {
  flex: 1;
}

.product-info-right {
  width: 100%;
  max-width: 420px;
  margin-left: 40px;
}

.video-container {
  position: relative;
  width: 100%;
  padding-top: 177.77%;
  overflow: hidden;
  border-radius: 20px;
}

#productVideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

#playButton {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: none;
  font-size: 0;
  width: 60px;
  height: 60px;
  background: url("../images/icon_video_play.png") no-repeat center center;
  cursor: pointer;
  transition: 0.3s ease;
}
#playButton.playing {
  display: none;
}

.product-detail-info-section {
  padding: 4.6875rem 0 4.0625rem;
}

.product-detail-info-wrap {
  padding-top: 4.6875rem;
  border-top: 1px solid #e5e5e5;
}
.product-pic-and-model-wrap img {
  width: 100%;
  height: 100%;
}

.product-carousel .swiper-slide {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 133%;
  /* background-image: linear-gradient(to bottom, #f1f1f1, #f9f9f9); */
}
.product-carousel .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}

/* .product-carousel{
  width: 100%;
  padding-top: 177%;
  position: relative;
  height: 0;
} */

.product-detail-info-title {
  font-size: 2.25rem;
  font-weight: bold;
  padding-bottom: 3.125rem;
}
@media screen and (max-width: 768px) {
  .product-detail-info-title {
    font-size: 1.625rem;
  }
  .product-info-section-wrap {
    display: flex;
    flex-direction: column;
  }

  .product-info-left {
    width: 100% !important;
    margin-right: 0 !important;
  }
  .product-model-wrap {
    width: 100% !important;
    height: auto !important;
    /* 比例1:1 */
    aspect-ratio: 1 / 1;
  }
  #modelCanvas {
    width: 100%;
    height: 100%;
  }
  .product-info-section {
    padding-top: 2rem;
  }
  .product-info-right {
    max-width: 100%;
    margin-left: 0;
  }
  .product-info-section-content .product-desc {
    font-size: 15px;
    margin-bottom: 1.875rem;
  }
  .product-info-section-content .product-name {
    font-size: 1.625rem;
  }
  .product-detail-info-section {
    padding: 2.5rem 0;
  }
  .product-detail-info-wrap {
    padding-top: 2.5rem;
  }
  .product-detail-info-title {
    padding-bottom: 1.875rem;
  }
  .product-detail-info-content,
  .product-detail-info-content p {
    font-size: 15px;
  }
}

.header-language {
  margin-top: 0;
  color: #fff;
}

.header-language span {
  display: flex;
  align-items: center;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
}

.header-language .icon-xiajiantou {
  background: url("../images/icon_arrow_down.png") no-repeat;
  margin-left: 8px;
  width: 11px;
  height: 7px;
  display: inline-block;
  vertical-align: middle;
}

.header-language.on ol,
.header-language:hover ol {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-language ol {
  z-index: 9;
  padding-top: 10px;
  position: absolute;
  width: 80px;
  left: 50%;
  margin-left: -40px;
  transition: transform 0.2s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10%);
}

.header-language ol a {
  text-align: center;
  display: block;
  background-color: rgba(255, 255, 255, 1);
  color: rgba(0, 0, 0, 0.4);
  padding: 7px 10px;
}

.header-language ol a:hover {
  background-color: #000;
  color: #fff;
}
@media screen and (max-width: 1180px) {
  .header-language {
    position: absolute;
    right: 4.7rem;
  }
}
@media screen and (max-width: 767px) {
  .header-language {
    position: absolute;
    right: 5.7rem;
  }
}

[data-fancybox] img {
  max-width: 100%;
}
