@font-face {
  font-family: 'DIN-Medium';
  src: url('../fonts/DIN-Medium.otf');
}
@font-face {
  font-family: 'Montserrat-SemiBold';
  src: url('../fonts/Montserrat-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';
  --Montserrat: 'Montserrat', 'sans-serif';
  --Poppins: 'Poppins', 'sans-serif';
  --Lato: 'Lato', 'sans-serif';
}
h1,
h2,
h3,
h4,
h5,
p {
  transition: all 0.5s;
}
p {
  margin-bottom: 0;
}
ul {
  margin-bottom: 0;
}
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: 85px;
  width: 100%;
}
.mycontainer {
  max-width: 1200px;
  width: 88%;
  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%;
  box-shadow: 0 1px 4px rgba(0, 6, 26, 0.19);
  z-index: 99;
  transition: all 0.5s;
  background-color: #fff;
}
header .mycontainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 85px;
}
header .logo {
  width: 253px;
}
header .logo img {
  transition: all 0.5s;
}
header .lv1 {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  color: #333;
}
header .lv1 > li {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .lv1 > li > a {
  color: #333;
  font-size: clamp(16px, 1.0416667vw, 20px);
  transition: all 0.5s;
  text-transform: uppercase;
  font-weight: 700;
}
header .lv1 > li > a:hover {
  color: #107cdd;
}
header .lv1 > li:hover::after {
  width: 100%;
}
header .lv1 > li:hover .lv2 {
  opacity: 1;
  transform: translate(-50%, 0);
  visibility: visible;
  z-index: 1;
}
header .lv1 .lang {
  font-family: 'Arial Narrow';
}
header .lv1 .lang .on {
  color: #0e6eb8;
}
header .lv1 > .active > a {
  color: #107cdd;
}
header .lv2 {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, -100%);
  transition: all 0.5s;
  background-color: #fff;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
}
header .lv2 > li {
  position: relative;
  white-space: nowrap;
  text-align: center;
  padding: 0 1em;
  margin-bottom: 0.5em;
  font-size: clamp(14px, 0.9375vw, 18px);
  transition: all 0.5s;
  color: #333;
}
header .lv2 > li::after {
  display: block;
  position: absolute;
  content: "";
  border: 3px solid transparent;
  border-left: 5px solid #107cdd;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  opacity: 0;
  transition: all 0.5s;
}
header .lv2 > li > a {
  color: inherit;
}
header .lv2 > li:hover {
  background-color: #107cdd;
  color: #fff;
}
header .lv2 > li:hover::after {
  transform: translate(100%, -50%);
  opacity: 1;
}
header .lv2 > li:hover > .lv3 {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}
header .lv3 {
  position: absolute;
  top: 0;
  left: calc(100% + 5px);
  transform: translate(50%, 0);
  transition: all 0.5s;
  background-color: #fff;
  visibility: hidden;
  opacity: 0;
}
header .lv3 li {
  position: relative;
  font-size: clamp(14px, 0.9375vw, 18px);
  color: #333;
  transition: all 0.5s;
  margin-bottom: 0.5em;
  padding: 0.2em 1.3888889em 0;
}
header .lv3 li a {
  color: inherit;
}
header .lv3 li:hover {
  color: #107cdd;
}
header .lv3 li:hover .lv3 {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}
header nav {
  width: 69.5833333%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .search form {
  position: relative;
}
header .search form input {
  width: 214px;
  height: 30px;
  border-radius: 15px;
  outline: none;
  font-size: 13px;
  color: #333;
  font-weight: 300;
  background-color: #fafafa;
  padding: 0 35px 0 14px;
  transition: all 0.5s;
}
header .search form input::placeholder {
  color: #5f5f5f;
  transition: all 0.5s;
}
header .search form button {
  position: absolute;
  outline: none;
  border: 0;
  background-color: transparent;
  right: 22px;
  top: 50%;
  transform: translate(0, -50%);
  cursor: pointer;
  transition: all 0.5s;
}
.box {
  width: 100%;
  text-align: center;
  margin: 3.4868421% 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.pagination {
  display: flex !important;
  text-align: center;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.pagination > li a {
  display: block;
  font-size: 22px;
  padding: 0 14px;
  line-height: 40px;
  background-color: #edf5fb;
  margin: 5px 8px;
  color: #5f5f5f;
  transition: all 0.5s;
  font-family: var(--Din);
  border-radius: 4px;
}
.pagination .active a {
  color: #fff;
  background-color: #035fa8;
  border: 1px solid transparent;
}
.pagination .active a:hover {
  color: #fff;
}
.pagination li a:hover {
  color: #035fa8;
}
.pagination .btn {
  margin: 0 29px;
}
.pagination .btn a {
  width: auto;
  white-space: nowrap;
  background-color: transparent;
  box-shadow: none;
  color: rgba(46, 46, 46, 0.3);
  font-weight: 700;
}
.pagination .btn i {
  margin: 0 20px;
}
.pagination .disabled {
  cursor: not-allowed;
}
.pagination .disabled a {
  color: #dcdcdc !important;
  cursor: not-allowed;
  background-color: #f7f7f7;
  pointer-events: none;
}
.box .total {
  color: #666;
  margin: 5px 7px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.box .go-link {
  margin: 5px 19px;
  font-size: 16px;
  color: #666;
}
.box .go-link form {
  display: flex;
  align-items: center;
}
.box .go-link a {
  line-height: 1;
  display: inherit;
}
.box .go-link button {
  cursor: pointer;
  font-size: 16px;
  color: #666;
  outline: none;
  background-color: transparent;
  border: 0;
  padding: 0;
  margin: 0;
}
.box .go-link button:hover {
  text-decoration: underline;
}
.box .go-link input {
  width: 56px;
  height: 40px;
  text-align: center;
  outline: none;
  border-radius: 4px;
  border: 2px solid #f0f4f8;
  font-family: var(--Din);
  margin: 0 11px;
}
.box .go-link input[type='number']::-webkit-outer-spin-button,
.box .go-link input[type='number']::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0;
}
.index-banner {
  position: relative;
}
.index-banner .swiper .swiper-slide {
  position: relative;
}
.index-banner .swiper .swiper-slide-active h2 {
  animation: fadeInDown 2s;
}
.index-banner .swiper .swiper-slide-active h5 {
  animation: fadeInDown 2.5s;
}
.index-banner .swiper .swiper-slide-active a {
  animation: fadeInUp 2s;
}
.index-banner .swiper .swiper-slide-active .banner-img {
  transform: scale(1);
}
.index-banner .banner-img {
  display: block;
  width: 100%;
  object-fit: cover;
  transition: all 5s;
  transform: scale(1.1);
}
.index-banner .mycontainer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.index-banner .banner-text {
  text-align: center;
}
.index-banner .banner-text h2 {
  font-size: 50px;
  color: #fff;
  font-weight: 700;
  line-height: 1.6;
}
.index-banner .banner-text h5 {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  line-height: 1.6;
}
.index-banner .banner-text a {
  display: inline-block;
  width: 150px;
  line-height: 50px;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 25px;
  color: #fff;
  margin-top: 6.13497%;
  transition: all 0.5s;
}
.index-banner .banner-text a img {
  margin-right: 13px;
  transition: all 0.5s;
}
.index-banner .banner-text a:hover {
  box-shadow: inset -5px 5px 15px rgba(255, 255, 255, 0.3);
}
.index-banner .banner-text a:hover img {
  margin-right: 7px;
}
.index-banner .swiper-pagination {
  bottom: 5%;
}
.index-banner .swiper-pagination .swiper-pagination-bullet {
  width: clamp(12px, 1.875vw, 36px);
  height: clamp(5px, 0.72916667vw, 14px);
  border-radius: 7px;
  background-color: transparent;
  border: 1px solid #fff;
  opacity: 1;
  transition: all 0.5s;
  margin: 0 clamp(3px, 0.46875vw, 9px);
}
.index-banner .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fff;
}
.index-title {
  text-align: center;
  margin-bottom: 6px;
}
.index-title h3 {
  font-size: clamp(24px, 1.875vw, 36px);
  color: #000;
  font-weight: 700;
  position: relative;
}
.search-banner {
  background-color: #eee;
}
.search-banner .mycontainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  min-height: 60px;
  padding: 10px 0;
}
.search-banner .mycontainer .lt {
  flex: 1;
  margin-right: 1em;
  font-size: clamp(14px, 0.9375vw, 18px);
  min-width: 320px;
  color: #333;
}
.search-banner .mycontainer .lt a {
  color: inherit;
}
.search-banner .mycontainer .lt a:hover {
  text-decoration: underline !important;
}
.search-banner .mycontainer .rt form {
  position: relative;
  font-size: 14px;
}
.search-banner .mycontainer .rt form input {
  display: block;
  width: clamp(270px, 21.19791667vw, 407px);
  outline: none;
  background-color: #fff;
  border-radius: 2em;
  height: 2em;
  color: #333;
  padding: 0 5.714286em 0 1em;
}
.search-banner .mycontainer .rt form input::placeholder {
  color: #c3c2c2;
}
.search-banner .mycontainer .rt form button {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  font-size: 1.0714286em;
  width: 4.8em;
  height: 100%;
  outline: none;
  border-radius: 0 1em 1em 0;
  background-color: #006ccd;
  color: #fff;
}
.search-banner .mycontainer .rt form button img {
  width: 1.26666667em;
}
.tools-bar {
  position: fixed;
  right: 23px;
  top: 45%;
  background-color: #006ccd;
  padding: 2px;
  z-index: 1;
  border-radius: 4px;
}
.tools-bar .block {
  position: relative;
  text-align: center;
  width: clamp(30px, 3.38541667vw, 65px);
  padding: 12px 5px;
  border-bottom: 1px solid #fff;
  cursor: pointer;
  transform-style: preserve-3d;
  perspective: 800px;
}
.tools-bar .block > img {
  position: relative;
  z-index: 1;
}
.tools-bar .block > img:hover {
  animation: pulse 1s;
}
.tools-bar .block:last-child {
  border-bottom: 0;
}
.tools-bar .block:hover::before {
  opacity: 1;
  transform: translate(calc(-100% - 2px), -50%);
}
.tools-bar .block:hover .tip {
  transform: translate(-50%, -50%) rotateY(0deg);
  opacity: 1;
  visibility: visible;
}
.tools-bar .ewm::before {
  content: "";
  position: absolute;
  display: block;
  border: 7px solid transparent;
  border-right: 14px solid #006ccd;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  opacity: 0;
  transition: all 0.5s;
}
.tools-bar .tip {
  position: absolute;
  left: -150%;
  top: 50%;
  transform: translate(-150%, -50%) rotateY(90deg);
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
}
.tools-bar .tip img {
  width: clamp(100px, 7.8645833vw, 151px);
}
.index-prod {
  margin: 20px 0 33px;
}
.index-prod .wrapper {
  display: flex;
  justify-content: space-between;
  /* flex-wrap: wrap; */
  align-items: flex-start;
}
.index-prod .wrapper .lt {
  width: clamp(200px, 14.1666667vw, 272px);
  border: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 13px;
}
.index-prod .wrapper .lt .aside-title {
  background-color: #107cdd;
  text-align: center;
  line-height: 1.5;
  padding: 18px 10px 0;
  position: relative;
}
.index-prod .wrapper .lt .aside-title em {
  display: none;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  padding: 0 0.25em;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  z-index: 1;
  transition: all 0.5s;
  transform-origin: center;
}
.index-prod .wrapper .lt .aside-title::after {
  position: absolute;
  content: "";
  width: 0;
  border: calc(clamp(200px, 14.1666667vw, 272px) / 2) solid transparent;
  display: block;
  border-top: 30px solid #107cdd;
  border-bottom: 0;
  bottom: 0;
  left: 0;
  transform: translate(0, 100%);
}
.index-prod .wrapper .lt .aside-title h4 {
  font-size: clamp(18px, 1.25vw, 24px);
  color: #fff;
  font-weight: 700;
}
.index-prod .wrapper .lt .aside-title h4 img {
  width: 1.083333em;
  vertical-align: middle;
  margin-top: -0.2em;
}
.index-prod .wrapper .lt .aside-title h5 {
  text-transform: uppercase;
  font-size: 14px;
  font-family: Arial;
  color: rgba(255, 255, 255, 0.32);
}
.index-prod .wrapper .lt .on em {
  transform: translate(-50%, 100%) rotate(45deg);
}
.index-prod .wrapper .lt .aside-content {
  margin: 0 2.4137931% 0;
  background-color: #f2f2f2;
  padding: 46px 5.1094891% 10px;
  overflow: auto;
}
.index-prod .wrapper .lt .aside-content aside {
  max-height: 100%;
}
.index-prod .wrapper .lt .aside-content .aside-lv1 > li {
  font-size: 16px;
  color: #5c5c5c;
  margin-bottom: 0.5em;
}
.index-prod .wrapper .lt .aside-content .aside-lv1 > li div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6px 0 12px;
  border: 1px solid #dadada;
  background-color: #e5e5e5;
  height: 2.4375em;
  margin-bottom: 8px;
}
.index-prod .wrapper .lt .aside-content .aside-lv1 > li div > a {
  color: inherit;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.5s;
}
.index-prod .wrapper .lt .aside-content .aside-lv1 > li div > a:hover {
  color: #107cdd;
}
.index-prod .wrapper .lt .aside-content .aside-lv1 > li div > a::before {
  display: inline-block;
  content: "";
  vertical-align: middle;
  width: 0.8125em;
  height: 0.8125em;
  border-radius: 50%;
  background-color: #107cdd;
  border: 1px solid #107cdd;
  box-shadow: inset 0 0 0 2px #fff;
  margin-right: 0.6875em;
  margin-top: -0.2em;
}
.index-prod .wrapper .lt .aside-content .aside-lv1 > li div i {
  cursor: pointer;
  border: 7px solid transparent;
  border-right: 0;
  border-left: 7px solid #c9c9c9;
  transition: all 0.5s;
}
.index-prod .wrapper .lt .aside-content .aside-lv1 > .active div i {
  transform: rotate(90deg);
  border-left-color: #107cdd;
}
.index-prod .wrapper .lt .aside-content .aside-lv2 {
  display: none;
}
.index-prod .wrapper .lt .aside-content .aside-lv2 > li {
  font-size: 16px;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 1em;
}
.index-prod .wrapper .lt .aside-content .aside-lv2 > li > a {
  color: inherit;
  transition: all 0.5s;
}
.index-prod .wrapper .lt .aside-content .aside-lv2 > li > a:hover {
  color: #107cdd;
  font-weight: 700;
}
.index-prod .wrapper .lt .aside-content .aside-lv2 > li > a::before {
  display: inline-block;
  content: "";
  width: 0.86666667em;
  height: 0.86666667em;
  /* background: url(../images/aside-lv2-icon.png) no-repeat; */
  background-size: contain;
  margin-right: 0.933333em;
}
.index-prod .wrapper .lt .aside-content .aside-lv2 > .active {
  color: #107cdd;
}
.index-prod .wrapper .lt .aside-content .aside-lv3 {
  display: none;
  background-color: #107cdd;
  margin-top: 11px;
  padding: 10px 0 2px 0;
}
.index-prod .wrapper .lt .aside-content .aside-lv3 > li {
  color: #fff;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 9px;
}
.index-prod .wrapper .lt .aside-content .aside-lv3 > li a {
  position: relative;
  color: inherit;
  margin-left: clamp(30px, 3.125vw, 60px);
  max-width: 100%;
}
.index-prod .wrapper .lt .aside-content .aside-lv3 > li a::before {
  position: absolute;
  display: block;
  content: "";
  border: 4.5px solid transparent;
  border-top: 4.5px solid #fff;
  border-right: 4.5px solid #fff;
  left: -0.857143em;
  top: 0.4em;
  transform: translate(-100%, 0);
  transition: all 0.5s;
  visibility: hidden;
  opacity: 0;
}
.index-prod .wrapper .lt .aside-content .aside-lv3 > li a:hover::before {
  opacity: 1;
  visibility: visible;
}
.index-prod .wrapper .lt .aside-footer {
  margin: 0 2.4137931% 3.436426%;
  background-color: #f2f2f2;
  font-size: 14px;
  color: #555;
  padding: 0 0.5em 0.714286em;
}
.index-prod .wrapper .lt .aside-footer .contact-title {
  background: url(../images/aside-contact-bg.jpg) no-repeat;
  background-size: cover;
  text-align: center;
  color: #fff;
  padding: 13.0612245% 0 14.69388%;
}
.index-prod .wrapper .lt .aside-footer .contact-title h4 {
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 700;
  line-height: 1.8;
}
.index-prod .wrapper .lt .aside-footer .contact-title h5 {
  font-size: 14px;
  text-transform: uppercase;
}
.index-prod .wrapper .lt .aside-footer .content {
  background-color: #fff;
  padding: 0.5em;
}
.index-prod .wrapper .rt {
  flex: 1;
  margin-left: 2.2857143%;
}
.index-prod .wrapper .rt .list-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f0f0f0;
  margin-bottom: 12px;
}
.index-prod .wrapper .rt .list-title h4 {
  font-size: 16px;
  background: url(../images/list-title-bg.png) no-repeat;
  background-size: 100% 100%;
  padding: 0 51px 0 28px;
  height: 100%;
  color: #fff;
  line-height: 2.4375;
}
.index-prod .wrapper .rt .list-title a {
  font-size: 14px;
  color: #999;
}
.index-prod .wrapper .rt .prod-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.index-prod .wrapper .rt .prod-wrapper > div {
  width: 23.5%;
  margin-right: 12px;
}
.index-prod .wrapper .rt .prod-wrapper .block {
  width: 100%;
  margin-bottom: 12px;
  border: 1px solid #e5e5e5;
}
.index-prod .wrapper .rt .prod-wrapper .block .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding: 36.61971831% 0;
  background-size: cover;
  transition: all 0.5s;
}
.index-prod .wrapper .rt .prod-wrapper .block .pic a {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.index-prod .wrapper .rt .prod-wrapper .block .pic img {
  display: block;
  max-width: 90%;
  max-height: 90%;
  transition: all 0.5s;
}
.index-prod .wrapper .rt .prod-wrapper .block .title {
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  font-size: clamp(14px, 1vw, 16px);
  color: #333;
  background-color: #fff;
  border-top: 1px solid #e5e5e5;
  border-bottom: 4px solid #107cdd;
  transition: all 0.5s;
  line-height: 2.7;
  padding: 0 .5em 0;
}
.index-prod .wrapper .rt .prod-wrapper .block .title a {
  color: inherit;
}
.index-prod .wrapper .rt .prod-wrapper .block:hover .pic {
  border-color: #107cdd;
}
.index-prod .wrapper .rt .prod-wrapper .block:hover .pic img {
  transform: scale(0.95);
}
.index-prod .wrapper .rt .prod-wrapper .block:hover .title {
  background-color: #107cdd;
  color: #fff;
}
.index-solution {
  margin-bottom: 18px;
}
.index-solution .mycontainer {
  max-width: 1410px;
}
.index-solution .swiper .swiper-slide {
  width: 32.5531915%;
}
.index-solution .swiper .swiper-slide .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 81.26362%;
}
.index-solution .swiper .swiper-slide .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.index-solution .swiper .swiper-slide .title {
  position: relative;
  text-align: center;
  border-bottom: 1px solid #dcdcdc;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: clamp(14px, 1.25vw, 24px);
  margin-top: 0.3333em;
  padding-bottom: 0.75em;
  transition: all 0.5s;
  color: #000;
}
.index-solution .swiper .swiper-slide .title::after {
  display: block;
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  width: 50%;
  height: 2px;
  background-color: #107cdd;
  transform: translate(-50%, 0);
  transition: all 0.5s;
}
.index-solution .swiper .swiper-slide .title a {
  color: inherit;
}
.index-solution .swiper .swiper-slide:hover .pic img {
  scale: 1.05;
}
.index-solution .swiper .swiper-slide:hover .title {
  color: #107cdd;
}
.index-solution .swiper .swiper-slide:hover .title::after {
  width: 100%;
}
.index-solution .swiper .swiper-pagination {
  position: relative;
  bottom: 0;
  margin: 2.83688% auto 0;
  left: 0;
  transform: translate(0, 0);
  padding: 1% 0;
}
.index-solution .swiper .swiper-pagination .swiper-pagination-bullet {
  width: clamp(6px, 0.92448vw, 17.75px);
  height: clamp(6px, 0.92448vw, 17.75px);
  opacity: 1;
  background-color: #107cdd;
  transition: all 0.5s;
}
.index-solution .swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #2c9c9d;
}
.index-slogan {
  text-align: center;
  color: #fff;
  background: url(../images/index-slogan-bg.jpg) no-repeat;
  background-size: cover;
  padding: 2.395833% 0 3.0208333%;
}
.index-slogan .mycontainer {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.index-slogan h3 {
  font-size: clamp(24px, 2.64635417vw, 50.81px);
}
.index-slogan h2 {
  font-weight: 700;
  font-size: clamp(24px, 2.64635417vw, 50.81px);
  margin-bottom: 2.5%;
}
.index-slogan h4 {
  background-color: #fff;
  color: #1167b6;
  font-size: clamp(16px, 1.48854167vw, 28.58px);
  line-height: 2.44926522;
  border-radius: 1.22463261em;
  padding: 0 1.18964311em;
}
footer .footer-link {
  font-size: clamp(14px, 1.25vw, 24px);
  color: #fff;
  min-height: 3.2916667em;
  background-color: #006ccd;
  display: flex;
  align-items: center;
  line-height: 1.5;
}
footer .footer-link span {
  font-weight: 700;
}
footer .footer-link a {
  color: inherit;
}
footer .footer-link a:hover {
  text-decoration: underline !important;
}
footer .footer-content {
  background: url(../images/footer-bg.jpg) no-repeat;
  background-size: cover;
}
footer .footer-nav {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
footer .footer-nav .mycontainer {
  display: flex;
  justify-content: space-around;
}
footer .footer-nav .mycontainer a {
  display: block;
  line-height: 3.33333;
  font-size: clamp(16px, 0.9375vw, 18px);
  color: #fff;
  transition: all 0.5s;
}
footer .footer-nav .mycontainer a:hover {
  opacity: 0.5;
}
footer .footer-mid {
  padding: 34px 0 3px;
}
footer .footer-mid .mycontainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1em;
  font-size: clamp(14px, 0.9375vw, 18px);
  color: #fff;
}
footer .footer-mid .mycontainer a {
  color: inherit;
  transition: all 0.5s;
}
footer .footer-mid .mycontainer a:hover {
  opacity: 0.5;
}
footer .footer-mid .mycontainer h4 {
  font-size: 1.1111em;
  font-weight: 700;
  display: inline-block;
  position: relative;
  margin-bottom: 1.15em;
}
footer .footer-mid .mycontainer h4::after {
  position: relative;
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #1167b6;
}
footer .footer-mid .mycontainer ul li {
  margin-bottom: 0.77777778em;
}
footer .footer-mid .mycontainer p {
  margin-bottom: 0.77777778em;
}
footer .footer-bt {
  text-align: center;
  color: #fff;
  font-size: clamp(12px, 0.8333333vw, 16px);
  padding: 0.625% 0;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
footer .footer-bt a {
  color: inherit;
  transition: all 0.5s;
}
footer .footer-bt a:hover {
  opacity: 0.5;
}
.index-prod .wrapper .lt .blk-xs {
  width: 100%;
}
