@font-face {
  font-family: 'DIN-Medium';
  src: url('../fonts/DIN-Medium.otf');
}
@font-face {
  font-family: 'Montserrat-SemiBold';
  src: url('../fonts/Montserrat-SemiBold.otf');
}
@font-face {
  font-family: 'PingFang-SC-Regular';
  src: url('../fonts/PingFang-SC-Regular.ttf');
}
@font-face {
  font-family: 'PingFang-SC-Semibold';
  src: url('../fonts/PingFang-SC-Semibold.otf');
}
:root {
  --Noto-Sans-SC: 'Noto Sans SC', sans-serif;
  --Noto-Serif-SC: 'Noto Serif SC', sans-serif;
  --Song-Myung: 'Song Myung', sans-serif;
  --Roboto: 'Roboto', sans-serif;
  --Abel: 'Abel', sans-serif;
  --Barlow-Condensed: 'Barlow Condensed', sans-serif;
  --Din: 'DIN-Medium', sans-serif;
  --Montserrat-SemiBold: 'Montserrat-SemiBold', 'sans-serif';
  --PingFang-SC: 'PingFang-SC', 'sans-serif';
}
* {
  font-family: "PingFang-SC-Regular", "Microsoft YaHei", Arial, Helvetica, sans-serif;
}
h1,
h2,
h3,
h4,
h5,
p {
  transition: all 0.5s;
}
a {
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
  transition: all 0.5s;
}
html,
body {
  scroll-behavior: smooth;
}
body {
  overflow: visible;
}
body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  background-color: #fff;
}
body::-webkit-scrollbar {
  width: 5px;
  background-color: #fff;
}
body::-webkit-scrollbar-thumb {
  border-radius: 2px;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
  background-color: #666;
}
body:hover::-webkit-scrollbar-thumb {
  background-color: #ccc;
}
.out-header {
  height: 90px;
  width: 100%;
}
.index-out-header {
  display: none;
}
.container {
  max-width: 1650px;
  width: 90%;
  margin: 0 auto;
}
.blank {
  margin: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  min-height: 0 !important;
  border: 0 !important;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 6, 26, 0.19);
  z-index: 99;
  transition: all 0.5s;
}
header .logo {
  width: 14%;
}
header .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
}
header .lv1 {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
header .lv1 > li {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 2px;
}
header .lv1 > li a {
  color: #020b2e;
  font-size: 18px;
  transition: all 0.5s;
}
header .lv1 > li a:hover {
  opacity: 0.5;
}
header .lv1 .active a {
  color: #1fa398;
}
header nav {
  width: 66.66667%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
header .search-and-lang {
  display: flex;
  margin-left: 9.814815%;
}
header .search {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 30px;
}
header .search input {
  width: 146px;
  height: 34px;
  border-radius: 17px;
  background-color: #f0f0f0;
  outline: none;
  padding: 0 30px 0 23px;
  color: #333;
}
header .search input::placeholder {
  color: #999;
}
header .search button {
  position: absolute;
  outline: none;
  background-color: transparent;
  top: 50%;
  right: 9px;
  transform: translate(0, -50%);
  cursor: pointer;
}
header .lang {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 18px;
  color: #333;
}
header .lang i {
  display: inline-block;
  margin-top: -8px;
  margin-left: 11px;
}
header .lang ul {
  position: absolute;
  top: 100%;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
}
header .lang ul li {
  text-align: center;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
}
header .lang ul li a {
  color: #333;
  display: block;
  padding: 10px 0;
}
header .lang ul li a:hover {
  color: #962326;
}
header .lang:hover ul {
  opacity: 1;
  visibility: visible;
}
.header-wrapper {
  position: relative;
  z-index: 98;
}
.header-content {
  display: none;
  width: 100%;
  position: relative;
  background-color: #fff;
  padding-top: 40px;
  padding-bottom: 6.25%;
}
.header-content .container {
  display: flex;
}
.header-content .container .lt {
  width: 33.3333%;
  margin-right: 3%;
}
.header-content .container .lt ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.header-content .container .lt ul li {
  width: 49%;
  font-size: 16px;
  margin-bottom: 0.625em;
  display: flex;
}
.header-content .container .lt ul li::before {
  display: inline-block;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid #666;
  border-right: 1px solid #666;
  transform: rotate(45deg);
  margin-right: 0.5em;
  margin-top: 0.5em;
}
.header-content .container .lt ul li a {
  color: #333;
}
.header-content .container .lt ul li a:hover {
  color: #1fa398;
}
.header-content .container .rt {
  width: 18%;
}
.header-content .container .prod-header-rt .swiper-button-next {

  right: -5%;
}
.header-content .container .prod-header-rt .swiper-button-prev {

  left: -5%;
}
.header-content .container .prod-header-rt .swiper-button-prev::after,
.header-content .container .prod-header-rt .swiper-button-next::after  {
  font-size: 20px;
  font-weight: 700;
}
.header-content .container .prod-header-rt {
  width: 62%;
  position: relative;
}
.header-content .container .rt .pic {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  overflow: hidden;
}
.header-content .container .rt .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .5s;
}

.header-content .container .rt .pic:hover img {
  transform: scale(1.05);
}
.header-content .container .rt p {
  margin-top: 0.5em;
}
.header-content .container .rt p a {
  color: #666;
  font-size: 14px;
}
.header-content .container .rt .on p a {
  color: #1fa398;
}
.header-content .container .rt .swiper-slide:hover p a {
  color: #1fa398;
}
.index-header-content {
  padding-top: 130px;
}
.box {
  width: 100%;
  text-align: center;
  margin: 3.657% 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.pagination {
  display: flex !important;
  text-align: center;
  justify-content: center;
  flex-wrap: wrap;
}
.pagination > li a {
  display: block;
  font-size: 14px;
  padding: 0 15px 0;
  line-height: 38px;
  background-color: #fff;
  margin: 4px;
  color: #333;
  transition: all 0.5s;
}
.pagination .active a {
  color: #fff;
  background-color: #1163ac;
  border: 1px solid transparent;
}
.pagination .active a:hover {
  color: #fff;
}
.pagination li a:hover {
  color: #1163ac;
}
.pagination .btn a {
  padding: 0 5px 0;
}
.pagination .disabled {
  cursor: not-allowed;
}
.pagination .disabled a {
  color: #ccc !important;
  cursor: not-allowed;
  background-color: #fff;
  pointer-events: none;
}
.box .total {
  color: #999;
  padding: 0 0 2px;
  font-size: 12px;
}
#full .section .fp-overflow {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.index-banner {
  flex: 1;
  width: 100%;
  height: 100%;
}
.index-banner .swiper {
  width: 100%;
  height: 100%;
}
.index-banner .swiper .swiper-slide {
  width: 100%;
  height: 100%;
}
.index-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 210px;
  /* transition: 1s linear 2s;
  transform: scale(1.1, 1.1); */
}
.index-banner .swiper-slide-active img,
.index-banner .swiper-slide-duplicate-active img {
  /* transition: 6s linear;
  transform: scale(1, 1); */
}
.index-banner .swiper-pagination {
  bottom: 10%;
  line-height: 1;
}
.index-banner .swiper-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background-color: #fff;
  opacity: 0.5;
  margin: 0 7.5px;
  transition: all 0.5s;
}
.index-banner .swiper-pagination .swiper-pagination-bullet-active {
  width: 25px;
  border-radius: 7.5px;
  opacity: 1;
}
.index-prod-bg {
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.index-prod-bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-title h2 {
  font-size: 32px;
  color: #fff;
  font-weight: 700;
  line-height: 1.6;
}
.index-title h3 {
  font-size: 30px;
  color: #fff;
  font-weight: 700;
  line-height: 1.6;
}
.index-title h5 {
  font-family: Arial;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
}
.index-title .dot em {
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #fff;
  border-radius: 50%;
  margin-right: 4px;
}
.index-title .dot em:nth-child(2) {
  opacity: 0.6;
}
.index-title .dot em:nth-child(3) {
  opacity: 0.3;
}
.index-prod-content .index-title {
  margin-bottom: 4.197531%;
}
.index-prod-content .wrapper {
  max-width: 960px;
  display: flex;
  flex-wrap: wrap;
}
.index-prod-content .wrapper .lt {
  position: relative;
  transform: translate(-30px, 0);
  transition: all 1s;
  opacity: 0;
}
.index-prod-content .wrapper .rt {
  position: relative;
  transform: translate(50px, 0);
  transition: all 1s;
  opacity: 0;
}
.indexProdSwiper .swiper-slide-active .index-prod-content .wrapper .lt,
.indexProdSwiper .swiper-slide-active .index-prod-content .wrapper .rt  {
  transform: translate(0, 0);
  opacity: 1;
}
.index-prod-content .wrapper .lt h2 {
  font-size: 36px;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  max-width: 7em;
  margin-bottom: 0.7em;
}
.index-prod-content .wrapper .lt h5 {
  font-family: Arial;
  font-weight: 700;
  color: #fff;
  font-size: 14px;
  opacity: 0.64;
  text-transform: uppercase;
  display: inline-block;
  max-width: 14em;
  line-height: 1.9;
}
.index-prod-content .wrapper .rt {
  flex: 1;
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  line-height: 1.9;
  padding-left: 27px;
  border-left: 1px solid #000;
  min-height: 7.6em;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  margin-left: 9px;
  text-shadow: 0 3px 5px rgba(0, 0, 0, .5);
}
.index-prod-tab {
  position: absolute;
  width: 100%;
  bottom: 10%;
  display: flex;
  align-items: center;
  z-index: 1;
}
.index-prod-tab em {
  flex: 1;
  border-top: 1px dotted #fff;
  margin: 0 25px;
}
.index-prod-tab em:first-of-type {
  margin-left: 0;
}
.index-prod-tab em:last-of-type {
  margin-right: 0;
}
.index-prod-tab .block {
  font-size: 18px;
  color: #fff;
  transition: all 0.5s;
  line-height: 55px;
  border-radius: 27.5px;
  overflow: hidden;
  cursor: pointer;
  white-space: nowrap;
}
.index-prod-tab .block a {
  color: inherit;
}
.index-prod-tab .block img {
  margin-right: 0;
  transition: all 0.5s;
  opacity: 0;
  display: inline-block;
}
.index-prod-tab .active {
  padding: 0 60px;
  background-color: #1fa398;
}
.index-prod-tab .active img {
  margin-right: 10px;
  opacity: 1;
}
.indexProdSwiper {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.indexProdSwiper .swiper-slide {
  padding-top: 150px;
}
.index-about {
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 150px;
}
.index-about > img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  object-fit: cover;
  z-index: -1;
  object-position: right;
}
.index-about .index-title {
  margin-bottom: 4.444444%;
}
.index-about .container .intro {
  font-size: 18px;
  color: #fff;
  font-weight: 300;
  text-align: justify;
  max-width: 705px;
  margin-bottom: 4.4444%;
}
.index-about .container .intro h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 0.72em;
}
.index-about .container .icon .block {
  display: inline-block;
  margin-right: 40px;
  /* cursor: default; */
}
.index-about .container .icon .block:hover em img {
  animation: tada 1s;
}
.index-about .container .icon em {
  display: inline-block;
  vertical-align: middle;
  width: 36px;
  height: 36px;
  text-align: center;
  margin-right: 10px;
}
.index-about .container .icon em img {
  display: inline-block;
  max-height: 100%;
}
.index-about .container .icon span {
  font-size: 16px;
  color: #fff;
  font-weight: 300;
}
.index-adv {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.index-adv .swiper {
  width: 100%;
  height: 100%;
}
.index-adv .swiper .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 150px;
}
.index-adv .index-adv-bg {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.index-adv .index-adv-bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-adv .index-adv-content .index-title {
  margin-bottom: 3.580247%;
}
.index-adv .index-adv-content .brief {
  max-width: 953px;
  color: #fff;
  font-size: 18px;
  text-align: justify;
}
.index-adv .index-adv-content .brief h3 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 0.28em;
}
.index-adv .index-adv-content .brief .more {
  margin-top: 3.35782%;
}
.index-adv .index-adv-content .brief .more a {
  display: inline-block;
  color: #fff;
  background-color: #1fa398;
  text-align: center;
  line-height: 49px;
  width: 190px;
  border-radius: 24.5px;
  font-size: 16px;
}
.index-adv .index-adv-content .brief .more a:hover {
  animation: rubberBand 1s;
}
.index-adv .index-adv-tab {
  position: absolute;
  width: 100%;
  bottom: 0;
  z-index: 1;
  display: flex;
}
.index-adv .index-adv-tab .block {
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.5s;
  cursor: pointer;
  padding: 40px 1em 1em;
  height: 200px;
}
.index-adv .index-adv-tab .block:first-child {
  border-left: 0;
}
.index-adv .index-adv-tab .block .icon {
  display: inline-block;
  width: 36px;
  height: 34px;
}
.index-adv .index-adv-tab .block .icon img {
  display: inline-block;
  max-height: 100%;
  transition: all 0.5s;
  opacity: 0.5;
}
.index-adv .index-adv-tab .block h3 {
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  line-height: 1.8;
  margin-top: 1.2em;
}
.index-adv .index-adv-tab .block h5 {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.index-adv .index-adv-tab .swiper-slide {
  padding-top: 0 !important;
}
.index-adv .index-adv-tab .swiper-slide-thumb-active .block {
  background-color: #1fa398;
  border-top: 1px solid transparent;
}
.index-adv .index-adv-tab .swiper-slide-thumb-active .block .icon img {
  opacity: 1;
  animation: tada 1s;
}
.index-adv .index-adv-tab .swiper-slide-thumb-active .block h3 {
  animation: tada 1s;
}
.index-adv .index-adv-tab .swiper-slide-thumb-active .block h5 {
  animation: tada 1s;
}
.index-news {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 150px;
  background: url(../images/index-news-bg.jpg) no-repeat;
  background-size: cover;
}
.index-news .container {
  max-width: 1485px;
}
.index-news .index-title {
  margin-bottom: 7.03704%;
}
.index-news .index-title h5 {
  color: #1fa398;
}
.index-news .index-title h5 span {
  color: #2d60ac;
}
.index-news .index-title .dot em {
  background-color: #2d60ac;
}
.index-news .index-title h2 {
  color: #383838;
  margin-right: 11.4197531%;
}
.index-news .index-title .index-news-tab {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.index-news .index-title .index-news-tab ul {
  display: flex;
}
.index-news .index-title .index-news-tab ul li {
  width: 120px;
  line-height: 35px;
  border-radius: 17.5px;
  text-align: center;
  color: #383838;
  font-size: 16px;
  transition: all 0.5s;
  margin-right: 1em;
  cursor: pointer;
  white-space: nowrap;
}
.index-news .index-title .index-news-tab ul li:hover {
  color: #1fa398;
}
.index-news .index-title .index-news-tab ul .active {
  color: #fff !important;
  font-weight: 700;
  background-color: #1fa398;
}
.index-news .index-news-list {
  position: relative;
}
.index-news .index-news-list .wrapper {
  position: absolute;
  width: 100%;
  top: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  visibility: hidden;
}
.index-news .index-news-list .wrapper .swiper {
    width: 100%;
}
.index-news .index-news-list .wrapper .block {
  transition: all 0.5s;
  width: 100%;
}
.index-news .index-news-list .wrapper .block .pic {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 59.21053%;
  overflow: hidden;
}
.index-news .index-news-list .wrapper .block .pic img {
  position: absolute;
  transition: all 1s;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}
.index-news .index-news-list .wrapper .block .pic .play-btn {
  width: auto;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all .5s;
  filter: grayscale(1) brightness(200%);
}
.index-news .index-news-list .wrapper .block .title {
  position: relative;
  z-index: 1;
  width: 100%;
  float: right;
  transition: all 0.5s;
}
.index-news .index-news-list .wrapper .block .title h4 {
  color: #000;
  font-size: 24px;
  margin: 1.1667em 0 0.6667em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.index-news .index-news-list .wrapper .block .title h4 a {
  color: inherit;
  transition: all 0s;
}
.index-news .index-news-list .wrapper .block .title p {
  font-size: 14px;
  color: #383838;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.index-news .index-news-list .wrapper .block .title p a {
  color: inherit;
  transition: all 0s;
}
.index-news .index-news-list .wrapper .block .title h5 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #000;
  margin-top: 1em;
}
.index-news .index-news-list .wrapper .block .title h5 span {
  font-family: Arial;
  transition: all 0.5s;
}
.index-news .index-news-list .wrapper .block .title h5 a {
  color: inherit;
  transition: all 0s;
}
.index-news .index-news-list .wrapper .block:hover .pic img {
  transform: scale(1.15);
  transition: all .3s;
}
.index-news .index-news-list .wrapper .block:hover .pic .play-btn {
  transform: translate(-50%, -50%) scale(1.05);
  filter: grayscale(0) brightness(140%);
}
.index-news .index-news-list .wrapper .block:hover .title h4  {
  color: #2778be;
}
.index-news .index-news-list .wrapper .block:hover .title h5 a {
  color: #2778be;
}
/* .index-news .index-news-list .wrapper .block:hover {
  width: 44.1751%;
  margin-top: -5%;
}
.index-news .index-news-list .wrapper .block:hover .title {
  background-color: #2778be;
  border-radius: 45px 0 0 0;
  width: 69.3597561%;
  padding: 21px 0 0 0;
  margin-top: -25%;
  margin-right: -4%;
}
.index-news .index-news-list .wrapper .block:hover .title h4 {
  color: #fff;
  padding: 0 30px 0 46px;
}
.index-news .index-news-list .wrapper .block:hover .title p {
  color: #fff;
  padding: 0 30px 0 46px;
}
.index-news .index-news-list .wrapper .block:hover .title h5 {
  color: #fff;
  background-color: #1164ac;
  padding: 10px 35px 9px;
  margin-top: 2.78em;
}
.index-news .index-news-list .wrapper .block:hover .title h5 span {
  opacity: 0;
  visibility: hidden;
}
.index-news .index-news-list .wrapper:hover .block:not(:hover) {
  width: 25.58923%;
} */
.index-news .index-news-list .show {
  position: relative;
  z-index: 1;
  visibility: visible;
  animation: fadeInRight 2s;
}
.index-news .index-news-list .dropped {
  animation: fadeOutLeft 2.5s;
}
.tools-bar {
  position: fixed;
  top: 50%;
  transform: translate(150%, -50%);
  right: 3px;
  background-color: #2d60ac;
  border-radius: 8px;
  z-index: 10;
  transition: all 1s;
}
.tools-bar-show {
  transform: translate(0, -50%);
}
.tools-bar ul {
  padding: 14px 0 20px;
}
.tools-bar ul li {
  position: relative;
  text-align: center;
  width: 60px;
  margin-bottom: 0.9em;
  transition: all 0.5s;
}
.tools-bar ul li:last-child {
  margin-bottom: 0;
}
.tools-bar ul li p {
  font-size: 12px;
  color: #fff;
  font-weight: 700;
  padding-top: 0.625em;
}
.tools-bar ul li h5 {
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  line-height: 1.8;
}
.tools-bar ul li .tip {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  visibility: hidden;
  opacity: 0;
  transition: all .5s;
  background-color: #2d60ac;
  color: #fff;
  white-space: nowrap;
  padding: .5em 1em;
  z-index: -1;
  line-height: 1.5;
}
.tools-bar ul li:hover {
  transform: translate(0, -3px);
}
.tools-bar ul li:hover img {
  animation: tada 1s;
}
.tools-bar ul li:hover .tip {
  right: 100%;
  opacity: 1;
  visibility: visible;
}
footer {
  background: url(../images/footer-bg.jpg) no-repeat;
  background-size: cover;
  padding-bottom: 8px;
}
footer .footer-top {
  padding: 2.8645833% 0 3.645833%;
}
footer .footer-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
footer .footer-top .info .logo {
  margin-bottom: 46px;
  width: 58%;
}
footer .footer-top .info address {
  font-size: 14px;
  color: #c8c8c8;
  margin-bottom: 0.5em;
}
footer .footer-top .info .links a {
  position: relative;
  display: inline-block;
  margin-right: 4px;
}
footer .footer-top .info .links a .tip {
  position: absolute;
  visibility: hidden;
  width: 120px;
  height: 120px;
  bottom: 150%;
  left: 50%;
  transform: translate(-50%, 0);
  transition: all .5s;
  opacity: 0;
}
footer .footer-top .info .links a > img {
  transition: all 0.5s;
  filter: grayscale(1) brightness(120%);
}
footer .footer-top .info .links a:hover > img {
  filter: grayscale(0) brightness(120%);
}
footer .footer-top .info .links a:hover .tip {
  bottom: 110%;
  opacity: 1;
  visibility: visible;
}
footer .footer-top .info {
  width: 23.6364%;
}
footer .footer-top nav {
  width: 60.308642%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer .footer-top nav .block {
  min-width: 160px;
}
footer .footer-top nav .block h3 {
  font-size: 20px;
  color: #e2e2e2;
  margin-bottom: 2.125em;
}
footer .footer-top nav .block ul li {
  margin-bottom: 0.5em;
}
footer .footer-top nav .block ul li a {
  color: #c8c8c8;
  font-size: 14px;
}
footer .footer-top nav .block ul li a:hover {
  filter: brightness(120%);
  color: #1fa398;
}
footer .footer-top .ewm {
  text-align: center;
}
footer .footer-top .ewm img {
  max-width: 120px;
  max-height: 120px;
  box-shadow: 0 0 0 3px #fff;
}
footer .footer-top .ewm p {
  font-size: 16px;
  color: #d6d6d6;
  margin-top: 1em;
}
footer .footer-bt {
  background-color: #373e46;
  padding: 18px 0 10px;
}
footer .footer-bt .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer .footer-bt .container p {
  font-size: 14px;
  color: #afafaf;
}
footer .footer-bt .container p a {
  color: inherit;
}
footer .footer-bt .container p a:hover {
  filter: brightness(200%);
}
.inner-banner {
  position: relative;
}
.inner-banner img {
  display: block;
  width: 100%;
}
.inner-banner .banner-text {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, 0);
  color: #fff;
  text-align: center;
}
.inner-banner .banner-text h3 {
  font-family: Arial;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}
.inner-banner .banner-text h4 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
}
.inner-banner .bread-crumb {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.42);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  color: #fff;
}
.inner-banner .bread-crumb .lt {
  width: 71.875%;
  background: url(../images/bread-crumb-bg.jpg) no-repeat;
  background-size: cover;
  background-position: center right;
  padding: 0 2.4479167% 0 7.083333%;
}
.inner-banner .bread-crumb .lt .swiper .swiper-slide {
    width: auto;
}
.inner-banner .bread-crumb .lt ul {
  display: flex;
  overflow: auto;
}
.inner-banner .bread-crumb .lt ul li {
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  line-height: 80px;
  margin-right: 60px;
  white-space: nowrap;
}
/*.inner-banner .bread-crumb .lt ul li:last-child {*/
/*  margin-right: 0;*/
/*}*/
.inner-banner .bread-crumb .lt ul li a {
  color: #fff;
  opacity: 0.5;
}
.inner-banner .bread-crumb .lt ul li a:hover {
  opacity: 1;
}
.inner-banner .bread-crumb .lt ul .active a {
  opacity: 1;
}
.inner-banner .bread-crumb .rt {
  width: 28.125%;
  font-size: 14px;
  padding: 0 2.4479167%;
  line-height: 1.6;
}
.inner-banner .bread-crumb .rt a {
  color: #fff;
}
.inner-banner .bread-crumb .rt a:hover {
  opacity: 0.5;
}
.child-bread-crumb {
  background-color: #0c3a66;
  display: none;
}
.child-bread-crumb .swiper .swiper-slide {
    width: auto;
}
.child-bread-crumb ul {
  display: flex;
  overflow: auto;
}
.child-bread-crumb ul li {
  line-height: 80px;
  color: #fff;
  font-size: 18px;
  position: relative;
  margin-right: 50px;
  white-space: nowrap;
}
.child-bread-crumb ul li::after {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  content: "";
  width: 3px;
  height: 18px;
  background-color: #fff;
  margin-left: 2em;
}
/*.child-bread-crumb ul li:last-child {*/
/*  margin-right: 0;*/
/*}*/
.child-bread-crumb .swiper .swiper-slide:last-child ul li::after {
  display: none;
}
.child-bread-crumb ul li a {
  color: #fff;
  border-bottom: 3px solid transparent;
  padding-bottom: 6px;
}
.child-bread-crumb ul li a:hover {
  color: #25c4b6;
}
.child-bread-crumb ul .active {
  font-weight: 700;
}
.child-bread-crumb ul .active a {
  border-bottom: 3px solid #ddd;
}
.online-msg {
  margin: 4.166667% 0;
}
.online-msg .container {
  background-color: #efefef;
  border-radius: 3px;
  padding: 2.9166667% 2.864583% 3.8541667%;
}
.online-msg .container .title {
  margin-bottom: 2.857143%;
}
.online-msg .container .title h3 {
  font-size: 30px;
  font-weight: 700;
  color: #363636;
}
.online-msg .container .title h5 {
  color: #363636;
  font-size: 14px;
}
.online-msg .container form .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 2.5974026%;
}
.online-msg .container form .row .col {
  width: 48.7013%;
}
.online-msg .container form input,
.online-msg .container form textarea {
  width: 100%;
  outline: none;
  background-color: #fff;
  border-radius: 3px;
  font-size: 14px;
  color: #333;
}
.online-msg .container form input::placeholder,
.online-msg .container form textarea::placeholder {
  color: transparent;
  background: -webkit-linear-gradient(left, #8e8e8e var(--size), #b21e23 var(--size));
  background-clip: text;
  -webkit-background-clip: text;
}
.online-msg .container form input {
  height: 53px;
  padding: 0 22px;
}
.online-msg .container form textarea {
  height: 160px;
  padding: 27px 22px;
}
.online-msg .container form button {
  position: relative;
  display: block;
  margin: 4.675325% auto 0;
  width: 400px;
  height: 45px;
  border-radius: 22.5px;
  background-color: #2d6db2;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all .5s;
}
.online-msg .container form button:hover {
  box-shadow: 0 0 15px #2d6db2;
}
.prod-detail {
  margin: 2.6041667% 0 0;
}
.prod-detail .prod-swiper-tab {
  margin-bottom: 2.06061%;
}
.prod-detail .prod-swiper-tab li {
  width: 38px;
  line-height: 38px;
  text-align: center;
  cursor: pointer;
  background-color: #1163ac;
  display: inline-block;
  margin-right: 8px;
  opacity: 0.5;
  transition: all 0.5s;
}
.prod-detail .prod-swiper-tab li:last-child {
  background-color: #23a196;
}
.prod-detail .prod-swiper-tab .active {
  opacity: 1;
}
.prod-detail .prod-intro {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 3.09091%;
}
.prod-detail .prod-intro .lt {
  position: relative;
  width: 46.42424%;
}
.prod-detail .prod-intro .lt .mainSwiper {
  border: 1px solid #dcdcdc;
  margin-bottom: 17px;
}
.prod-detail .prod-intro .lt .mainSwiper .pic {
  position: relative;
  width: 100%;
  height: 0;
  padding: 29.43865%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}
.prod-detail .prod-intro .lt .mainSwiper .pic a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.prod-detail .prod-intro .lt .mainSwiper .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prod-detail .prod-intro .lt .mainSwiper .pic video {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prod-detail .prod-intro .lt .subSwiper .pic {
  position: relative;
  width: 100%;
  height: 0;
  padding: 30.60606%;
  border: 1px solid #dcdcdc;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
  cursor: pointer;
}
.prod-detail .prod-intro .lt .subSwiper .pic img {
  position: absolute;
  display: block;
  max-width: 90%;
  max-height: 90%;
  object-fit: scale-down;
}
.prod-detail .prod-intro .lt .subSwiper .pic video {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prod-detail .prod-intro .lt .subSwiper .swiper-slide-thumb-active .pic {
  border-color: #1163ac;
}
.prod-detail .prod-intro .lt .box-container {
  display: none;
  position: absolute;
  visibility: hidden;
  width: 100%;
  top: 0;
  left: 0;
}
.prod-detail .prod-intro .lt .box-show {
  display: block;
  position: relative;
  visibility: visible;
}
.prod-detail .prod-intro .rt {
  width: 47.878788%;
}
.prod-detail .prod-intro .rt .inner-title {
  margin-bottom: 4.871795%;
}
.prod-detail .prod-intro .rt .brief {
  font-size: 18px;
  color: #232323;
  line-height: 2;
  /* font-weight: 300; */
  min-height: 9.6em;
  max-width: 708px;
  margin-bottom: 0.9em;
}
.prod-detail .prod-intro .rt .feature .title {
  background-color: #f0f0f0;
  line-height: 44px;
  font-size: 20px;
  color: #222;
  font-weight: 700;
  margin-bottom: 3.71795%;
}
.prod-detail .prod-intro .rt .feature .title em {
  display: inline-block;
  width: 54px;
  text-align: center;
  background-color: #1163ac;
  margin-right: 15px;
}
.prod-detail .prod-intro .rt .feature ul li {
  font-size: 18px;
  color: #232323;
  padding-left: 0.8125em;
  margin-bottom: 3.46154%;
}
.prod-detail .prod-intro .rt .feature ul li::before {
  position: relative;
  display: inline-block;
  content: "";
  border-radius: 50%;
  background-color: #23a196;
  width: 10px;
  height: 10px;
  margin-right: 0.625em;
}
.prod-detail .prod-intro .rt .feature ul li:nth-child(even)::before {
  background-color: #1163ac;
}
.prod-detail .prod-table {
  margin-bottom: 3.030303%;
  overflow: auto;
}
.prod-detail .prod-table table {
  width: 100% !important;
}
.prod-detail .prod-table table tr td {
  height: 56px;
  border: 1px solid #b8d6ba;
  text-align: center;
  padding: 0 1em;
  font-size: 14px;
  color: #000;
  white-space: nowrap;
}
.prod-detail .prod-table table tr:first-child td {
  color: #000;
  font-size: 16px;
  font-weight: 700;
  background-color: #b8d6ba;
  border-color: #fff;
}
.prod-detail .prod-device .title {
  color: #fff;
  background-color: #1163ac;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
  padding: .7625em 4.48485%;
  margin-bottom: 2.18182%;
}
.prod-detail .prod-device .deviceSwiper .pic {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 65.7894737%;
}
.prod-detail .prod-device .deviceSwiper .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner-title h2 {
  font-size: 36px;
  color: #232323;
  font-weight: 700;
  line-height: 1.8;
}
.inner-title h4 {
  font-size: 22px;
  color: #dadada;
  font-weight: 700;
  font-family: Arial;
  line-height: 1.4;
  text-transform: uppercase;
}
.inner-title h3 {
  font-size: 30px;
  color: #1163ac;
  font-weight: 700;
  line-height: 1.5;
}
.inner-title h5 {
  font-size: 18px;
  color: #c4d1e0;
  font-family: Arial;
  line-height: 1.4;
  text-transform: uppercase;
  font-weight: 700;
}
.prod-list {
  margin: 4.4270833% 0 6.5625%;
}
.prod-list .inner-title {
  text-align: center;
  margin-bottom: 4.666667%;
}
.prod-list .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.prod-list .wrapper .block {
  width: 31.515152%;
  margin-bottom: 15px;
}
.prod-list .wrapper .block .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 70.23077%;
}
.prod-list .wrapper .block .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prod-list .wrapper .block .pic .mask {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(247, 247, 247, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
}
.prod-list .wrapper .block .pic .mask h3 {
  font-size: 30px;
  color: #1163ac;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 0.833em;
  padding: 0 1em;
  text-align: center;
}
.prod-list .wrapper .block .pic .mask span {
  display: inline-block;
  width: 104px;
  line-height: 30px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid #1163ac;
  color: #1163ac;
  font-size: 14px;
  transition: all 0.5s;
}
.prod-list .wrapper .block .pic .mask span:hover {
  background-color: #1163ac;
  color: #fff;
}
.prod-list .wrapper .block:hover .pic .mask {
  opacity: 1;
  visibility: visible;
}
.after-sale {
  margin: 4.427083% 0 8.2291667%;
}
.after-sale .tech-serv {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 8.18182%;
}
.after-sale .tech-serv .lt {
  width: 300px;
  margin-right: 3%;
}
.after-sale .tech-serv .lt .inner-title h2 {
  line-height: 1.6;
  color: #1163ac;
}
.after-sale .tech-serv .lt .inner-title h4 {
  color: #c4d1e0;
}
.after-sale .tech-serv .rt {
  width: 74.9091%;
  font-size: 18px;
  color: #5c5c5c;
  flex: 1;
}
.after-sale .tech-serv .wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 7.27273%;
  transform-style: preserve-3d;
  perspective: 800px;
}
.after-sale .tech-serv .wrapper .block {
  width: 47.27273%;
  background-color: #f3f3f3;
  padding: 2.36364% 3.030303% 2.121212% 3.515152%;
  transition: all 1s;
  cursor: default;
  margin-bottom: 2.78788%;
  border-radius: 3px;
  transform-origin: center center;
}
.after-sale .tech-serv .wrapper .block .title {
  display: flex;
  align-items: flex-end;
  margin-bottom: 6.78733%;
}
.after-sale .tech-serv .wrapper .block .title .icon {
  width: 52px;
  line-height: 60px;
  margin-right: 20px;
}
.after-sale .tech-serv .wrapper .block .title .icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: all 0.5s;
}
.after-sale .tech-serv .wrapper .block .title .text {
  line-height: 1.6;
}
.after-sale .tech-serv .wrapper .block .title .text h4 {
  font-size: 20px;
  color: #3e3a39;
  font-weight: 700;
}
.after-sale .tech-serv .wrapper .block .title .text h5 {
  font-size: 14px;
  color: #8e8e8e;
  font-family: Arial;
  text-transform: uppercase;
}
.after-sale .tech-serv .wrapper .block .brief {
  font-size: 16px;
  color: #737373;
  text-align: justify;
}
.after-sale .tech-serv .wrapper .block:hover {
  transform: translateY(-5px) translateZ(20px) rotateY(-7deg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all .3s;
}
.after-sale .tech-serv .wrapper .block:hover .title .text h4 {
  color: #2d60ac;
}
/* .after-sale .tech-serv .wrapper .block:hover .title .icon img {
  filter: contrast(0) grayscale(1) brightness(200%);
}
.after-sale .tech-serv .wrapper .block:hover .title .text h4 {
  color: #fff;
}
.after-sale .tech-serv .wrapper .block:hover .title .text h5 {
  color: #fff;
}
.after-sale .tech-serv .wrapper .block:hover .brief {
  color: #fff;
} */
.after-sale .serv-adv .inner-title {
  margin-bottom: 7.27273%;
}
.after-sale .serv-adv .inner-title h2 {
  line-height: 1.6;
  color: #1163ac;
}
.after-sale .serv-adv .inner-title h4 {
  color: #c4d1e0;
}
.after-sale .serv-adv .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  transform-style: preserve-3d;
  perspective: 800px;
}
.after-sale .serv-adv .wrapper .block {
  width: 20%;
  text-align: center;
  padding: 2.242424% 2.666667% 2.242424% 2.30303%;
  transition: all 1s;
  cursor: default;
  box-shadow: inset 0 0 50px 1px rgba(19, 100, 172, .2);
}
.after-sale .serv-adv .wrapper .block .icon {
  transform: translateY(10px);
  display: inline-block;
  width: 98px;
  line-height: 98px;
  border-radius: 50%;
  background-color: #f3f3f3;
  margin-bottom: 18.442623%;
  transition: all 0.5s;
}
.after-sale .serv-adv .wrapper .block .icon img {
  max-width: 60%;
  max-height: 60%;
  object-fit: contain;
  transition: all 0.5s;
}
.after-sale .serv-adv .wrapper .block .title {
  transform: translateY(10px);
  line-height: 1.5;
  margin-bottom: 9.42623%;
  transition: all 0.5s;
}
.after-sale .serv-adv .wrapper .block .title h4 {
  font-size: 20px;
  color: #3e3a39;
  font-weight: 700;
}
.after-sale .serv-adv .wrapper .block .title h5 {
  font-family: Arial;
  font-size: 14px;
  color: #3e3a39;
  text-transform: uppercase;
}
.after-sale .serv-adv .wrapper .block .brief {
  transform: translateY(10px);
  font-size: 16px;
  color: #3e3a39;
  text-align: justify;
  text-align-last: center;
  transition: all .5s;
}
.after-sale .serv-adv .wrapper:hover .block:not(:hover) {
  transform: translateZ(-30px);
  opacity: .7;
}
.after-sale .serv-adv .wrapper .block:hover {
  box-shadow: 0 10px 35px rgba(14, 31, 83, 0.11);
  transform: translateY(-5px) translateZ(30px);
  background: url(../images/lx-bg.png);
  background-size: 100% auto;
  background-repeat: repeat;
  transition: all .5s;
}
.after-sale .serv-adv .wrapper .block:hover .icon {
  background-color: #23a196;
  transform: translateY(0);
  transition-delay: .2s;
}
.after-sale .serv-adv .wrapper .block:hover .title {
  transform: translateY(0);
  transition-delay: .4s;
}
.after-sale .serv-adv .wrapper .block:hover .brief {
  transform: translateY(0);
  transition-delay: .6s;
}
.after-sale .serv-adv .wrapper .block:hover .icon img {
  filter: contrast(0) brightness(200%);
}
.application-case {
  margin: 4.270833% 0 5.83333%;
}
.application-case .intro {
  margin-bottom: 6.06061%;
}
.application-case .intro .inner-title {
  margin-bottom: 4.121212%;
}
.application-case .intro .inner-title h2 {
  line-height: 1.6;
}
.application-case .intro .brief {
  max-width: 1470px;
  text-align: justify;
  font-size: 18px;
  color: #5c5c5c;
}
.application-case .section1 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 2.9091%;
}
.application-case .section1 .lt {
  width: 45.8182%;
}
.application-case .section1 .lt .inner-title {
  position: relative;
  border-bottom: 1px solid #d4d7da;
  padding-bottom: 3.30688%;
  margin-bottom: 8.597884%;
}
.application-case .section1 .lt .inner-title::after {
  content: "";
  position: absolute;
  display: block;
  width: 182px;
  height: 3px;
  background-color: #1163ac;
  bottom: -2px;
}
.application-case .section1 .lt .brief {
  font-size: 16px;
  color: #252525;
  text-align: justify;
}
.application-case .section1 .lt .brief div {
  display: none;
}
.application-case .section1 .lt .brief .show {
  display: block;
}
.application-case .section1 .rt {
  width: 42.42424%;
  height: 420px;
  background: url(../images/tech-bg.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  flex-wrap: wrap;
  border-radius: 10px;
  overflow: hidden;
}
.application-case .section1 .rt .block {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  transition: all 0.5s;
  cursor: pointer;
}
.application-case .section1 .rt .block h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0.8125em;
}
.application-case .section1 .rt .block h5 {
  font-size: 14px;
  font-family: Arial;
  line-height: 1.8;
}
.application-case .section1 .rt .block:hover {
  background-color: rgba(19, 100, 172, .7);
  /* backdrop-filter: blur(3px); */
}
.application-case .section1 .rt .active {
  background-color: rgba(19, 100, 172, .7);
}
.application-case .section2 {
  margin-bottom: 2.42424%;
}
.application-case .section2 .inner-title {
  margin-bottom: 3.27273%;
}
.application-case .section2 .inner-title h5 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.application-case .section2 .inner-title h5::after {
  display: block;
  content: "";
  height: 1.3888889em;
  flex: 1;
  max-width: 1148px;
  margin-left: 3%;
  background-color: #f3f3f3;
}
.application-case .section2 .brief {
  font-size: 18px;
  color: #5c5c5c;
  text-align: justify;
  max-width: 1550px;
  margin-bottom: 1.57576%;
}
.application-case .section2 .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.application-case .section2 .wrapper .title {
  width: 100%;
  font-size: 24px;
  color: #000;
  font-weight: 700;
  margin-bottom: 1.57576%;
}
.application-case .section2 .wrapper .block {
  width: 31.515152%;
}
.application-case .section2 .wrapper .block .pic {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 72.5%;
  overflow: hidden;
}
.application-case .section2 .wrapper .block .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .5s;
}
.application-case .section2 .wrapper .block .text {
  padding: 15px 12px 15px 7px;
}
.application-case .section2 .wrapper .block .text h4 {
  font-size: 18px;
  color: #000;
  font-weight: 700;
}
.application-case .section2 .wrapper .block .text ul li {
  position: relative;
  font-size: 15px;
  color: #000;
  padding-left: 1.75em;
}
.application-case .section2 .wrapper .block .text ul li::before {
  position: absolute;
  top: 1em;
  left: 4px;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
  background-color: #000;
  transform: translateY(-50%);
}
.application-case .section2 .wrapper .block:hover .pic img {
  transform: scale(1.15);
}
.application-case .section3 .inner-title {
  margin-bottom: 7.818182%;
}
.application-case .section3 .inner-title h5 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.application-case .section3 .inner-title h5::after {
  display: block;
  content: "";
  height: 1.3888889em;
  flex: 1;
  max-width: 1148px;
  margin-left: 3%;
  background-color: #f3f3f3;
}
.application-case .section3 .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  transform-style: preserve-3d;
  perspective: 800px;
}
.application-case .section3 .wrapper .block {
  text-align: center;
  width: 20.848485%;
  border: 3px solid #d4e1f4;
  transition: all 0.5s;
  padding: 0 2.66667% 2.42424%;
  cursor: default;
  transform-origin: bottom center;
}
.application-case .section3 .wrapper .block .icon {
  width: 150px;
  height: 150px;
  line-height: 150px;
  display: block;
  position: relative;
  border-radius: 50%;
  margin: -80px auto 15px;
  background-color: #fff;
  box-shadow: 0 0 0 16px #fff;
}
.application-case .section3 .wrapper .block .icon .bg {
  position: absolute;
  width: 100%;
  height: 100%;
}
.application-case .section3 .wrapper .block .icon .bg img {
  display: block;
  width: 100%;
  height: 100%;
  transition-timing-function: ease-in-out;
}
.application-case .section3 .wrapper .block .icon .icon-pic {
  max-width: 50%;
  max-height: 50%;
  object-fit: contain;
}
.application-case .section3 .wrapper .block .title {
  font-size: 28px;
  color: #333;
  font-weight: 700;
}
.application-case .section3 .wrapper .block .title::after {
  position: relative;
  display: block;
  content: "";
  width: 46px;
  height: 1px;
  background-color: #b4c3d9;
  margin: 17px auto 10px;
}
.application-case .section3 .wrapper .block .brief {
  font-size: 14px;
  color: #424242;
  text-align: justify;
  text-align-last: center;
  min-height: 12em;
}
.application-case .section3 .wrapper .block:hover {
  border-color: #1163ac;
  transform: translateY(-7px) translateZ(30px) rotateX(3deg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.application-case .section3 .wrapper .block:hover .icon .bg img {
  transform: rotate(360deg);
  transition: all 1s;
}
.application-case .section3 .wrapper .block:hover .icon .icon-pic {
  animation: tada 1s;
}
.proj-case {
  margin: 4.9479167% 0 5.46875%;
}
.proj-case .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.proj-case .wrapper .block {
  position: relative;
  overflow: hidden;
  width: 49.09091%;
  border: 1px solid #e5e5e5;
  transition: all 0.5s;
  margin-bottom: 4.242424%;
}
.proj-case .wrapper .block .pic {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 57.40741%;
}
.proj-case .wrapper .block .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .5s;
}
.proj-case .wrapper .block .text {
  position: relative;
  height: 155px;
  margin: 0 auto;
  width: 68.51852%;
}
.proj-case .wrapper .block .text .title {
  height: 155px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-bottom: 1px solid transparent;
  transition: all 0.5s;
}
.proj-case .wrapper .block .text .title h4 {
  font-size: 18px;
  color: #4a4a4a;
}
.proj-case .wrapper .block .text .title h5 {
  font-size: 14px;
  color: #4a4a4a;
  font-family: Arial;
}
.proj-case .wrapper .block .text .brief {
  font-size: 14px;
  margin: 1.5em 1.143em 1em;
  color: #4a4a4a;
  text-align: justify;
  text-align-last: center;
  min-height: 147px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}
.proj-case .wrapper .block .text .mask {
  padding: 0 10%;
  background-color: #fff;
  transition: all 0.5s;
}
.proj-case .wrapper .block:hover {
  border-color: transparent;
}
.proj-case .wrapper .block:hover .pic img {
  transform: scale(1.05);
}
.proj-case .wrapper .block:hover .text .mask {
  transform: translateY(calc(-100% + 155px - 10px));
  box-shadow: 0 6px 6px rgba(115, 115, 115, 0.15);
}
.proj-case .wrapper .block:hover .text .title {
  border-color: #ddd;
}
.proj-case .wrapper .block:hover .text .title h4 {
  color: #1163ac;
}
.download-center {
  background-color: #f0f4f7;
  padding: 3.020833% 0 6.875%;
}
.download-center .row {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2.78788% 0 2.121212%;
  z-index: 1;
  overflow: hidden;
  min-height: 100px;
  background-color: #fff;
  margin-bottom: 1.1515152%;
}
.download-center .row::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(left, #23a196, #1c8a9e);
  transition: all 0.5s;
  z-index: -1;
  left: 0;
  top: 0;
  opacity: 0;
}
.download-center .row .lt {
  flex: 1;
  line-height: 1.6;
  font-size: 16px;
  color: #272727;
  font-weight: 700;
  transition: all 0.5s;
  cursor: default;
}
.download-center .row .rt a {
  display: inline-block;
  margin-left: 33px;
}
.download-center .row .rt a:hover img {
  animation: rubberBand 1s;
}
.download-center .row .rt img {
  transition: all 0.5s;
}
.download-center .row:hover::after {
  opacity: 1;
}
.download-center .row:hover .lt {
  color: #fff;
}
.download-center .row:hover .rt img {
  filter: contrast(0) brightness(200%);
}
.modal-mask {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgba(24, 24, 24, 0.39);
  top: 0;
  left: 0;
  z-index: 999;
}
.modal-mask .modal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 16px;
  width: 94%;
  max-width: 640px;
  padding: 2.6041667% 2.6041667% 3.125%;
}
.modal-mask .modal .logo {
  text-align: center;
  margin-bottom: 32px;
}
.modal-mask .modal .logo img {
  margin-bottom: 22px;
}
.modal-mask .modal .logo h5 {
  font-size: 14px;
  color: #363636;
}
.modal-mask .modal form .row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.modal-mask .modal form input {
  flex: 1;
  height: 53px;
  border: 1px solid #efefef;
  border-radius: 3px;
  margin-bottom: 3.703704%;
  outline: none;
  padding: 0 22px;
  color: #333;
  font-size: 14px;
}
.modal-mask .modal form input::placeholder {
  color: transparent;
  background: -webkit-linear-gradient(left, #8e8e8e var(--size), #b21e23 var(--size));
  background-clip: text;
  -webkit-background-clip: text;
}
.modal-mask .modal form button {
  outline: none;
  cursor: pointer;
}
.modal-mask .modal form .verityCodeBtn {
  width: 118px;
  height: 53px;
  background-color: #daecff;
  border: 1px solid #2d6db2;
  color: #2d6db2;
  font-size: 14px;
  margin-left: 20px;
}
.modal-mask .modal form .fc-code {
  margin-left: 20px;
}
.modal-mask .modal form .submitBtn {
  width: 400px;
  height: 45px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 22.5px;
  background-color: #2d6db2;
  margin: 0 auto;
  display: block;
  margin-top: 5.55556%;
}
.anchor-fixed {
  position: relative;
  top: -150px;
}
body.fp-viewing-page2 .section2 .index-prod-content {
  animation: fadeInDown 2s;
}
body.fp-viewing-page2 .section2 .index-prod-tab {
  animation: fadeInUp 2s;
}
body.fp-viewing-page3 .section3 .container {
  animation: fadeInDown 2s;
}
body.fp-viewing-page4 .section4 .index-adv-content {
  animation: fadeInDown 2s;
}
body.fp-viewing-page4 .section4 .index-adv-tab {
  animation: fadeInUp 2s;
}
/* body.fp-viewing-page5 .section5 .index-title {
  animation: fadeInDown 2s;
}
body.fp-viewing-page5 .section5 .index-news-list {
  animation: fadeInUp 2s;
} */
.zoomContainer {
  /* -webkit-transform: translateZ(10px) !important;
  transform: translateZ(10px) !important; */
  z-index: 10;
  /* display: none; */
}
.body .zoomContainer:first-child {
  display: block;
}
.zoomLens {
  border: 0px solid #000 !important;
}
.customer-service {
  margin: 3% 0;
}
.customer-service .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  
}
.customer-service .lt {
  width: 45%;
  font-size: 20px;
  color: #333;
  text-align: justify;
  font-weight: 700;
}
.customer-service .rt {
  width: 50%;
  padding-left: 5%;
  border-left: 1px solid #ccc;
}
.customer-service .rt address {
  font-size: 16px;
  color: #666;
  margin-bottom: 0.5em;
}
.customer-service .rt address i {
  font-size: 24px;
  color: #2d60ac;
  vertical-align: middle;
  margin-right: 0.5em;
}
.case-detail {
  margin: 2.7% 0 5%;
}
.case-detail-title {
  font-size: 36px;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 3%;
  color: #333;
}
.case-detail-info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.case-detail-info div {
  width: 49%;
  border-bottom: 1px solid #ddd;
  padding-bottom: 2em;
}
.case-detail-info div h4 {
  font-size: 22px;
  color: #333;
}
.case-detail-info div h5 {
  font-size: 16px;
  color: #666;
  transition: all .3s;
}
.case-detail-info div h5:hover {
  color: #2d60ac;
}
.case-detail-article {
  font-size: 16px;
  color: #666;
  text-align: justify;
  margin: 2em 0;
  border-bottom: 1px solid #ddd;
  padding-bottom: 2em;
}
.case-detail-article:hover {
  color: #2d60ac;
}
.case-detail-swiper {
  position: relative;
}
.case-detail-swiper .swiper {
  overflow: visible;
}
.case-detail-swiper .swiper .swiper-slide {
  width: 75%;
  transition: opacity .5s;
}
.case-detail-swiper .swiper .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 75%;
}
.case-detail-swiper .swiper .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .5s;
}
.case-detail-swiper .swiper .swiper-slide {
  opacity: 0.5;
}
.case-detail-swiper .swiper .swiper-slide-active {
  opacity: 1;
}
.case-detail-swiper .swiper .swiper-slide-active .pic:hover img {
  transform: scale(1.1);
}
.case-detail-swiper .swiper-button-next::after,
.case-detail-swiper .swiper-button-prev::after {
  font-size: 1.875vw;
}
.contact-map {
  margin: 4.9479167% 0 5.46875%;
}
.contact-map .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.contact-map .lt {
  width: 50%;
}
.contact-map .lt .pic {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.contact-map .lt .pic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .5s;
}
.contact-map .lt .pic:hover img {
  transform: scale(1.1);
}
.contact-map .rt {
  width: 50%;
  padding: 4.727273% 2% 3% 4.848485%;
  background: url('../images/contact-bg.jpg') no-repeat;
  background-size: cover;
}
.contact-map .rt .title {
  font-size: 48px;
  color: #363636;
  font-weight: 700;
  margin-bottom: 4.91573%;
}
.contact-map .rt .address-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.contact-map .rt .address-wrapper address {
  width: 49%;
  margin-bottom: 39px;
  word-break: break-all;
}
.contact-map .rt .address-wrapper address h4 {
  font-size: 20px;
  color: #4b4b4b;
  line-height: 1.6;
}
.contact-map .rt .address-wrapper address h4 i {
  width: 32px;
  color: #014b92;
  font-size: 120%;
}
.contact-map .rt .address-wrapper address h5 {
  font-size: 22px;
  color: #363636;
  font-weight: 700;
  line-height: 1.6;
  padding-left: 32px;
}
.contact-map .rt .map-location {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #014b92;
  font-weight: 700;
  line-height: 70px;
  width: 263px;
  border: 1px solid #014b92;
  border-radius: 35px;
  overflow: hidden;
  transition: all .6s;
  z-index: 1;
}
.contact-map .rt .map-location::after {
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  transform: translateX(-100%);
  background-color: #014b92;
  transition-timing-function: ease-in-out;
  z-index: -1;
}
.contact-map .rt .map-location::before {
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  transform: translateX(100%);
  background-color: #014b92;
  transition: transform .5s;
  transition-timing-function: ease-in-out;
  z-index: -1;
}
.contact-map .rt .map-location i {
  font-size: 200%;
  margin-right: 14px;
}
.contact-map .rt .map-location:hover {
  color: #fff;
}
.contact-map .rt .map-location:hover::after {
  transform: translateX(0%);
  transition: all .5s;
}
.contact-map .rt .map-location:hover::before {
  transform: translateX(0);
  opacity: 0;
  transition: all 0s;
}
