@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: 'Impact';
  src: url('../fonts/impact.ttf');
}
: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';
  --Impact: 'Impact', 'sans-serif';
}
h1,
h2,
h3,
h4,
h5,
p {
  transition: all 0.5s;
}
.wow {
  visibility: hidden;
}
html,
body {
  font-family: var(--Noto-Sans-SC);
  margin: 0 auto;
}
body {
  overflow: visible;
}
html {
  overflow-y: 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: 100px;
  width: 100%;
}
.container {
  max-width: 1600px;
  width: 85%;
  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%;
  z-index: 99;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  padding: 0 1.40625%;
  transition: all 0.5s;
}
header .logo {
  width: 20.471597%;
}
header .logo img {
  filter: contrast(0) brightness(200%);
  transition: all 0.5s;
}
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;
  color: #fff;
  font-size: clamp(14px, 1vw, 18px);
  transition: all 0.5s;
  line-height: 1.45;
}
header .lv1 > li > a {
  position: relative;
  color: inherit;
  padding: 4px;
  font-weight: 700;
}
header .lv1 > li:hover > a::after {
  width: 100%;
}
header .lv1 > li:hover .lv2 {
  opacity: 1;
  transform: translate(-50%, 0);
  visibility: visible;
}
header .lv1 > .active > a::after {
  width: 100%;
}
header .lv2 {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, 10px);
  transition: all 0.5s;
  background-color: #fff;
  visibility: hidden;
  opacity: 0;
  font-size: clamp(13px, 1vw, 16px);
  color: #333;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  z-index: 5;
  min-width: 11.25em;
  text-align: center;
}
header .lv2 li {
  line-height: 1.3125;
}
header .lv2 li:last-child {
  margin-bottom: 0;
}
header .lv2 li a {
  display: block;
  padding: 0.625em 1em;
  white-space: nowrap;
  transition: all 0.5s;
}
header .lv2 li a:hover {
  color: #fff;
  background-color: #0B3F8C;
  font-weight: 700;
}
header .lv3 {
  font-size: inherit;
  position: absolute;
  font-size: clamp(12px, 1vw, 14px);
  width: 18.142857em;
  padding: 0.5em 0.857143em 1.57143em;
  top: 0;
  left: 100%;
  transform: translate(-10%, 0);
  transition: all 0.5s;
  background-color: #fff;
  visibility: hidden;
  opacity: 0;
  box-shadow: 0 1px 4px rgba(0, 6, 26, 0.19);
  z-index: 5;
}
header .search-lang {
  display: flex;
  align-items: center;
  font-size: clamp(14px, 1.1vw, 20px);
  gap: 0.6em;
}
header .search-lang em {
  display: block;
  width: 2px;
  height: 1em;
  background-color: #fff;
  transition: all 0.5s;
}
header .search-lang .search-icon {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  transition: all 0.5s;
}
header .search-lang .search-icon img {
  width: 1em;
  height: 1em;
  object-fit: contain;
  transition: all 0.5s;
  filter: contrast(0) brightness(200%);
}
header .search-lang .header-search-on {
  background-color: #fff;
}
header .search-lang .header-search-on img {
  filter: contrast(1) brightness(100%);
}
header .search-lang .lang {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0.5em 0.2em;
}
header .search-lang .lang img {
  transition: all 0.5s;
  filter: contrast(0) brightness(200%);
}
header .search-lang .lang span {
  cursor: default;
  color: #fff;
  font-size: clamp(14px, 1.1vw, 18px);
  border: 2px solid #fff;
  line-height: 1.777778;
  padding: 0 0.888889em;
  transition: all 0.5s;
}
header .search-lang .lang .lang-tab {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 10px);
  background-color: #fff;
  min-width: 120px;
  opacity: 0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  font-size: clamp(14px, 1vw, 16px);
  visibility: hidden;
  z-index: 3;
  transition: all 0.5s;
}
header .search-lang .lang .lang-tab li {
  text-align: center;
  line-height: 1.3125;
}
header .search-lang .lang .lang-tab li a {
  display: block;
  padding: 0.625em 1em;
  color: #333;
  transition: all 0.5s;
}
header .search-lang .lang .lang-tab li a:hover {
  background-color: #0B3F8C;
  color: #fff;
  font-weight: 700;
}
header .search-lang .lang:hover .lang-tab {
  visibility: visible;
  transform: translate(-50%, 0);
  opacity: 1;
}
header .tel {
  display: flex;
  align-items: center;
  height: 100%;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 2.5;
  background-color: #F6B00C;
  padding: 0 1em;
  border-radius: 2em;
}
header .tel img {
  width: 1em;
  height: 1em;
  margin-right: 0.5em;
  object-fit: scale-down;
}
header .tel .text {
  flex: 1;
}
header .tel .text h4 {
  color: #fff;
  font-weight: 700;
  font-family: var(--Montserrat);
}
header .rt {
  display: flex;
  align-items: center;
  margin-left: 5.35905681%;
  font-size: clamp(10px, 1vw, 20px);
  gap: 3em;
}
header nav {
  flex: 1;
  margin-left: 5.35905681%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
header .header-search-form {
  display: none;
  position: fixed;
  left: 0;
  top: 100px;
  width: 100%;
  padding: 2% 0;
  background-color: #f5f5f5;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
header .header-search-form .container {
  height: auto;
}
header .header-search-form form {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  font-size: clamp(14px, 1.1vw, 18px);
  width: 100%;
}
header .header-search-form form input {
  flex: 1;
  height: 3em;
  outline: none;
  color: #333;
  font-weight: 300;
  background-color: #fafafa;
  padding: 0 1em;
  transition: all 0.5s;
  border: 1px solid #ddd;
}
header .header-search-form form input::placeholder {
  color: #5f5f5f;
  transition: all 0.5s;
}
header .header-search-form form input:focus {
  border-color: #0B3F8C;
}
header .header-search-form form button {
  outline: none;
  border: 0;
  background-color: #f0f0f0;
  border: 1px solid #ddd;
  border-left: 0;
  width: 3em;
  cursor: pointer;
  transition: all 0.5s;
}
header .header-search-form form button img {
  transition: all 0.5s;
}
header .header-search-form form button:hover {
  background-color: #0B3F8C;
  border-color: #0B3F8C;
}
header .header-search-form form button:hover img {
  filter: contrast(0) brightness(200%);
}
.header-active {
  background-color: #fff;
  box-shadow: 0 1px 4px rgba(0, 6, 26, 0.19);
  border-bottom-color: transparent;
}
.header-active .logo img {
  filter: contrast(1) brightness(100%);
}
.header-active .lv1 > li {
  color: #333;
}
.header-active .lv1 > li:hover:not(.search-lang) {
  color: #0B3F8C;
}
.header-active .lv1 > li:hover:not(.search-lang) > a::after {
  width: 100%;
  background-color: #0B3F8C;
}
.header-active .lv1 > .active {
  color: #0B3F8C;
}
.header-active .lv1 > .active > a::after {
  background-color: #0B3F8C;
}
.header-active .search-lang .search-icon img {
  filter: contrast(1) brightness(100%);
}
.header-active .search-lang .header-search-on {
  background-color: #0B3F8C;
}
.header-active .search-lang .header-search-on img {
  filter: contrast(0) brightness(200%);
}
.header-active .search-lang em {
  background-color: #0B3F8C;
}
.header-active .search-lang .lang img {
  filter: contrast(1) brightness(100%);
}
.pagination {
  margin-top: 2%;
  display: flex !important;
  text-align: center;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: clamp(12px, 1vw, 16px);
  border: 1px solid #dedede;
  padding: 0 0.25em;
  min-width: 2em;
  height: 2em;
  margin: 2.5px;
  color: #a6a6a6;
  border-radius: 2px;
  transition: all 0.5s;
}
.pagination a:hover {
  color: #fff;
  background-color: #0B3F8C;
  border-color: transparent;
}
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: clamp(12px, 1vw, 16px);
  border: 1px solid transparent;
  padding: 0 0.25em;
  min-width: 2em;
  height: 2em;
  margin: 2.5px;
  background-color: #0B3F8C;
  color: #fff;
  border-radius: 2px;
  transition: all 0.5s;
}
.index-banner {
  position: relative;
  background-color: #000;
}
.index-banner .swiper .swiper-slide {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.index-banner .swiper .swiper-slide img,
.index-banner .swiper .swiper-slide video {
  display: block;
  width: 100%;
  object-fit: cover;
}
.index-banner .banner-text {
  width: 100%;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.index-banner .banner-text h3 {
  font-size: clamp(16px, 3.125vw, 60px);
  color: #fff;
  font-weight: 700;
  line-height: 1.4;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
  margin-bottom: 0.6667em;
}
.index-banner .banner-text h5 {
  font-size: clamp(12px, 1.2vw, 20px);
  color: #fff;
  line-height: 1.8;
  max-width: 25.25em;
}
.index-banner .swiper-pagination {
  display: flex;
  flex-direction: column;
  bottom: 35.625%;
  left: auto;
  right: 2.44791667%;
  width: auto;
  line-height: 1;
  font-size: clamp(10px, 1.2vw, 20px);
  gap: 1.75em;
}
.index-banner .swiper-pagination .swiper-pagination-bullet {
  position: relative;
  width: 3em;
  height: 3em;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid transparent;
  opacity: 1;
  background-color: transparent;
  transition: all 0.5s;
}
.index-banner .swiper-pagination .swiper-pagination-bullet::after {
  display: block;
  content: "";
  width: 0.5em;
  height: 0.5em;
  background-color: #fff;
  border-radius: 50%;
}
.index-banner .swiper-pagination .swiper-pagination-bullet-active {
  border-color: #fff;
}
.index-banner .swiper-btn {
  position: absolute;
  bottom: 21.7708333%;
  left: 8.333333%;
  display: flex;
  font-size: clamp(12px, 1.2vw, 20px);
  gap: 1em;
}
.index-banner .swiper-btn .swiper-button-prev,
.index-banner .swiper-btn .swiper-button-next {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  margin: 0;
  width: 3.2em;
  height: 3.2em;
  border: 1px solid #fff;
  color: #fff;
  font-weight: 700;
}
.index-banner .swiper-btn .swiper-button-prev::after,
.index-banner .swiper-btn .swiper-button-next::after {
  font-size: inherit;
}
.index-banner .swiper-btn .swiper-button-prev:active,
.index-banner .swiper-btn .swiper-button-next:active {
  background-color: #F6B00C;
  border-color: #F6B00C;
}
.index-title {
  margin-bottom: 3.75%;
}
.index-title h3 {
  position: relative;
  font-size: clamp(20px, 2.34375vw, 45px);
  font-weight: 700;
  color: #333;
  line-height: 1.3111;
  z-index: 1;
}
.index-title h3::before {
  position: absolute;
  content: attr(title);
  left: 0;
  top: 0;
  z-index: -1;
  font-family: var(--Montserrat);
  transform: translate(0, -60%);
  font-size: clamp(24px, 4.6875vw, 90px);
  color: rgba(11, 63, 140, 0.08);
  line-height: 1.2222;
  font-weight: 700;
  text-transform: uppercase;
}
.index-about {
  position: relative;
  overflow: hidden;
  padding: 5.208333% 0 4.1667%;
  background: url(../images/index-about-bg.jpg) no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.index-about .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index-about .wrapper .lt {
  width: 44.375%;
  padding-left: 8.333333%;
}
.index-about .wrapper .lt .index-title {
  margin-bottom: 7.80346821%;
}
.index-about .wrapper .lt .title {
  font-size: clamp(14px, 1.5625vw, 30px);
  color: #0B3F8C;
  line-height: 1.5;
  margin-bottom: 1.1667em;
}
.index-about .wrapper .lt .brief {
  font-size: clamp(14px, 1.1vw, 18px);
  color: #555;
  line-height: 1.7778;
}
.index-about .wrapper .lt .index-more {
  margin-top: 8.06452%;
}
.index-about .wrapper .rt {
  width: 47.5%;
}
.index-about .wrapper .rt .pic {
  position: relative;
  width: 100%;
}
.index-about .wrapper .rt .pic img {
  display: block;
  width: 100%;
  border-radius: 2.083333vw 0 0 2.083333vw;
}
.about-data {
  font-size: clamp(12px, 1.2vw, 20px);
  margin-top: 4.1667%;
}
.about-data .container {
  display: flex;
  justify-content: space-between;
  gap: 1em;
}
.about-data i {
  display: block;
  width: 1px;
  background: linear-gradient(0deg, #0b3f8c00 4%, #0b3f8c 51%, #0b3f8c00 99%);
}
.about-data .block {
  width: 10em;
}
.about-data .block h3 {
  font-size: clamp(20px, 3.6458333vw, 70px);
  font-weight: 700;
  line-height: 1.3;
  color: #0B3F8C;
  font-family: Arial, 'sans-serif';
}
.about-data .block h3 em {
  font-size: clamp(12px, 1.25vw, 24px);
  color: #333;
  margin-left: 0.4167em;
  font-family: var(--Noto-Sans-SC);
}
.about-data .block h5 {
  line-height: 1.45;
  color: #666;
}
.index-more {
  position: relative;
  overflow: hidden;
  display: inline-block;
  background-color: transparent;
  border: 1px solid #0B3F8C;
  font-size: clamp(12px, 1vw, 16px);
  min-width: 12.5625em;
  line-height: 1.45;
  padding: 0.1875em 0.25em 0.1875em 1em;
  color: #0B3F8C;
  border-radius: 2em;
  z-index: 1;
  transition: all 0.5s;
}
.index-more span {
  display: inline-block;
  min-width: 7em;
  text-align: center;
  vertical-align: middle;
  margin-top: -0.2em;
}
.index-more i {
  margin-left: 1em;
  color: #fff;
  width: 3.125em;
  height: 3.125em;
  line-height: 3.125;
  text-align: center;
  border-radius: 50%;
  background-color: #F6B00C;
  transition: all 0.5s;
}
.index-more:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.index-more:hover i {
  rotate: 360deg;
}
.index-prod {
  position: relative;
  overflow: hidden;
  padding: 5.208333% 0 4.1667%;
  background: url(../images/index-prod-bg.jpg) no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.index-prod .index-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1em;
}
.index-prod .index-title h3 {
  color: #fff;
}
.index-prod .index-title h3::before {
  color: rgba(255, 255, 255, 0.06);
}
.index-prod .index-title .index-more {
  border-color: #fff;
  color: #fff;
}
.index-prod .index-title .index-more:hover {
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
.index-prod .prod-swiper {
  position: relative;
}
.index-prod .prod-swiper .swiper-button-prev,
.index-prod .prod-swiper .swiper-button-next {
  font-size: clamp(10px, 1.2vw, 20px);
  width: 4em;
  height: 4em;
  border: 1px solid #fff;
  border-radius: 50%;
  margin: 0;
}
.index-prod .prod-swiper .swiper-button-prev img,
.index-prod .prod-swiper .swiper-button-next img {
  width: 2em;
  height: 2em;
  object-fit: scale-down;
}
.index-prod .prod-swiper .swiper-button-prev::after,
.index-prod .prod-swiper .swiper-button-next::after {
  display: none;
}
.index-prod .prod-swiper .swiper-button-prev {
  left: -1.875%;
  transform: translate(-100%, -50%);
}
.index-prod .prod-swiper .swiper-button-next {
  right: -1.875%;
  transform: translate(100%, -50%);
}
.index-prod .prod-swiper .swiper-button-next img {
  scale: -1;
}
.index-prod .swiper .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 65%;
  background-color: #fff;
}
.index-prod .swiper .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.index-prod .swiper .title {
  text-align: center;
  background-color: #fff;
  font-size: clamp(14px, 1vw, 18px);
  padding: 0 0.5em;
  color: #333;
  font-weight: 700;
  line-height: 2.888889;
  transition: all 0.5s;
}
.index-prod .swiper .swiper-slide:hover .pic img {
  scale: 1.05;
}
.index-prod .swiper .swiper-slide:hover .title {
  color: #0B3F8C;
}
.index-prod .swiper .swiper-pagination {
  position: relative;
  margin-top: 2.5%;
  line-height: auto;
  bottom: 0;
}
.index-prod .swiper .swiper-pagination .swiper-pagination-bullet {
  position: relative;
  font-size: clamp(10px, 1.2vw, 20px);
  width: 0.5em;
  height: 0.5em;
  opacity: 1;
  background-color: #d8d8d8;
  transition: all 0.5s;
  margin: 0 0.15em;
}
.index-prod .swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #F6B00C;
}
.index-adv {
  padding: 7.8125% 0 0;
}
.index-adv .index-title {
  text-align: center;
}
.index-adv .index-title h3::before {
  left: 50%;
  transform: translate(-50%, -60%);
}
.index-adv .wrapper {
  display: flex;
  background-color: #f5f5f5;
}
.index-adv .wrapper .block {
  position: relative;
  overflow: hidden;
  width: 25%;
  font-size: clamp(12px, 1vw, 16px);
  z-index: 1;
}
.index-adv .wrapper .block .pic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  transition: all 0.5s;
}
.index-adv .wrapper .block .pic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-adv .wrapper .block .pic::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, #0b3f8c00 0%, #0b3f8cb3 97%);
}
.index-adv .wrapper .block .pic::after {
  position: absolute;
  display: block;
  content: "";
  width: calc(100% - 0.5em);
  height: calc(100% - 0.5em);
  border: 1px solid rgba(255, 255, 255, 0.5);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.index-adv .wrapper .block .mask {
  text-align: center;
  min-height: 39.1875em;
  padding: 1em 4.875em 10em;
  transition: all 0.5s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.index-adv .wrapper .block .mask .icon {
  width: 4.375em;
  height: 4.375em;
  margin: 0 auto 3em;
}
.index-adv .wrapper .block .mask .icon img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  transition: all 0.5s;
}
.index-adv .wrapper .block .mask h4 {
  font-size: clamp(14px, 1.5625vw, 30px);
  line-height: 1.3333;
  color: #333;
  font-weight: 700;
}
.index-adv .wrapper .block .mask em {
  display: block;
  width: 2.5em;
  height: 0.125em;
  background-color: #F6B00C;
  margin: 1.8125em auto;
}
.index-adv .wrapper .block .mask .brief {
  color: #666;
  line-height: 1.875;
  min-height: 9.375em;
}
.index-adv .wrapper .block:hover .pic {
  opacity: 1;
}
.index-adv .wrapper .block:hover .mask {
  padding: 1em 4.875em 2.25em;
}
.index-adv .wrapper .block:hover .mask .icon img {
  filter: contrast(0) brightness(200%);
}
.index-adv .wrapper .block:hover .mask h4,
.index-adv .wrapper .block:hover .mask .brief {
  color: #fff;
}
.index-partner {
  position: relative;
  overflow: hidden;
  padding: 7.1875% 0 5.208333%;
  background: url(../images/index-partner-bg.jpg) no-repeat;
  background-size: cover;
}
.index-partner .index-title {
  text-align: center;
}
.index-partner .index-title h3 {
  color: #fff;
}
.index-partner .index-title h3::before {
  left: 50%;
  transform: translate(-50%, -60%);
  color: rgba(255, 255, 255, 0.08);
}
.index-partner .swiper {
  font-size: clamp(14px, 1.2vw, 20px);
  height: 14.8em;
  overflow: visible;
}
.index-partner .swiper .swiper-slide {
  width: 15.2em;
  height: 6.4em;
  margin-right: 2.5em;
}
.index-partner .swiper .swiper-slide:nth-child(even) {
  margin-top: 2em !important;
  margin-left: 2.7em;
  margin-right: 0;
}
.index-partner .swiper .swiper-slide .pic {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
.index-partner .swiper .swiper-slide .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
.index-news {
  position: relative;
  overflow: hidden;
  padding: 7.03125% 0 18.59375%;
  background: url(../images/index-news-bg.jpg) no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.index-news .index-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1em;
}
.index-news .news-tab {
  display: flex;
  flex-wrap: wrap;
  font-size: clamp(14px, 1.2vw, 20px);
  gap: 1em 2em;
}
.index-news .news-tab li {
  color: #0B3F8C;
  border: 1px solid #0B3F8C;
  border-radius: 2em;
  text-align: center;
  min-width: 9.35em;
  line-height: 2.9em;
  cursor: pointer;
  transition: all 0.5s;
}
.index-news .news-tab .active {
  color: #fff;
  background-color: #0B3F8C;
  font-weight: 700;
}
.index-news .swiper {
  overflow: visible;
  display: none;
}
.index-news .swiper:first-child {
  display: block;
}
.index-news .swiper .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 65%;
}
.index-news .swiper .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.index-news .swiper .title {
  font-size: clamp(14px, 1.2vw, 22px);
  padding: 1.0909091em 1.18182em 1em;
  line-height: 1.45;
}
.index-news .swiper .title h5 {
  font-size: clamp(12px, 1vw, 16px);
  color: #0B3F8C;
  margin-bottom: 0.9375em;
}
.index-news .swiper .title h4 {
  font-weight: 700;
  color: #333;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 2.9em;
}
.index-news .swiper .title .more {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #d8d8d8;
  padding-top: 1em;
  margin-top: 0.5em;
}
.index-news .swiper .title .more span {
  font-size: clamp(12px, 1vw, 16px);
  color: #999;
}
.index-news .swiper .title .more i {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(10px, 1vw, 12px);
  color: #F6B00C;
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid #F6B00C;
  width: 3em;
  height: 3em;
  transition: all 0.5s;
}
.index-news .swiper .swiper-slide {
  width: 28.75%;
  box-shadow: 0px 0px 10px 0px rgba(11, 63, 140, 0.2);
  background-color: #fff;
}
.index-news .swiper .swiper-slide:hover .pic img {
  scale: 1.05;
}
.index-news .swiper .swiper-slide:hover .title h4 {
  color: #0B3F8C;
}
.index-news .swiper .swiper-slide:hover .title .more i {
  background-color: #F6B00C;
  color: #fff;
}
.index-slogan .container {
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding: 4.166667% 4.8958333% 4.166667% 4.2708333%;
  background: url(../images/index-slogan-bg.jpg) no-repeat;
  background-size: cover;
  line-height: 1.3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 1.0416667vw;
  margin-top: -13.4375%;
}
.index-slogan .lt {
  flex: 1;
  margin-right: 5.619266%;
}
.index-slogan .lt h5 {
  font-size: clamp(12px, 1.2vw, 20px);
  color: #fff;
  margin-bottom: 1.4em;
}
.index-slogan .lt h5 span {
  color: #F6B00C;
}
.index-slogan .lt h3 {
  font-size: clamp(16px, 2.083333vw, 40px);
  color: #fff;
  font-weight: 700;
  margin-bottom: 1.177778em;
}
.index-slogan .rt span {
  white-space: nowrap;
  display: flex;
  align-items: center;
  background-color: #F6B00C;
  font-size: clamp(14px, 1.2vw, 20px);
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  border-radius: 3em;
  padding: 0.85em 1.35em;
}
.index-slogan .rt span img {
  width: 1em;
  height: 1em;
  object-fit: scale-down;
  margin-right: 0.3em;
}
.index-slogan .rt span em {
  display: inline-block;
  vertical-align: middle;
  width: 1px;
  height: 1.9em;
  background-color: #fff;
  margin: 0 0.8em;
}
.index-slogan .rt span b {
  font-size: clamp(16px, 1.35416667vw, 26px);
}
footer {
  position: relative;
  background: url(../images/footer-bg.jpg) no-repeat;
  background-size: cover;
  margin-top: -4.375%;
}
footer .footer-top {
  padding: 9.583333% 0 4.94791667%;
}
footer .footer-top .container {
  display: flex;
  justify-content: space-between;
  gap: 1em;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.45;
}
footer .footer-top .container h4 {
  position: relative;
  font-size: clamp(16px, 1.2vw, 22px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.227273em;
  color: #0B3F8C;
}
footer .footer-top .container address {
  width: 31.9375%;
  font-size: clamp(14px, 1.1vw, 18px);
  color: #333;
}
footer .footer-top .container address h5 {
  font-size: clamp(14px, 1.2vw, 20px);
  color: #333;
  margin-bottom: 1em;
}
footer .footer-top .container address h3 {
  font-size: clamp(16px, 2.34375vw, 45px);
  font-weight: 700;
  color: #0B3F8C;
  font-family: var(--Poppins);
  margin-bottom: 0.67647em;
}
footer .footer-top .container address p {
  display: flex;
  margin-bottom: 0.8889em;
}
footer .footer-top .container address p em {
  white-space: nowrap;
  font-weight: 700;
  color: #0B3F8C;
}
footer .footer-top .container address p:last-child {
  margin-bottom: 0;
}
footer .footer-top .container address p img {
  width: 1.11111111em;
  height: 1.11111111em;
  margin-right: 0.8889em;
  margin-top: 0.2em;
  object-fit: scale-down;
}
footer .footer-top .container address p span {
  flex: 1;
}
footer .footer-top .container nav {
  width: 47.75%;
  display: flex;
  justify-content: space-between;
  gap: 1em;
}
footer .footer-top .container nav ul li {
  margin-bottom: 0.875em;
  color: #666;
}
footer .footer-top .container nav ul li:last-child {
  margin-bottom: 0;
}
footer .footer-top .container nav ul li a {
  color: inherit;
  transition: all 0.5s;
}
footer .footer-top .container nav ul li a:hover {
  text-decoration: underline !important;
}
footer .footer-bt {
  font-size: clamp(12px, 1vw, 16px);
  color: #666;
  line-height: 1.45;
  text-align: center;
}
footer .footer-bt .container {
  padding: 1.50520833% 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-top: 1px solid #d8d8d8;
  gap: 0 1em;
}
footer .footer-bt a {
  color: inherit;
}
footer .footer-bt a:hover {
  text-decoration: underline !important;
}
.inner-banner {
  position: relative;
  overflow: hidden;
  background-color: #fff;
}
.inner-banner img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.inner-banner .banner-text {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translate(0, -50%);
  color: #fff;
  line-height: 1.325;
  text-align: center;
}
.inner-banner .banner-text h3 {
  font-size: clamp(20px, 2.083333vw, 40px);
  font-weight: 700;
  text-shadow: 0 0 0.1px rgba(0, 0, 0, 0.3);
  margin-bottom: 0.25em;
}
.inner-banner .banner-text h5 {
  font-size: clamp(12px, 1.25vw, 24px);
  font-family: var(--Poppins);
}
.inner-banner .bread-crumb {
  position: absolute;
  width: 100%;
  bottom: 7.27273%;
  left: 0;
  font-size: clamp(12px, 1vw, 16px);
  line-height: 1.45;
  color: #fff;
}
.inner-banner .bread-crumb .container {
  text-align: center;
}
.inner-banner .bread-crumb p i {
  margin-right: 0.25em;
}
.inner-banner .bread-crumb p a {
  color: inherit;
  margin: 0 0.375em;
  transition: all 0.5s;
}
.inner-banner .bread-crumb p a:hover {
  text-decoration: underline !important;
}
.contact-us {
  position: relative;
  z-index: 1;
  padding: 5.208333% 0;
}
.contact-us .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.contact-us .wrapper .title {
  font-size: clamp(20px, 2.34375vw, 45px);
  color: #333;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 0.8em;
}
.contact-us .wrapper .lt {
  width: 39.84375%;
  padding: 2.65625% 0 0 8.333333%;
}
.contact-us .wrapper .lt h3 {
  font-size: clamp(16px, 1.7708333vw, 34px);
  color: #0B3F8C;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 0.67647em;
  font-family: var(--Poppins);
}
.contact-us .wrapper .lt h4 {
  font-size: clamp(16px, 1.5625vw, 30px);
  color: #0B3F8C;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 1.3em;
}
.contact-us .wrapper .lt .info {
  font-size: clamp(14px, 1.2vw, 20px);
  line-height: 1.5;
  color: #333;
}
.contact-us .wrapper .lt .info p {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.7778em;
}
.contact-us .wrapper .lt .info p img {
  min-width: 1em;
  height: 1em;
  margin-right: 0.75em;
  margin-top: 0.25em;
  object-fit: scale-down;
}
.contact-us .wrapper .lt .info .ewm {
  display: flex;
  align-items: center;
  font-size: clamp(14px, 1vw, 16px);
}
.contact-us .wrapper .lt .info .ewm img {
  width: 9.125em;
  height: 9.125em;
  margin-right: 1.625em;
}
.contact-us .wrapper .lt .info .ewm h5 {
  color: #0B3F8C;
}
.contact-us .wrapper .rt {
  width: 54.94791667%;
  background-color: #f2f2f2;
  padding: 2.65625% 8.333333% 2.65625% 5%;
}
.contact-us .wrapper .rt form {
  font-size: clamp(14px, 1vw, 16px);
}
.contact-us .wrapper .rt form .form-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 0.9375em;
}
.contact-us .wrapper .rt form .form-row .form-col {
  width: 48.38709677%;
}
.contact-us .wrapper .rt form label {
  display: block;
  color: #6B7178;
  line-height: 1.45;
  margin-bottom: 0.625em;
}
.contact-us .wrapper .rt form label span {
  color: #f00;
}
.contact-us .wrapper .rt form button {
  color: #fff;
  background-color: #F6B00C;
  border-radius: 0.25em;
  cursor: pointer;
  outline: none;
  transition: all 0.5s;
  height: 3em;
  padding: 0 1.5em;
  min-width: 10em;
  margin-top: 1.5625em;
}
.contact-us .wrapper .rt form button:hover {
  box-shadow: 0 3px 10px #F6B00C;
}
.contact-us .wrapper .rt form input,
.contact-us .wrapper .rt form textarea {
  display: block;
  width: 100%;
  color: #333;
  border: 1px solid rgba(11, 63, 140, 0.4);
  background-color: transparent;
  outline: none;
  border-radius: 2px;
  transition: all 0.5s;
}
.contact-us .wrapper .rt form input:focus,
.contact-us .wrapper .rt form textarea:focus {
  border-color: #0B3F8C;
}
.contact-us .wrapper .rt form input::placeholder,
.contact-us .wrapper .rt form textarea::placeholder {
  color: #666;
}
.contact-us .wrapper .rt form input {
  height: 2.5em;
  padding: 0 0.625em;
}
.contact-us .wrapper .rt form textarea {
  height: 10.9375em;
  padding: 0.5625em 0.625em;
}
.contact-us .wrapper .rt form .code {
  height: 2.5em;
  display: flex;
  align-items: center;
}
.contact-us .wrapper .rt form .code img {
  cursor: pointer;
}
.our-location {
  padding-bottom: 18.59375%;
}
.our-location .index-title {
  text-align: center;
}
.our-location .map {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: clamp(300px, 29.21875vw, 561px);
}
.our-location .map::after {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  transition: all 0.5s;
}
.our-location .map iframe {
  width: 100%;
  height: 100%;
}
.our-location .map:hover::after {
  transition-delay: 0.5s;
  opacity: 0;
  visibility: hidden;
}
.news-list {
  padding: 4.1667% 0 18.59375%;
}
.news-list .block {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2.5%;
  padding-bottom: 1.125%;
  border-bottom: 1px solid #d8d8d8;
  font-size: clamp(12px, 1.666667vw, 32px);
  gap: 1em;
}
.news-list .block .lt {
  width: 18.25%;
}
.news-list .block .lt .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 58.561643%;
}
.news-list .block .lt .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.news-list .block .mid {
  width: 64.375%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.news-list .block .mid .title h4 {
  font-size: clamp(14px, 1.2vw, 22px);
  line-height: 1.3182;
  color: #333;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 1em;
}
.news-list .block .mid .title p {
  font-size: clamp(12px, 1vw, 16px);
  color: #6B7178;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 2.9em;
}
.news-list .block .mid .title a {
  color: inherit;
}
.news-list .block .mid .more {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1.45;
  font-size: clamp(12px, 1vw, 16px);
}
.news-list .block .mid .more span {
  color: #95A1BB;
}
.news-list .block .mid .more a {
  color: #6B7178;
  transition: all 0.5s;
}
.news-list .block .rt {
  width: 3.25em;
  font-size: clamp(12px, 1.666667vw, 32px);
  line-height: 1.3125;
}
.news-list .block .rt h5 {
  font-size: clamp(12px, 1vw, 16px);
  color: #666;
}
.news-list .block .rt h3 {
  color: #333;
}
.news-list .block .rt em {
  display: inline-block;
  margin-top: 0.5em;
  color: #b7b7b7;
  transition: all 0.5s;
}
.news-list .block:hover .lt .pic img {
  scale: 1.05;
}
.news-list .block:hover .mid .title h4 {
  color: #0B3F8C;
}
.news-list .block:hover .mid .more a {
  color: #0B3F8C;
}
.news-list .block:hover .rt em {
  color: #F6B00C;
}
.news-detail {
  padding: 4.1667% 0 18.59375%;
}
.news-detail .title {
  text-align: center;
  border-bottom: 1px solid #d8d8d8;
  padding-bottom: 2.2916667%;
  margin-bottom: 3.333333%;
}
.news-detail .title h3 {
  font-size: clamp(18px, 2.083333vw, 40px);
  line-height: 1.45;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5em;
}
.news-detail .title h5 {
  font-size: clamp(12px, 1vw, 16px);
  color: #666;
  line-height: 1.45;
  margin-top: 1em;
}
.news-detail .title h5 i {
  color: #F6B00C;
  margin-right: 0.5em;
}
.news-detail article {
  font-size: clamp(14px, 1vw, 16px);
  color: #333;
  line-height: 1.5;
}
.news-detail article ol {
  list-style: decimal;
}
.news-detail article ol li {
  list-style: decimal;
  margin-left: 1.5em;
}
.news-detail article ul {
  list-style: disc;
}
.news-detail article ul li {
  list-style: disc;
  margin-left: 1.5em;
}
.news-detail article ul li::marker {
  font-size: 0.5em;
}
.news-detail article img {
  margin: 1em 0;
}
.news-detail article h4 {
  font-size: 1.125em;
  font-weight: 700;
}
.news-detail article h3 {
  font-size: 1.5em;
  font-weight: 700;
}
.news-detail article h2 {
  font-size: 2em;
  font-weight: 700;
}
.news-detail article h1 {
  font-size: 3em;
  font-weight: 700;
}
.news-detail article b,
.news-detail article strong {
  font-weight: 700;
}
.article-tab {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 4.1667%;
}
.article-tab p {
  max-width: 45%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #666;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.5;
  margin-bottom: 1em;
}
.article-tab p a {
  color: inherit;
  transition: all 0.5s;
}
.article-tab p a:hover {
  color: #0B3F8C;
}
.video-list {
  padding: 4.1667% 0 18.59375%;
}
.video-list .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.video-list .container .block {
  width: 32.25%;
  margin-bottom: 2.5%;
}
.video-list .container .block .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 65.891473%;
}
.video-list .container .block .pic video {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-list .container .block .pic .play {
  position: absolute;
  font-size: clamp(14px, 1.25vw, 24px);
  width: 3em;
  height: 3em;
  background: url(../images/play.png) no-repeat;
  background-size: contain;
  top: -100%;
  left: 50%;
  transform: translate(-50%, -100%);
  transition: all 0.5s;
}
.video-list .container .block .title {
  font-size: clamp(14px, 1.2vw, 20px);
  color: #333;
  font-weight: 700;
  text-align: center;
  line-height: 1.45;
  margin-top: 1.25em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.5s;
}
.video-list .container .block:hover .pic .play {
  top: 50%;
  transform: translate(-50%, -50%);
}
.video-list .container .block:hover .title {
  color: #fff;
}
.inner-tab {
  border-bottom: 1px solid #d8d8d8;
}
.inner-tab ul {
  display: flex;
  flex-wrap: wrap;
  font-size: clamp(14px, 1.2vw, 20px);
}
.inner-tab ul li a {
  min-width: 12.1em;
  min-height: 4em;
  line-height: 1.25;
  padding: 0.25em 1em;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.5s;
}
.inner-tab ul li a:hover {
  color: #0B3F8C;
}
.inner-tab ul .active a {
  color: #fff !important;
  background-color: #0B3F8C;
  font-weight: 700;
}
.inner-list {
  padding: 5.208333% 0 18.59375%;
}
.inner-list .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.inner-list .container aside {
  width: 21.25%;
}
.inner-list .container aside .aside-title {
  font-size: clamp(18px, 1.4583333vw, 28px);
  color: #fff;
  font-weight: 700;
  background-color: #0B3F8C;
  line-height: 2.5;
  padding: 0 0.857143em;
}
.inner-list .container aside .aside-footer {
  background-color: #f2f2f2;
  margin-top: 2.29166667vw;
}
.inner-list .container aside .aside-footer .text {
  font-size: clamp(12px, 1.1vw, 18px);
  color: #333;
  line-height: 1.45;
  padding: 1.25em;
}
.inner-list .container aside .aside-footer .text p {
  position: relative;
  margin-bottom: 0.5em;
}
.inner-list .container aside .aside-footer .text img {
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  margin-right: 0.5em;
}
.inner-list .container aside .aside-footer .text h3 {
  font-size: clamp(14px, 1.25vw, 24px);
  font-weight: 700;
  color: #0B3F8C;
  margin-bottom: 0.5em;
  font-family: var(--Poppins);
}
.inner-list .container aside i {
  display: inline-block;
  font-size: 12px !important;
  transition: all 0.5s;
  width: 2em;
  height: 2em;
  line-height: 2;
  text-align: center;
  cursor: pointer;
}
.inner-list .container aside .aside-lv1 {
  font-size: clamp(15px, 1.2vw, 18px);
  background-color: #f2f2f2;
  line-height: 1.5;
  border-radius: 0 0 10px 10px;
  padding: 0.5em 0;
}
.inner-list .container aside .aside-lv1 > li {
  color: #333;
  font-weight: 700;
}
.inner-list .container aside .aside-lv1 > li a {
  color: inherit;
  flex: 1;
  margin-right: 0.5em;
  transition: all 0.5s;
}
.inner-list .container aside .aside-lv1 > li a:hover {
  color: #0B3F8C;
}
.inner-list .container aside .aside-lv1 > li i {
  color: #a6a6a6;
}
.inner-list .container aside .aside-lv1 > li > div {
  display: flex;
  align-items: center;
  padding: 0.25em 0.25em 0.25em 0.3333em;
  min-height: 2.6666667em;
}
.inner-list .container aside .aside-lv1 > .active {
  color: #0B3F8C;
}
.inner-list .container aside .aside-lv1 > .active > div > i {
  rotate: 90deg;
  color: #F6B00C;
}
.inner-list .container aside .aside-lv2 {
  display: none;
  font-size: clamp(14px, 1.1vw, 16px);
  padding-bottom: 0.75em;
}
.inner-list .container aside .aside-lv2 > li {
  color: #666;
  padding: 0.25em 0.5em 0.25em 2em;
  font-weight: 400;
}
.inner-list .container aside .aside-lv2 > li > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.25em 0;
}
.inner-list .container aside .aside-lv2 > .active {
  color: #0B3F8C;
}
.inner-list .container aside .aside-lv2 > .active > div > i {
  rotate: 90deg;
  color: #F6B00C;
}
.inner-list .container aside .aside-lv3 {
  display: none;
  font-size: clamp(13px, 1.05vw, 15px);
  padding: 0.5em 0;
  border-top: 1px solid #d8d8d8;
  margin-top: 0.25em;
}
.inner-list .container aside .aside-lv3 > li {
  color: #666;
  font-weight: 400;
}
.inner-list .container aside .aside-lv3 > li > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.25em 0;
}
.inner-list .container aside .aside-lv3 > .active {
  color: #0B3F8C;
}
.inner-list .container aside .aside-lv3 > .active > div > i {
  rotate: 90deg;
  color: #F6B00C;
}
.inner-list .container aside .aside-lv4 {
  display: none;
  padding: 0 1em;
}
.inner-list .container aside .aside-lv4 > li {
  font-weight: 400;
  font-size: clamp(12px, 1vw, 14px);
  color: #666;
  padding: 0.25em 0;
}
.inner-list .container aside .aside-lv4 > .active {
  color: #0B3F8C;
}
.inner-list .container main {
  width: 73.0625%;
}
.inner-list .container main .pagination {
  margin-top: 1%;
}
.prod-search {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3.649635%;
}
.prod-search h3 {
  position: relative;
  font-size: clamp(16px, 1.2vw, 22px);
  color: #333;
  font-weight: 700;
  line-height: 1.45;
  padding-left: 0.818182em;
  white-space: nowrap;
}
.prod-search h3::before {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 4px;
  height: 1.0909091em;
  background-color: #F6B00C;
  border-radius: 2px;
}
.prod-search form {
  display: flex;
  flex: 1;
  margin-left: 20px;
  max-width: 425px;
  font-size: clamp(14px, 1vw, 16px);
}
.prod-search form input {
  flex: 1;
  color: #000;
  outline: none;
  background-color: #f2f2f2;
  padding: 0 1em;
  height: 3.5em;
}
.prod-search form input::placeholder {
  color: #666;
}
.prod-search form button {
  cursor: pointer;
  outline: none;
  font-size: clamp(12px, 1vw, 16px);
  color: #fff;
  background-color: #0B3F8C;
  width: 6.75em;
  transition: all 0.5s;
}
.prod-search form button:hover {
  box-shadow: 0 2px 10px #0B3F8C;
  filter: brightness(120%);
}
.prod-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.prod-list .block {
  width: 32.33533%;
  margin-bottom: 1.710864%;
}
.prod-list .block .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 66.931217%;
  border: 1px solid #d8d8d8;
}
.prod-list .block .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.prod-list .block .title {
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3333;
  font-size: clamp(14px, 1vw, 18px);
  margin-top: 0.8333em;
  font-weight: 700;
  transition: all 0.5s;
}
.prod-list .block:hover .pic img {
  scale: 1.05;
}
.prod-list .block:hover .title {
  color: #0B3F8C;
}
.prod-intro {
  padding: 5.208333% 0;
}
.prod-intro .intro {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.prod-intro .intro .lt {
  width: 45%;
}
.prod-intro .intro .lt .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 69.027778%;
  border: 1px solid #d8d8d8;
  background-color: #fff;
  transition: all 0.5s;
}
.prod-intro .intro .lt .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.prod-intro .intro .lt .picSwiper {
  margin-bottom: 20px;
}
.prod-intro .intro .lt .picSwiper .pic::after {
  position: absolute;
  content: "";
  display: block;
  font-size: clamp(14px, 1.2vw, 20px);
  width: 2.4em;
  height: 2.4em;
  background: url(../images/zoom-icon.png) no-repeat;
  background-size: contain;
  transition: all 0.5s;
  right: 0;
  bottom: 0;
  transform: translate(100%, 100%);
}
.prod-intro .intro .lt .picSwiper .pic:hover::after {
  transform: translate(0, 0);
}
.prod-intro .intro .lt .picSwiper .swiper-button-prev,
.prod-intro .intro .lt .picSwiper .swiper-button-next {
  font-size: clamp(14px, 1.875vw, 36px);
  color: #0B3F8C;
}
.prod-intro .intro .lt .picSwiper .swiper-button-prev::after,
.prod-intro .intro .lt .picSwiper .swiper-button-next::after {
  font-size: inherit;
}
.prod-intro .intro .lt .picSwiper .swiper-button-prev:active,
.prod-intro .intro .lt .picSwiper .swiper-button-next:active {
  color: #F6B00C;
}
.prod-intro .intro .lt .picSwiper .swiper-button-disabled {
  opacity: 1;
  color: #a7a7a7;
}
.prod-intro .intro .lt .thumbSwiper .pic {
  opacity: 0.5;
  cursor: pointer;
}
.prod-intro .intro .lt .thumbSwiper .swiper-slide-thumb-active .pic {
  opacity: 1;
  border-color: #0B3F8C;
}
.prod-intro .intro .rt {
  width: 44.861111%;
}
.prod-intro .intro .rt .title {
  margin-bottom: 0.8333em;
  font-size: clamp(18px, 2.34375vw, 45px);
  margin-bottom: 0.8889em;
  line-height: 1.45;
}
.prod-intro .intro .rt .title h3 {
  color: #333;
  font-weight: 700;
  line-height: 1.25;
}
.prod-intro .intro .rt .title h5 {
  font-size: clamp(12px, 1.1vw, 18px);
  color: #F6B00C;
  margin-bottom: 0.35em;
}
.prod-intro .intro .rt .brief {
  font-size: clamp(14px, 1.2vw, 20px);
  color: #333;
  line-height: 1.55;
  min-height: 4.65em;
  margin-bottom: 0.8em;
}
.prod-intro .intro .rt .brief b,
.prod-intro .intro .rt .brief strong {
  font-weight: 700;
  color: #0B3F8C;
}
.prod-intro .intro .rt .tel {
  font-size: clamp(14px, 1.1vw, 18px);
  color: #3d3d3d;
  line-height: 1.45;
  padding: 0.4em 0 0.5em;
  border-top: 1px dashed rgba(3, 54, 146, 0.23);
  border-bottom: 1px dashed rgba(3, 54, 146, 0.23);
}
.prod-intro .intro .rt .tel img {
  display: inline-block;
  width: 1.111111em;
  height: 1.111111em;
  object-fit: scale-down;
  margin-top: -0.25em;
}
.prod-intro .intro .rt .tel b {
  font-weight: 700;
  color: #0B3F8C;
  font-size: clamp(16px, 1.666667vw, 32px);
  font-family: Arial;
}
.prod-intro .intro .rt .link {
  display: flex;
  flex-wrap: wrap;
  font-size: clamp(12px, 1vw, 16px);
  gap: 1em 2.5em;
  margin-top: 3.125vw;
}
.prod-intro .intro .rt .link .index-more {
  background-color: #0B3F8C;
  color: #fff;
}
.prod-detail {
  padding-bottom: 4.1667%;
}
.prod-detail article {
  overflow: auto;
  font-size: clamp(14px, 1vw, 16px);
  color: #333;
  line-height: 1.5;
}
.prod-detail article b,
.prod-detail article strong {
  font-weight: 700;
  color: #0B3F8C;
}
.prod-detail article h1 {
  font-size: 3em;
  font-weight: 700;
  margin-bottom: 0.5em;
}
.prod-detail article h2 {
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 0.5em;
}
.prod-detail article h3 {
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 0.5em;
}
.prod-detail article h4 {
  font-size: 1.2em;
  font-weight: 700;
  color: #0B3F8C;
  margin-bottom: 0.5em;
}
.prod-detail article table {
  width: 100%;
  max-width: 100% !important;
  border: 5px solid #fff;
  border-collapse: separate;
  border-spacing: 0;
}
.prod-detail article table tr td {
  font-size: clamp(10px, 1vw, 16px);
  height: 3em;
  vertical-align: middle;
  padding: 0.25em 0.5em;
  border: 0.5px solid #fff;
  background-color: #F0F8FF;
  line-height: 1.45;
}
.prod-detail section {
  margin-bottom: 3.75%;
}
.section-title {
  position: relative;
  width: 100%;
  font-size: clamp(18px, 2.083333vw, 40px);
  color: #0B3F8C;
  font-weight: 700;
  line-height: 1.325;
  padding-bottom: 0.675em;
  border-bottom: 1px solid #d8d8d8;
  margin-bottom: 1em;
}
.section-title::after {
  position: absolute;
  display: block;
  content: "";
  width: 3em;
  height: 0.125em;
  border-radius: 2.5px;
  background-color: #F6B00C;
  bottom: 0;
  left: 0;
  transform: translate(0, 50%);
}
.online-msg {
  background-color: #f5f5f5;
  padding: 4.1667% 0 18.59375%;
}
.online-msg .index-title {
  text-align: center;
}
.online-msg .index-title h3 {
  margin-bottom: 0;
}
.online-msg .index-title p {
  font-size: clamp(12px, 1.2vw, 20px);
  margin-top: 0.8em;
  line-height: 1.25;
}
.online-msg .index-title p b {
  font-size: clamp(14px, 1.25vw, 24px);
  color: #0B3F8C;
  font-weight: 700;
}
.online-msg form .form-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 1.1805556%;
}
.online-msg form .form-row .form-col {
  width: 48.6805556%;
}
.online-msg form .code-row {
  position: relative;
}
.online-msg form .code-row .code {
  position: absolute;
  right: 1px;
  top: 1px;
  width: auto;
  height: calc(100% - 2px);
  background-color: #fff;
  border-radius: 4px;
  cursor: pointer;
}
.online-msg form .code-row .code img {
  height: 100%;
  width: auto;
  object-fit: scale-down;
}
.online-msg form input,
.online-msg form textarea {
  font-size: clamp(14px, 1.1vw, 18px);
  color: #333;
  background-color: #fff;
  outline: none;
  border: 1px solid #d8d8d8;
  border-radius: 4px;
  height: 2.777778em;
  width: 100%;
  padding: 0 1em;
  transition: all 0.5s;
}
.online-msg form input:focus,
.online-msg form textarea:focus {
  border-color: #0B3F8C;
}
.online-msg form textarea {
  height: 13.111111em;
  padding: 0.7778em 1em;
}
.online-msg form button {
  cursor: pointer;
  display: block;
  font-size: clamp(14px, 1.1vw, 18px);
  background-color: #F6B00C;
  color: #fff;
  width: 9.888889em;
  height: 2.777778em;
  border-radius: 1.5em;
  margin: 1.7778em auto 0;
  transition: all 0.5s;
}
.online-msg form button:hover {
  box-shadow: 0 3px 10px #F6B00C;
}
.about-intro {
  padding: 5.208333% 0;
}
.about-intro .intro .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.about-intro .intro .lt {
  width: 39.625%;
}
.about-intro .intro .lt .pic {
  position: relative;
}
.about-intro .intro .lt .pic > img {
  display: block;
  width: 100%;
}
.about-intro .intro .rt {
  width: 55.5%;
}
.about-intro .intro .rt .index-title {
  margin-bottom: 4.5045%;
}
.about-intro .intro .rt .brief {
  font-size: clamp(14px, 1vw, 18px);
  color: #575757;
  line-height: 1.6667;
}
.about-vision {
  position: relative;
  overflow: hidden;
  padding: 8.69791667% 0 18.59375%;
  background: url(../images/about-vision-bg.jpg) no-repeat;
  background-size: cover;
}
.about-vision .index-title {
  text-align: center;
}
.about-vision .index-title h3 {
  color: #fff;
  margin-bottom: 0.6667em;
}
.about-vision .index-title h5 {
  font-size: clamp(12px, 1.2vw, 20px);
  color: #fff;
  line-height: 1.45;
}
.about-partner {
  background-image: url(../images/about-partner-bg.jpg);
}
.about-partner .index-title h3 {
  color: #333;
}
.about-partner .brief {
  text-align: center;
  font-size: clamp(12px, 1vw, 16px);
  color: #333;
  line-height: 1.5;
  margin-top: 1em;
}
.fancybox-bg {
  background-color: #fff !important;
}
.anchor-fixed {
  position: relative;
  top: -100px;
}
