.flex-h-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -moz-box-orient: horizontal;
  -moz-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.flex-v-top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -moz-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.flex-v-bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -moz-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}
.mt10 {
  margin-top: 10px !important;
}
.mt20 {
  margin-top: 20px !important;
}
.mt30 {
  margin-top: 30px !important;
}
.mt40 {
  margin-top: 40px !important;
}
.mt50 {
  margin-top: 50px !important;
}
.mt60 {
  margin-top: 60px !important;
}
.mt70 {
  margin-top: 70px !important;
}
.mt80 {
  margin-top: 80px !important;
}
.mt90 {
  margin-top: 90px !important;
}
.mt100 {
  margin-top: 100px !important;
}
.mb10 {
  margin-bottom: 10px !important;
}
.mb20 {
  margin-bottom: 20px !important;
}
.mb30 {
  margin-bottom: 30px !important;
}
.mb40 {
  margin-bottom: 40px !important;
}
.mb50 {
  margin-bottom: 50px !important;
}
.mb60 {
  margin-bottom: 60px !important;
}
.mb70 {
  margin-bottom: 70px !important;
}
.mb80 {
  margin-bottom: 80px !important;
}
.mb90 {
  margin-bottom: 90px !important;
}
.mb100 {
  margin-bottom: 100px !important;
}
.bg-black {
  --bs-bg-opacity: 0.9 !important;
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}
html,
body {
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: normal;
  font-family: "Helvetica Neue For Number", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei",
    "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #333;
  width: 100%;
  background: #f8f8f8 !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
}
h1 {
  font-size: 24px;
  color: #000;
}
h2 {
  font-size: 30px;
}
h3 {
  font-size: 18px;
}
h4 {
  font-size: 16px;
}
h5 {
  font-size: 14px;
}
p {
  margin: 0;
  padding: 0;
}
i {
  color: #989898;
}
a {
  color: inherit;
  text-decoration: none !important;
  cursor: pointer;
}
ul {
  margin: 0;
  padding: 0;
}
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
ul,
li {
  list-style: none;
}
.clearfix:before,
.clearfix:after {
  display: table;
  content: "";
}
.clearfix:after {
  clear: both;
}
.text-right {
  text-align: right;
}
.flex-v-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.flex-justify {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.flex-h {
  display: box;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
}
.flex-hw {
  -webkit-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
}
.ellipsis {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: keep-all;
  word-wrap: break-word;
  text-align: justify;
  text-justify: inter-ideograph;
}
.ellipsis2 {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  word-break: keep-all;
  word-wrap: break-word;
  text-justify: inter-ideograph;
}
.ellipsis3 {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  word-break: keep-all;
  word-wrap: break-word;
  text-justify: inter-ideograph;
}
.ellipsis4 {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  word-break: keep-all;
  word-wrap: break-word;
  text-justify: inter-ideograph;
}
.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.flex-1 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.hidden {
  display: none;
}
.no-margin {
  margin: 0 !important;
}
.mtrem10 {
  margin-top: 1rem;
}
.mtrem08 {
  margin-top: 0.8rem;
}
.mbrem10 {
  margin-bottom: 1rem;
}
.mbrem08 {
  margin-bottom: 0.8rem;
}
article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}
*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}
.boingInUp {
  -webkit-animation-name: boingInUp;
  -moz-animation-name: boingInUp;
  animation-name: boingInUp;
}
@-webkit-keyframes boingInUp {
  0% {
    opacity: 0;
    -webkit-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
    -webkit-transform: perspective(800px) rotateX(-90deg);
    transform: perspective(800px) rotateX(-90deg);
  }
  50% {
    opacity: 1;
    -webkit-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
    -webkit-transform: perspective(800px) rotateX(50deg);
    transform: perspective(800px) rotateX(50deg);
  }
  100% {
    opacity: 1;
    -webkit-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
    -webkit-transform: perspective(800px) rotateX(0deg);
    transform: perspective(800px) rotateX(0deg);
  }
}
@-moz-keyframes boingInUp {
  0% {
    opacity: 0;
    -moz-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
    -moz-transform: perspective(800px) rotateX(-90deg);
    transform: perspective(800px) rotateX(-90deg);
  }
  50% {
    opacity: 1;
    -moz-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
    -moz-transform: perspective(800px) rotateX(50deg);
    transform: perspective(800px) rotateX(50deg);
  }
  100% {
    opacity: 1;
    -moz-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
    -moz-transform: perspective(800px) rotateX(0deg);
    transform: perspective(800px) rotateX(0deg);
  }
}
@keyframes boingInUp {
  0% {
    opacity: 0;
    -webkit-transform-origin: 50% 0%;
    -moz-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
    -webkit-transform: perspective(800px) rotateX(-90deg);
    -moz-transform: perspective(800px) rotateX(-90deg);
    transform: perspective(800px) rotateX(-90deg);
  }
  50% {
    opacity: 1;
    -webkit-transform-origin: 50% 0%;
    -moz-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
    -webkit-transform: perspective(800px) rotateX(50deg);
    -moz-transform: perspective(800px) rotateX(50deg);
    transform: perspective(800px) rotateX(50deg);
  }
  100% {
    opacity: 1;
    -webkit-transform-origin: 50% 0%;
    -moz-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
    -webkit-transform: perspective(800px) rotateX(0deg);
    -moz-transform: perspective(800px) rotateX(0deg);
    transform: perspective(800px) rotateX(0deg);
  }
}
.nux-sp-menu {
  cursor: pointer;
  font-size: 16px;
  display: inline-block;
  color: #fff;
  background: #0082df;
}
.nux-sp-menu:before,
.nux-sp-menu:after {
  display: table;
  content: "";
}
.nux-sp-menu:after {
  clear: both;
}
.nux-sp-menu .menu-item {
  float: left;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 15px;
  height: 100%;
  min-width: 100px;
}
.nux-sp-menu .menu-item:hover {
  background: #006fd8;
}
.nux-sp-menu .menu-item:hover .submenu {
  padding: 10px 0;
  display: block;
}
.nux-sp-menu .active {
  background: #006fd8;
}
.nux-sp-menu .submenu {
  display: none;
  position: absolute;
  left: 0;
  background: #0082df;
  z-index: 100;
  width: 100%;
  text-align: center;
}
.nux-sp-menu .submenu-item {
  padding: 10px 0;
}
.nux-sp-menu .submenu-item:hover {
  background: #006fd8;
}
.nux-sp-menu2 {
  cursor: pointer;
  font-size: 16px;
  display: inline-block;
  color: #fff;
  background: #0082df;
}
.nux-sp-menu2:before,
.nux-sp-menu2:after {
  display: table;
  content: "";
}
.nux-sp-menu2:after {
  clear: both;
}
.nux-sp-menu2 .menu-item {
  float: left;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 15px;
  height: 100%;
  min-width: 100px;
}
.nux-sp-menu2 .menu-item:hover {
  background: #006fd8;
}
.nux-sp-menu2 .active {
  background: #006fd8;
}
.nux-sp-menu2 .submenu {
  display: none;
  position: absolute;
  left: 0;
  background: #0082df;
  z-index: 100;
  width: 100%;
  text-align: center;
}
.nux-sp-menu2 .submenu-item {
  padding: 10px 0;
}
.nux-sp-menu2 .submenu-item:hover {
  background: #006fd8;
}
/**********************************导航 strat****************************/
.head {
  position: -webkit-sticky;
  position: sticky;
  z-index: 9999;
  top: 0;
  background: #000;
}
.head .dropdown-header {
  margin: 1vw 0;
}
.dropdown-menu:before {
  display: none !important;
}
.ltopnav {
  padding: 1vw !important;
  background: #000 !important;
}
.ltopnav h6 {
  font-size: 2.5vw;
}

.ltopnav .nav-item a {
  font-size: 3vw;
}

.ltopnav ul a {
  font-size: 2vw;
}
.ltopnav ul .contact_icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.ltopnav ul .contact_icon a {
  width: 7vw;
  height: 7vw;
  background: #3bb3ff !important;
  -webkit-border-radius: 50% !important;
  border-radius: 50% !important;
  float: left;
  display: block;
  margin: 1vw;
}
.ltopnav ul .contact_icon a img {
  display: block;
  margin-top: 0.5vw;
  width: 4vw;
  height: 4vw;
}
.ltopnav ul .contact_icon a:hover {
  background: #6b6b6b !important;
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}
nav {
  width: 100%;
  padding: 0 5vw;
  height: 9vw;
}
.container-fluid {
  width: 90% !important;
}
.navbar-dark .navbar-nav .nav-link {
  color: #fff !important;
}
.head .dropdown-header {
  color: #fff;
}
.navbar-dark .offcanvas-collapse {
  z-index: 9999;
}
.top_right {
  width: 40vw;
}
.top_right .nav-item a {
  font-size: 1.2vw;
}

.top_right .main-nav .dropdown-menu {
  min-width: 15vw;
  line-height: 3vw;
}
.top_right .main-nav .dropdown-menu a {
  font-size: 1.3vw;
}
@media (max-width: 992px) {
  .top_right .main-nav .dropdown-menu {
    min-width: 18vw;
    line-height: 4vw;
  }
  .ltopnav .nav-item a {
    font-size: 2.5vw;
  }
  .top_right .main-nav .dropdown-menu a {
    font-size: 1.5vw;
  }
}
@media (max-width: 768px) {
  .ltopnav .nav-item a {
    font-size: 3.2vw !important;
  }
}
.top_right .main-nav li {
  margin: 0;
}
.navbar-toggler {
  position: absolute;
  right: 5%;
  z-index: 9999;
}
.mt10 {
  margin-top: 1vw;
}
@media (min-width: 992px) {
  .ltopnav {
    display: none !important;
  }
}
@media (max-width: 993px) {
  .topnav {
    display: none !important;
  }
  .index_contact {
    display: none;
  }
  .top_contact {
    display: none !important;
  }
  .banner-swiper {
    margin: 0 !important;
  }
  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }
  .navbar {
    padding: 0 !important;
  }
}
.index_contact {
  width: 25vw;
  float: left;
}
.index_contact p {
  margin-bottom: 0.5vw;
}
.index_contact a {
  width: 100%;
  height: 30px;
  padding-left: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 1vw;
}
.index_contact a i {
  display: block;
  float: left;
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.index_contact a .iconemail {
  background: url(../img/icon_email.png) left center no-repeat;
  -webkit-background-size: 95% 95%;
  background-size: 95%;
}
.index_contact a .icontel {
  background: url(../img/icon_tel.png) left center no-repeat;
  -webkit-background-size: 95% 95%;
  background-size: 95%;
}
.index_contact a .iconwhatsapp {
  background: url(../img/icon_whatsapp.png) left center no-repeat;
  -webkit-background-size: 100% 100%;
  background-size: 100%;
}
.index_contact a:hover {
  color: #3bb3ff;
}
@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
  .navbar-expand-lg .navbar-collapse {
    padding: 0;
  }
}
.DW {
  width: 100%;
  clear: both;
}
.navbar-brand img {
  max-height: 7vw;
}
.search {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: center;
  -webkit-flex: center;
  -moz-box-flex: center;
  -ms-flex: center;
  flex: center;
  position: relative;
  margin: 0 1vw;
}
.search a {
  display: block;
  width: 2vw;
  height: 2vw;
  overflow: hidden;
}
.search img {
  width: 3vw !important;
  display: block;
}
#searchInput {
  display: none;
  max-height: 0;
  position: absolute;
  top: 3vw;
  left: -4vw;
  width: 18vw;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease, max-height 0.5s ease,
    -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, max-height 0.5s ease,
    -webkit-transform 0.5s ease;
  -moz-transition: opacity 0.5s ease, transform 0.5s ease, max-height 0.5s ease,
    -moz-transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, max-height 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, max-height 0.5s ease,
    -webkit-transform 0.5s ease, -moz-transform 0.5s ease;
  -webkit-transform: translateY(-100px);
  -moz-transform: translateY(-100px);
  -ms-transform: translateY(-100px);
  transform: translateY(-100px);
  overflow: hidden;
}
#searchInput.show {
  display: block;
  min-height: 50px;
  line-height: 50px;
  width: 18vw;
  opacity: 1;
  -webkit-transition: opacity 0.5s ease, max-height 0.5s ease,
    -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, max-height 0.5s ease,
    -webkit-transform 0.5s ease;
  -moz-transition: opacity 0.5s ease, transform 0.5s ease, max-height 0.5s ease,
    -moz-transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, max-height 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, max-height 0.5s ease,
    -webkit-transform 0.5s ease, -moz-transform 0.5s ease;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  z-index: 999;
}
.navbar-light .navbar-toggler-icon {
  display: block;
  background-image: url(../img/public_menu.svg) !important;
  -webkit-background-size: cover;
  background-size: cover;
}
.navbar-dark .navbar-toggler-icon {
  display: block;
  background-image: url(../img/public_menu.svg) !important;
  -webkit-background-size: cover;
  background-size: cover;
}
.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background: no-repeat center center;
  -webkit-background-size: 100% 100%;
  background-size: 100% 100%;
}
.navbar-expand-lg .navbar-nav .dropdown-menu {
  right: 0;
}
.navbar-expand-lg .navbar-nav .dropdown-menu a {
  color: #333;
}
.navbar-expand-lg .navbar-nav .dropdown-menu a:hover {
  color: #0163c6;
}
.navbar-expand-lg .navbar-nav .dropdown-menu .dropdown-item {
  padding: 0 1rem;
}
.navbar-expand-lg .navbar-nav .dropdown-menu a span {
  color: #fff;
}
.top_contact ul li .btn {
  color: #fff !important;
}
@media (min-width: 992px) {
  .top_contact ul li .btn {
    font-size: 1.3vw;
  }
}
@media (min-width: 1920px) {
  .top_contact ul li .btn {
    font-size: 1vw;
  }
}
.top_contact ul .contact_icon a {
  display: block;
  width: 3.3vw;
  height: 3.3vw;
  -webkit-border-radius: 2vw;
  border-radius: 2vw;
  background: #3bb3ff;
  margin: 0 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.top_contact ul .contact_icon a img {
  width: 2.1vw;
}
.top_contact ul .contact_icon a:nth-child(2) img {
  width: 2.2vw;
}
.top_contact ul .contact_icon a:hover {
  background: #999;
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}
.topnav .navbar-toggler {
  position: absolute;
  right: 0;
}

.index_lang {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2vw;
}
.index_lang a {
  background: #6b6b6b;
  text-align: center;
  -webkit-border-radius: 1vw;
  border-radius: 1vw;
  width: 45%;
  font-size: 2vw !important;
  line-height: 4vw;
  color: #fff;
}
.index_lang a.active {
  background: #3bb3ff;
  color: #fff;
}
.index_lang a:hover {
  background: #3bb3ff;
  color: #fff;
}
@media (max-width: 678px) {
  .ltopnav ul .contact_icon a {
    width: 4rem;
    height: 4rem;
  }
  .ltopnav h6 {
    font-size: 3.5vw;
  }
  .ltopnav ul .contact_icon a img {
    width: 2rem;
    height: 2rem;
  }
}
@media (max-width: 992px) {
  .ltopnav ul .contact_icon a {
    margin: 0.5rem;
  }
}
@media (min-width: 300px) {
  .index_lang {
    width: 100%;
    margin-bottom: 2vw;
  }
  .index_lang a {
    -webkit-border-radius: 2vw;
    border-radius: 2vw;
    font-size: 4vw !important;
    line-height: 7vw;
  }
  .navbar-brand {
    margin-left: 4vw;
  }
}

@media (min-width: 678px) {
  .navbar-brand {
    padding: 0 1vw;
    margin: 0 !important;
  }

  .index_lang a {
    -webkit-border-radius: 1vw;
    border-radius: 1vw;
    width: 45%;
    font-size: 3vw !important;
    line-height: 5vw !important;
  }
}
.navbar-brand img {
  max-width: 100%;
}
/******************************导航 end*******************************/
/*****************************轮播图 start*****************************/
.fixednav {
  z-index: 9999999;
  position: fixed;
}
.banner-swiper {
  width: 100%;
  height: 100%;
  margin-top: 9vw;
}
.banner-swiper .swiper-slide {
  background-position: center;
  -webkit-background-size: cover;
  background-size: cover;
}
.banner-swiper .swiper-slide img {
  display: block;
  width: 100%;
  -webkit-transition: -webkit-transform 3s ease;
  transition: -webkit-transform 3s ease;
  -moz-transition: transform 3s ease, -moz-transform 3s ease;
  transition: transform 3s ease;
  transition: transform 3s ease, -webkit-transform 3s ease,
    -moz-transform 3s ease;
}
.banner-swiper .swiper-slide-active img {
  z-index: 1;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.banner-swiper {
  padding: 0;
}
.banner-swiper .banner-front {
  display: block;
  position: absolute;
  z-index: 99;
  top: 30%;
  width: 50%;
  left: 25%;
  -webkit-transition: 3s ease;
  -moz-transition: 3s ease;
  transition: 3s ease;
}
.banner-swiper .banner-front h3 {
  text-align: center;
  font-size: 2.5vw;
  color: #fff;
}
.banner-swiper .banner-front h4 {
  font-size: 3.8vw;
  color: #fff;
  text-align: center;
}
.banner-swiper .banner-front a {
  text-align: center;
  display: block;
  margin: 20px auto 0;
  width: 30%;
  height: 50px;
  line-height: 50px;
  -webkit-border-radius: 25px;
  border-radius: 25px;
  background-color: #fff;
  font-size: 18px;
  font-weight: normal;
  color: #000;
  -webkit-transition: background-color 0.3s ease;
  -moz-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.banner-swiper .banner-front a:hover {
  background: #1464bd;
  color: white;
  text-decoration: none;
}
.banner-swiper {
  width: 100%;
  height: 100%;
}
.banner-swiper .swiper-pagination {
  width: 100%;
  bottom: 30px !important;
}
.swiper-slide {
  background-position: center;
  -webkit-background-size: cover;
  background-size: cover;
}
.banner-swiper .swiper-pagination-bullet .swiper-pagination-bullet-active {
  border: none !important;
  background: #1464bd !important;
  -webkit-border-radius: 100%;
  border-radius: 100%;
}
.banner-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 10px !important;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  background: #fff;
}
.banner-swiper .swiper-pagination-bullet-active {
  background: #1464bd !important;
  border: none;
  width: 12px;
  height: 12px;
  -webkit-border-radius: 13px;
  border-radius: 13px;
}
.swiper-container .swiper-button-next,
.swiper-container .swiper-button-prev {
  position: absolute;
  top: 50%;
  margin: 0 !important;
}
.swiper-container .swiper-button-next {
  right: 1vw;
}
.swiper-container .swiper-button-prev {
  left: 1vw;
}
.swiper-button-prev,
.swiper-button-next {
  background-color: rgba(255, 255, 255, 0.8);
  width: 45px;
  height: 45px;
  padding: 1vw;
  -webkit-border-radius: 25px;
  border-radius: 25px;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  transition: 0.3s ease;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  color: #fff;
  background-color: #1464bd;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1vw;
}
/**********************************bottom start******************************/
footer {
  width: 100%;
  padding: 0;
  background: #efefef;
  margin: 0;
  padding: 5vw 0 2vw;
}
footer .dw-foot {
  width: 100%;
}
footer .dw-foot .foot-logo {
  background: url(../img/line.png) center left repeat-x;
}
footer .dw-foot .logo-fi {
  width: 20vw;
  background: #efefef;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto;
  padding: 1vw;
}
footer .dw-foot .logo-fi img {
  width: 100%;
}
footer .dw-foot .foot-text {
  text-align: center;
  color: #6b6b6b;
  font-size: 1.3vw;
  font-weight: 400;
}
footer .dw-foot .foot-text a {
  color: #6b6b6b;
  text-decoration: none;
  font-size: 1.3vw;
}
footer .dw-foot .foot-text a:hover {
  color: #0163c6;
}
footer .dw-foot .foot-media {
  text-align: center;
  margin: 2vw auto;
}
footer .dw-foot .foot-media a {
  width: 5vw;
  height: 5vw;
  background: #3bb3ff;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  margin: 1vw;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
footer .dw-foot .foot-media a img {
  width: 45%;
}
footer .dw-foot .foot-media a:hover {
  background: #000;
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}
@media (min-width: 1920px) {
  .container {
    max-width: 1800px !important;
  }
}
@media (min-width: 300px) {
  footer .dw-foot .foot-text {
    font-size: 2.5vw;
  }
  footer .dw-foot .foot-text a {
    font-size: 2.5vw;
  }
  footer .dw-foot .foot-media a {
    width: 7vw;
    height: 7vw;
  }
  footer .dw-foot .logo-fi {
    width: 30vw;
  }
}
@media (min-width: 768px) {
  footer .dw-foot .foot-text {
    font-size: 1.8vw;
  }
  footer .dw-foot .foot-text a {
    font-size: 1.8vw;
  }
  footer .dw-foot .foot-media a {
    width: 5vw;
    height: 5vw;
  }
  footer .dw-foot .logo-fi {
    width: 25vw;
  }
}
@media (min-width: 1400px) {
  footer .dw-foot .foot-text {
    font-size: 1.2vw;
  }
  footer .dw-foot .foot-text a {
    font-size: 1.2vw;
  }
  footer .dw-foot .foot-media a {
    width: 3vw;
    height: 3vw;
  }
  footer .dw-foot .logo-fi {
    width: 20vw;
  }
}
/***************************************contact start*************************************/
.bannerin {
  width: 100%;
  margin-top: 9vw;
}
.bannerin img {
  width: 100%;
}
@media (max-width: 992px) {
  .bannerin {
    margin-top: 0;
  }
  .bg-dark {
    fill: #000 !important;
  }
}
.mainin {
  background: #fff;
  width: 100%;
}
.inner_title {
  width: 90%;
  border-bottom: 1px solid #000;
  margin: 0 auto;
  height: 6vw;
}
.inner_title .fl {
  width: 50%;
}
.inner_title h3 {
  width: 100%;
  line-height: 6vw;
}
.inner_title span {
  display: inline-block;
  line-height: 5.9vw;
  border-bottom: 4px solid #000;
  font-size: 2vw;
}
.inner_title .fr {
  width: 50%;
  text-align: right;
}
.inner_title .fr a {
  color: #6b6b6b;
  line-height: 6vw;
}
.inner_main {
  width: 90%;
  margin: 4vw auto 0;
  padding-bottom: 4vw;
  overflow: hidden;
}
@media (max-width: 992px) {
  .inner_main {
    padding-bottom: 10vw;
  }
}
.inner_main .contact_title h4 {
  text-align: center;
  font-size: 2.5vw;
  line-height: 4vw;
}
.inner_main .inner_contact {
  padding: 6vw 0;
  border-bottom: 1px solid #999;
}
.inner_main .inner_contact ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: visible;
}
.inner_main .inner_contact ul li .fl {
  width: 3vw;
  height: 3vw;
  border: 1px solid #000;
  -webkit-border-radius: 1vw;
  border-radius: 1vw;
  margin-right: 1.5vw;
}
.inner_main .inner_contact ul li .fl i {
  display: block;
  width: 3vw;
  height: 3vw;
}
.inner_main .inner_contact ul li .fl .con_add {
  background: url(../img/public_address.svg) center no-repeat;
  -webkit-background-size: 50% 50%;
  background-size: 50%;
}
.inner_main .inner_contact ul li .fl .con_tel {
  background: url(../img/public_phone_2.svg) center no-repeat;
  -webkit-background-size: 50% 50%;
  background-size: 50%;
}
.inner_main .inner_contact ul li .fl .con_mail {
  background: url(../img/public_email.svg) center no-repeat;
  -webkit-background-size: 50% 50%;
  background-size: 50%;
}
.inner_main .inner_contact ul li .fr h5 {
  font-size: 2vw;
}
.inner_main .inner_contact ul li .fr h6 {
  font-size: 1.3vw;
  color: #6b6b6b;
}
.inner_main .inner_contact ul li .fr h6 a {
  color: #6b6b6b;
}
.inner_main .inner_contact ul li .fr h6 a:hover {
  color: #0163c6;
}
.inner_main .inner_download {
  padding: 1vw 0;
}
.inner_main .inner_download ul {
  padding: 0;
}
.inner_main .inner_download ul li {
  padding: 1vw;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.inner_main .inner_download ul li .download_out {
  margin: 1vw;
  overflow: hidden;
  position: relative;
}
.inner_main .inner_download ul li a {
  display: block;
  width: 100%;
}
.inner_main .inner_download ul li a .download {
  width: 100%;
  height: 5vw;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.inner_main .inner_download ul li a .download img {
  width: 100%;
  min-width: 100%;
}
.inner_main .inner_download ul li a h3 {
  width: 100%;
  background: #f4f4f4;
  padding: 1vw 2vw;
  font-size: 1vw;
  line-height: 2vw;
  color: #333;
  margin: 0;
}
.inner_main .inner_download ul li .icon_download {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transform: translateY(40vw);
  -moz-transform: translateY(40vw);
  -ms-transform: translateY(40vw);
  transform: translateY(40vw);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.inner_main .inner_download ul li .icon_download img {
  width: 3vw;
  height: auto;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  transition: all 1s;
}
.inner_main .inner_download ul li a:hover .icon_download {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.inner_main .inner_download ul li a:hover .icon_download img {
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  transition: all 1s;
}
@media (min-width: 300px) {
  .inner_main .inner_download ul li .icon_download img {
    width: 10vw;
  }
  .inner_main .inner_download ul li {
    width: 100%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -moz-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 500px) {
  .inner_main .inner_download ul li .icon_download img {
    width: 10vw;
  }
  .inner_main .inner_download ul li {
    width: 50%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -moz-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
}

@media (min-width: 768px) {
  .inner_main .inner_download ul li .icon_download img {
    width: 3vw;
  }
  .inner_main .inner_download ul li {
    width: 33%;
  }
}

.inner_main .inner_promotion {
  padding: 1vw 0;
}
.inner_main .inner_promotion ul {
  padding: 0;
}
.inner_main .inner_promotion ul li {
  padding: 1.5vw;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .inner_title {
    height: 10vw;
  }
  .inner_title .fl {
    width: 60%;
  }
  .inner_title .fr {
    display: none;
  }
  .inner_title h3 {
    line-height: 10vw;
  }
  .inner_title span {
    display: inline-block;
    line-height: 9vw;
    border-bottom: 4px solid #000;
    font-size: 4vw;
  }
  .inner_main .inner_download ul li .icon_download {
    transform: translateY(90vw);
  }
  .inner_title .fr a {
    color: #6b6b6b;
    font-size: 3vw;
    line-height: 10vw;
  }
  .inner_main .contact_title h4 {
    font-size: 3.5vw;
  }
  .inner_message {
    padding: 6vw 0 !important;
  }
  .inner_message h2 {
    font-size: 4vw !important;
    margin-bottom: 4vw !important;
  }
  .inner_message h3 {
    font-size: 2.5vw !important;
  }
  .inner_message h3 i {
    padding-right: 1vw !important;
  }
  .inner_message .flex-grow-1 {
    margin-bottom: 4vw !important;
  }
  .inner_message .form-control-custom {
    padding: 1vw !important;
    height: 6vw !important;
  }
  .inner_message .message {
    height: 8vw !important;
  }
  .inner_message .form-control {
    line-height: 5vw !important;
  }
  .inner_message input::-webkit-input-placeholder {
    color: #999 !important;
    font-size: 2vw !important;
  }
  .inner_message input::-moz-placeholder {
    color: #999 !important;
    font-size: 2vw !important;
  }
  .inner_message input::placeholder {
    color: #999 !important;
    font-size: 2vw !important;
  }
  .inner_message .btn {
    width: 50% !important;
    height: 8vw !important;
    font-size: 2vw !important;
    color: #fff;
    background: #000;
  }
}
@media (min-width: 300px) {
  .inner_main .inner_download ul li a h3 {
    font-size: 4vw;
    line-height: 8vw;
  }
  .inner_main .inner_contact ul li .fl {
    width: 6vw;
    height: 6vw;
    float: left;
  }
  .inner_main .inner_contact ul li .fr {
    width: 50vw;
  }
  .inner_main .inner_contact ul li .fl i {
    width: 6vw;
    height: 6vw;
  }
  .inner_main .inner_contact ul li .fr h5 {
    font-size: 3vw;
  }
  .inner_main .inner_contact ul li .fr h6 {
    font-size: 2vw;
  }
  .inner_contact .row .col-md-4 {
    width: 100%;
    margin: 2vw 0;
  }
}
@media (min-width: 500px) {
  .inner_main .inner_download ul li a h3 {
    font-size: 3vw;
    line-height: 6vw;
  }
}
@media (min-width: 768px) {
  .inner_contact .row .col-md-4 {
    width: 100%;
    margin: 2vw 0;
  }
  .inner_main .inner_download ul li a h3 {
    font-size: 2vw;
    line-height: 4vw;
  }
}
@media (min-width: 992px) {
  .inner_main .inner_download ul li a h3 {
    font-size: 1.2vw !important;
    line-height: 3vw;
  }
  .inner_main .inner_contact ul li .fr h5 {
    font-size: 2vw;
  }
  .inner_main .inner_contact ul li .fr h6 {
    font-size: 1.3vw;
  }
  .inner_contact .row .col-md-4 {
    width: 30%;
  }
  .inner_main .inner_contact ul li .fl {
    width: 3vw;
    height: 3vw;
  }
  .inner_main .inner_contact ul li .fl i {
    width: 3vw;
    height: 3vw;
  }
}
@media (min-width: 300px) {
  .inner_promotion .row .col-md-3 {
    width: 50%;
  }
  .promotion_out {
  }
  .promotion_out h3 {
    font-size: 3vw !important;
    line-height: 6vw !important;
  }
}
@media (min-width: 992px) {
  .inner_promotion .row .col-md-3 {
    width: 33%;
  }
  .promotion_out h3 {
    font-size: 1.5vw !important;
    line-height: 2.5vw !important;
  }
}
@media (min-width: 1200px) {
  .inner_promotion .row .col-md-3 {
    width: 33%;
  }
  .promotion_out h3 {
    font-size: 1vw !important;
    line-height: 1.5vw !important;
  }
}
ul#Slider-ul-full {
  margin: 0;
  padding: 0;
}
.promotion_li {
  list-style: none;
  text-align: center;
  position: relative;
}
.inner_promotion li a {
  color: #333;
}
.full_li {
  text-align: center;
  cursor: zoom-in;
}
/* .promotion_img {
  width: 100%;
  height: auto;
} */
.promotion_out {
  background: #f4f4f4;
  padding: 0 1vw;
}
.promotion_out h3 {
  text-align: left;
  font-size: 1vw;
  line-height: 3vw;
  margin: 0;
  padding: 1vw 0 !important;
}
.promotion_out .rte {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
  opacity: 0.7;
}
@media (max-width: 768px) {
  .promotion_out .rte {
    display: none !important;
  }
  .promotion_out .date {
    font-size: 3vw;
  }
}
.promotion_out .date {
  padding: 0 0 20px 0;
  text-align: left;
  opacity: 0.7;
}
.promotin_out .rte.expanded {
  -webkit-line-clamp: inherit;
  /* 设置为inherit以继承父元素的属性，或者直接移除这个属性 */
  overflow: inherit;
  text-overflow: clip;
  /* 或者使用clip来避免省略号 */
}

.newstext {
  margin: 0 auto;
  background: #fff;
}
.newstext h2 {
  font-weight: normal;
  font-size: 28px;
  color: #333;
  text-align: left;
  line-height: 40px;
  padding: 0 0 10px 0;
}
.newstext .info {
  line-height: 20px;
  font-size: 14px;
  text-align: left;
}
.newstext .text {
  line-height: 32px;
  font-size: 16px;
  color: #666;
  margin: 30px 0 0 0;
  border-top: 1px solid #e2e2e2;
  padding: 30px 0 0 0;
}

.download_img img {
  width: 100%;
}
.verpassform {
  position: fixed;
  display: none;
  top: 50%;
  width: 600px;
  box-sizing: border-box;
  margin-left: -300px;
  margin-top: -110px;
  left: 50%;
  padding: 2%;
  background-color: #fff;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.3);
  z-index: 99999;
}

.verpassform .verpassword {
  width: 100%;
  height: 40px;
  padding: 0 10px;
  outline: none;
  border: 1px solid #666;
}
.verpassform h3 {
  text-transform: uppercase;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 20px 0;
}
.verpassform .btn_ver {
  width: 200px;
  height: 40px;
  background-color: #006fd8;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  border: none;
  margin: 20px auto 0 auto;
  display: block;
}
.verpassform .closebtn {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .verpassform {
    width: 80vw;
    left: 10vw;
    top: 40%;
    margin: 0 !important;
  }
  .verpassform h3 {
    font-size: 4vw;
  }
}
.downshadow {
  display: none;
  background-color: #000;
  opacity: 0.7;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
}
.pagechange {
  margin: 30px 0 0 0;
  padding: 30px 0 0 0;
  line-height: 36px;
  position: relative;
  border-top: 1px solid #e2e2e2;
}
.pagechange .pagechangel,
.pagechange .returnlist,
.pagechange .pagechanger {
  position: relative;
  z-index: 1;
}
.pagechange .returnlist {
  position: absolute;
  left: 50%;
  top: 30px;
}
.pagechange .returnlist a {
  position: relative;
  font-size: 14px;
}
.pagechange .returnlist a .fa {
  font-size: 12px;
  margin: 0 5px 0 0;
}
.pagechange .returnlist a:hover {
  background: #3bb3ff;
  color: #fff;
}
.pagechange a {
  display: block;
  font-size: 14px;
  color: #333;
  padding: 0 15px;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.pagechange .pagechangel:hover a,
.pagechange .pagechanger:hover a {
  color: #3bb3ff;
}
.pagechange .pagechangel:after,
.pagechange .pagechanger:after {
  position: absolute;
  z-index: -1;
  width: 0;
  height: 1px;
  background: #3bb3ff;
  bottom: 0;
  content: "";
  display: block;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.pagechange .pagechangel:hover:after,
.pagechange .pagechanger:hover:after {
  width: 100%;
}
.pagechange .pagechangel:after {
  right: 0;
}
.pagechange .pagechanger:after {
  left: 0;
}

.protext img,
.newstext img {
  margin: 10px 0;
  max-width: 100%;
  height: auto !important;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 9999999;
}
.modal-content2 {
  overflow: auto;
  text-align: center;
}
.modal-content2 img {
  max-height: 100% !important;
  max-width: 100%;
  cursor: zoom-out;
}
.inner_message {
  padding: 6vw 0;
}
.inner_message h2 {
  color: #000;
  font-size: 2.5vw;
  text-align: center;
  margin-bottom: 2vw;
  text-transform: uppercase;
}
.inner_message h3 {
  color: #000;
  font-weight: normal;
  font-size: 1.5vw;
}
.inner_message h3 i {
  color: red;
  padding-right: 0.5vw;
}
.inner_message .flex-grow-1 {
  margin-bottom: 2vw;
}
.inner_message .form-control-custom {
  padding: 0.5vw;
  height: 3vw;
  width: 90%;
  background: none;
  border: 1px solid #999;
  -webkit-border-radius: 0;
  border-radius: 0;
  color: #999;
}
.inner_message .message {
  height: 6vw !important;
  width: 95% !important;
}
.inner_message .form-control {
  color: #999;
  line-height: 3vw;
}
.inner_message input::-webkit-input-placeholder {
  color: #999 !important;
  font-size: 1vw;
}
.inner_message input::-moz-placeholder {
  color: #999 !important;
  font-size: 1vw;
}
.inner_message input::placeholder {
  color: #999 !important;
  font-size: 1vw;
}
.inner_message .btn {
  width: 100%;
  height: 4vw;
  font-size: 1vw;
  color: #fff;
  background: #000;
}
.inner_message .hvr-outline-out:before {
  border: #000 solid 4px;
}
.inner_message .btn:hover {
  background: #000 !important;
  color: #fff !important;
}
/**********************************index-about start******************************/
.index-about {
  padding-top: 6vw;
  width: 100%;
}
.index-about .container {
  background: #fff;
}
.index-about .col-md-5 {
  padding: 0;
}
.index-about .col-md-6 {
  padding: 0;
}
.index-about .index-about-img {
  width: 100%;
}
.index-about .index-about-img img {
  width: 100%;
}
.index-about .index-about-text {
  width: 100%;
  padding: 3vw;
}
.index-about .index-about-text .about_line {
  width: 8vw;
  height: 2px;
  background: url(../img/line.jpg) center repeat;
}
.index-about .index-about-text h3 {
  font-size: 2.5vw;
  color: #000;
  line-height: 4.5vw;
  margin: 0;
}
.index-about .index-about-text h4 {
  font-size: 1.3vw;
  color: black;
  line-height: 2vw;
  margin: 1.5vw 0;
}
.index-about .index-about-text span {
  padding: 0;
  font-weight: normal;
  color: #333;
  margin-top: 1vw;
  line-height: 1.6vw;
  font-size: 1vw;
  display: -webkit-box;
  /* 使用弹性盒子布局模型 */
  -webkit-line-clamp: 9;
  /* 限制在3行 */
  -webkit-box-orient: vertical;
  /* 垂直排列盒子 */
  overflow: hidden;
  /* 隐藏超出容器的内容 */
  text-overflow: ellipsis;
  /* 多出的文本用省略号表示 */
  white-space: normal;
  /* 使内部的白空格生效 */
}

.index-about .index-about-text a {
  display: block;
  height: 3vw;
  width: 10vw;
  line-height: 3vw;
  text-align: center;
  font-size: 1.2vw;
  font-weight: normal;
  color: black;
  margin: 2vw 0 0;
  border: 1px solid #000;
  text-decoration: none;
  -webkit-transition: background-color 0.3s ease;
  -moz-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.index-about .index-about-text a:hover {
  background: black;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  color: #fff;
  -webkit-transition: background-color 0.3s ease;
  -moz-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media (max-width: 992px) {
  .index-about .index-about-text span {
    font-size: 1.5vw;
  }
  .index-about .index-about-text h4 {
    display: none;
  }
  .index-about .index-about-text a {
    height: 4vw;
    line-height: 4vw;
    font-size: 1.8vw;
    width: 14vw;
  }
}
.page {
  margin: 20px 0;
  text-align: center;
  width: 100%;
}
.page a {
  display: inline-block;
  padding: 6px 12px;
  margin: 0 2px;
  font-size: 12px;
  background: #fff;
  border: 1px solid #eee;
  color: #333;
}
.page .thispage {
  background: #000;
  border: 1px solid #000;
  font-size: 12px;
  color: #fff !important;
}

.nabout {
  font-size: 18px;
  line-height: 34px;
}
@media (max-width: 767px) {
  .index-about .index-about-text {
    padding: 4vw 0;
  }
  .index-about .index-about-text h3 {
    font-size: 4vw;
    text-align: center;
  }
  .index-about .index-about-text h4 {
    display: none;
  }
  .index-about .index-about-text span {
    padding: 0 2vw;
    text-align: center;
    height: 24vw;
    font-size: 3vw;
    line-height: 6vw;
    -webkit-line-clamp: 4;
    /* 限制在3行 */
    margin: 3vw auto 0;
  }
  .index-about .index-about-text .about_line {
    margin: 3vw auto 0;
  }
  .index-about .index-about-text p {
    margin: 0 auto;
  }
  .index-about .index-about-img {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 70%;
    height: 30vw;
    overflow: hidden;
  }
  .index-about .index-about-img img {
    max-width: 100%;
  }
  .index-about .index-about-text a {
    margin: 3vw auto 0;
    width: 40%;
    height: 7vw;
    line-height: 7vw;
    font-size: 3vw;
    background: none;
  }
  .container {
    width: 90%;
    margin: 0 auto;
  }
  .page a.total,
  .page a.pagenum,
  .page a.pageper {
    display: none;
  }
  .page {
    text-align: center;
  }
}
/**********************************index-about end******************************/
/**********************************index-product start******************************/
.doltitle {
  margin: 3vw 0;
  width: 100%;
}
.doltitle h3 {
  text-align: center;
  font-size: 3vw;
  line-height: 3vw;
  color: #000;
  font-weight: bold;
  text-transform: uppercase;
}
.index-product {
  margin-top: 8vw;
}
.index-product .mb-5 {
  margin-bottom: 2vw !important;
}
.index-product .business-slogon {
  width: 100%;
  text-align: center;
  margin: 0 auto;
}
.index-product .business-slogon h3 {
  font-size: 2.8vw;
  font-weight: 500;
  line-height: 3vw;
}
/* .index-product .business-slogon a {
  display: block;
  text-align: center;
  line-height: 5vw;
  height: 5vw;
  width: 18vw;
  font-size: 1.8vw;
  color: #fff;
  background: #000;
  margin: 2vw auto 0;
  font-weight: 300;
  -webkit-transition: all 0.3;
  -moz-transition: all 0.3;
  transition: all 0.3;
} */
.index-product .business-slogon a {
  display: block;
  text-align: center;
  line-height: 6vw;
  height: 9vw;
  width: 22vw;
  font-size: 1.8vw;
  color: #fff;
  background: url(../img/button.png) top center no-repeat;
  background-size: 100%;
  margin: 2vw auto 0;
  font-weight: bold;
  -webkit-transition: all 0.3;
  -moz-transition: all 0.3;
  transition: all 0.3;
}
.index-product .product-list {
  margin: 1vw;
  background: #fff;
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  transition: 0.2s ease;
}
.index-product .product-list .pro-img {
  width: 100%;
  overflow: hidden;
}
.index-product .product-list .product-img {
  width: 100%;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  -moz-transition: transform 0.2s ease-in-out, -moz-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out,
    -moz-transform 0.2s ease-in-out;
}
.index-product .product-list .pro-text {
  padding: 1vw;
}
.index-product .product-list h3 {
  font-size: 1.5vw;
  line-height: 2.5vw;
  margin: 0 auto;
}
.index-product .product-list h4 {
  display: none;
  font-size: 1.1vw;
  font-weight: 400;
  line-height: 1.5vw;
  color: #6b6b6b;
}
.index-product .product-list:hover {
  background: #fff;
  margin-top: -0.5vw;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  transition: 0.2s ease;
}
.index-product .product-list:hover .product-img {
  top: 5%;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  -moz-transition: transform 0.2s ease-in-out, -moz-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out,
    -moz-transform 0.2s ease-in-out;
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
.index-product .product-list:hover .pro-btn {
  border: 1px solid #1464bd;
  background: #1464bd;
}
.index-product .product-list:hover .pro-btn span {
  color: #fff;
}
.index-product .product-list:hover .pro-btn .pro-btn-icon {
  background: #fff;
}
.index-product .product-list:hover .pro-btn .pro-btn-icon svg {
  fill: #1464bd;
}
@media (max-width: 767px) {
  .index-product .product-list .pro-text h3 {
    font-size: 2.5vw;
    line-height: 5vw;
    text-align: center;
  }
  .index-product .product-list .pro-text h4 {
    display: none;
  }
  .index-product .row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .index-product .row .col-md-4 {
    width: 50%;
  }
  .index-product .business-slogon h3 {
    font-size: 3.5vw;
  }
  .index-product .business-slogon a {
    line-height: 8vw;
    height: 8vw;
    width: 28vw;
    font-size: 2.5vw;
    margin-top: 4vw;
  }
}
.cat-swiper .swiper-slide img {
  width: 100%;
}
/**********************************index-application start******************************/
.index-application {
  width: 90%;
  margin: 4vw auto;
  padding: 1vw 0 2vw;
}
.index-application .swiper {
  overflow: visible !important;
}
.index-application .swiper-pagination {
  bottom: -3vw;
}
.index-application li {
  width: 80%;
  height: 3.5vw;
  margin: 0.3vw 0;
}
.index-application .nav-link {
  display: block;
  width: 100%;
  height: 3.5vw;
  line-height: 3.5vw;
  position: relative;
  padding: 0 1.5vw !important;
  background: #fff;
  -webkit-border-radius: 1vw;
  border-radius: 1vw;
  border: 1px solid #dbdbdb;
  color: #000;
  font-size: 1vw;
  font-weight: normal;
}
.index-application .nav-link span {
  display: block;
  width: 100%;
  padding-left: 1vw;
  line-height: 3.5vw;
  font-weight: normal;
  font-size: 1vw;
}
.index-application .nav-link .link {
  position: absolute;
  top: 0;
  display: block;
  width: 12vw;
  height: 3vw;
}
.index-application .nav-link .pro-btn-icon {
  position: absolute;
  right: 2vw;
  top: 1vw;
  display: block;
  background: #000;
  height: 1.5vw;
  width: 1.5vw;
  -webkit-border-radius: 0.8vw;
  border-radius: 0.8vw;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: background-color 0.3s ease-in-out;
  -moz-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
.index-application .nav-link .pro-btn-icon svg {
  margin: 0 auto;
  width: 1vw;
  fill: #fff;
  stroke: white;
  stroke-width: 3px;
}
.index-application .nav-link:hover {
  color: #fff;
  border: 1px solid #1464bd;
  background: #1464bd;
  -webkit-transition: background-color 0.3s ease-in-out;
  -moz-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
.index-application .nav-link:hover span {
  color: #fff;
}
.index-application .nav-link:hover .pro-btn-icon {
  background: #fff;
}
.index-application .nav-link:hover .pro-btn-icon svg {
  fill: #1464bd;
}
.index-application a.active {
  color: #fff;
  border: 1px solid #1464bd;
  background: #1464bd;
}
.index-application a.active span {
  color: #fff;
}
.index-application a.active .pro-btn-icon {
  background: #fff;
}
.index-application a.active .pro-btn-icon svg {
  fill: #1464bd;
}
.index-application .tab-pane {
  -webkit-border-radius: 2vw;
  border-radius: 2vw;
  overflow: hidden;
}
.index-application .tab-pane img {
  width: 100%;
}
/**********************************index-scenarios******************************/
.index-scenarios {
  padding: 4vw 0;
  margin-bottom: 4vw;
}
.index-scenarios .col-xs-5ths,
.index-scenarios .col-sm-5ths,
.index-scenarios .col-md-5ths,
.index-scenarios .col-lg-5ths {
  position: relative;
  min-height: 0px;
  padding: 0px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.index-scenarios .scenarios {
  margin: 0 1vw;
}
@media (min-width: 300px) {
  .index-scenarios .row {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .index-scenarios .col-sm-5ths {
    width: 30%;
  }
}
@media (min-width: 768px) {
  .index-scenarios .row {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .index-scenarios .col-sm-5ths {
    width: 30%;
  }
}
@media (min-width: 992px) {
  .index-scenarios .col-md-5ths {
    width: 16.6%;
    float: left;
  }
}
@media (min-width: 1200px) {
  .index-scenarios .col-lg-5ths {
    width: 16.6%;
    float: left;
  }
}
.index-scenarios a {
  width: 100%;
  height: 100%;
  position: absolute;
  display: inline;
  left: 0;
  top: 0;
}
.index-scenarios .icon {
  margin: 1vw 0;
  border: 3px solid white;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 2vw 0;
  position: relative;
  overflow: hidden;
}
.index-scenarios .icon .icon-img {
  z-index: 99;
  margin: 0 auto;
  width: 8vw;
  height: 8vw;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: black;
  overflow: hidden;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.index-scenarios .icon .icon-img img {
  width: 3vw;
  height: auto;
}
.index-scenarios .icon h3 {
  z-index: 99;
  text-align: center;
  font-size: 1.3vw;
  line-height: 3vw;
  margin-top: 1vw;
}
@media (max-width: 767px) {
  .doltitle h3 {
    font-size: 5vw;
  }
  .index-scenarios .icon h3 {
    font-size: 3vw;
  }
}
@media (max-width: 992px) {
  .doltitle h3 {
    font-size: 4vw;
  }
  .index-scenarios .icon h3 {
    font-size: 2.5vw;
  }
}
.index-scenarios .icon:hover {
  border: 3px solid #e5e5e5;
  background-image: -webkit-linear-gradient(135deg, #ffffff 0%, #f2f2f2 74%);
  background-image: -moz- oldlinear-gradient(135deg, #ffffff 0%, #f2f2f2 74%);
  background-image: linear-gradient(315deg, #ffffff 0%, #f2f2f2 74%);
  margin-top: -1vw;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  transition: 0.3s ease;
}
.index-scenarios .icon:hover .icon-img {
  background: url(../img/explore_more_bg.jpg) center no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.index-scenarios .icon:hover .icon-img img {
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  transition: 0.3s ease;
}
/**********************************index-news******************************/
