@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;
}
html,
body {
  scroll-behavior: smooth;
  font-family: var(--Noto-Sans-SC);
  background-color: #f7f8f9;
}
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: 165px;
  width: 100%;
}
.mycontainer {
  max-width: 1200px;
  width: 80%;
  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 .header-top .mycontainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 105px;
}
header .header-top .logo {
  width: 40%;
}
header .header-top .logo img {
  transition: all 0.5s;
}
header .header-top .tel {
  display: flex;
  align-items: center;
  font-size: clamp(14px, 1.25vw, 24px);
}
header .header-top .tel img {
  width: 1.875em;
  margin-right: 0.625em;
}
header .header-top .tel .text {
  line-height: 1.1;
}
header .header-top .tel .text h4 {
  color: #363636;
}
header .header-top .tel .text h5 {
  font-size: 1.25em;
  color: #ba1a02;
  font-weight: 700;
}
header .header-bt {
	background-color: #f1f2f3;
}
header .header-bt .mycontainer {
  height: 60px;
}
header .header-bt nav {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .lv1 {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  color: #000;
  font-size: clamp(16px, 1.2vw, 22px);
  font-weight: 500;
	margin-bottom: 0;
}
header .lv1 > li {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .lv1 > li::after {
  display: block;
  position: absolute;
  content: "";
  width: 0;
  height: 3px;
  bottom: 0;
  left: 50%;
  background-color: #006cb6;
  transform: translate(-50%, 0);
  transition: all 0.5s;
}
header .lv1 > li > a {
  color: inherit;
  transition: all 0.5s;
  text-transform: uppercase;
}
header .lv1 > li:hover::after {
  width: 100%;
}
header .lv1 > li:hover > a {
  color: #006cb6;
}
header .lv1 > li:hover .lv2 {
  opacity: 1;
  transform: translate(-50%, 0);
  visibility: visible;
}
header .lv1 .lang {
  font-family: 'Arial Narrow';
}
header .lv1 .lang .on {
  color: #006cb6;
}
header .lv1 > .active::after {
  width: 100%;
}
header .lv1 > .active > a {
  color: #006cb6;
}
header .lv2 {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, 50%);
  transition: all 0.5s;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px;
  visibility: hidden;
  opacity: 0;
}
header .lv2 > li {
  position: relative;
  white-space: nowrap;
  text-align: center;
  padding: 2px 15px;
  min-width: 130px;
}
header .lv2 > li a {
  font-size: 16px;
  color: #fff;
}
header .lv2 > li:hover .lv3 {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}
header .lv3 {
  position: absolute;
  top: 0%;
  left: 100%;
  transform: translate(50%, 0);
  transition: all 0.5s;
  background-color: rgba(0, 0, 0, 0.88);
  padding: 0 0 10px;
  visibility: hidden;
  opacity: 0;
}
.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 > img {
  display: block;
  width: 100%;
  object-fit: cover;
  transition: all 5s;
  scale: 1.1;
}
.index-banner .swiper .swiper-slide-active > img {
  scale: 1;
}
.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 .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%;
  left: 28.4895833%;
  width: auto;
}
.index-banner .swiper-pagination .swiper-pagination-bullet {
  font-size: clamp(14px, 2.083333vw, 40px);
  width: 0.5em;
  height: 0.5em;
  opacity: 1;
  background-color: #bbb;
  transition: all 0.5s;
  margin: 0 0.25em;
  border-radius: 0.25em;
}
.index-banner .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fff;
  width: 1.375em;
  height: 0.5em;
}
.index-title {
  text-align: center;
  margin-bottom: 4.5%;
}
.index-title h3 {
  font-size: clamp(20px, 2.083333vw, 40px);
  color: #363636;
  font-weight: 500;
  position: relative;
}
.index-title h3::after {
  display: block;
  content: "";
  margin: 0 auto;
  width: 3em;
  height: 3px;
  background-color: #0650ce;
}
.index-title h5 {
  font-size: clamp(12px, 1.1vw, 18px);
  font-weight: 300;
  color: #333;
}
.index-prod {
  padding: 2.5% 0 4.58333%;
  position: relative;
  overflow: hidden;
	background-color: #00449a;
}
.index-prod .index-title h3 {
	color: #fff;
}
.index-prod .index-title h3::after {
	background-color: #fff;
}
.index-prod .wrapper {
  display: flex;
  flex-wrap: wrap;
	justify-content: space-between;
  transform-style: preserve-3d;
  perspective: 800px;
}
.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: #0650CE;
  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 #0650CE;
  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: #0a6ac6;
}
.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: #0a6ac6;
  border: 1px solid #0a6ac6;
  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 #b5b5b5;
  transition: all 0.5s;
}
.index-prod .wrapper .lt .aside-content .aside-lv1 > .active div i {
  transform: rotate(90deg);
  border-left-color: #0a6ac6;
}
.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: #0a6ac6;
}
.index-prod .wrapper .lt .aside-content .aside-lv2 > li > a:hover::before {
  filter: grayscale(0);
}
.index-prod .wrapper .lt .aside-content .aside-lv2 > li > a::before {
  display: inline-block;
  content: "";
  width: 0.8125em;
  height: 0.8125em;
  background: url(../images/aside-lv2-icon.png) no-repeat;
  background-size: contain;
  margin-right: 0.8125em;
  transition: all 0.5s;
}
.index-prod .wrapper .lt .aside-content .aside-lv3 {
  display: none;
  margin-top: 11px;
	margin-left: 10px;
}
.index-prod .wrapper .lt .aside-content .aside-lv3 > li {
  color: #0d6cc6;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 12px;
}
.index-prod .wrapper .lt .aside-content .aside-lv3 > li a {
  position: relative;
  color: inherit;
  margin-left: 1.857143em;
  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 #0d6cc6;
  border-right: 4.5px solid #0d6cc6;
  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: #3a3939;
  padding: 0 0.5em 0.714286em;
}
.index-prod .wrapper .lt .aside-footer p {
  margin-bottom: 1em;
}
.index-prod .wrapper .lt .aside-footer a {
  display: block;
  width: 100%;
  margin-bottom: 1em;
  font-size: clamp(16px, 1.1vw, 18px);
  color: #fff;
  background-color: #0650CE;
  text-align: center;
  font-weight: 700;
  line-height: 2.166667;
}
.index-prod .wrapper .lt .aside-footer .content {
  padding: 0.5em;
}
.index-prod .wrapper .rt {
  width: calc((100% - 2.58333%) - clamp(200px, 14.1666667vw, 272px));
}
.index-prod .wrapper .rt .list-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f0f0f0;
  margin-bottom: 12px;
  padding-right: 18px;
}
.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 .swiper .swiper-slide {
  border: 1px solid #e5e5e5;
}
.index-prod .wrapper .rt .swiper .swiper-slide:hover .pic {
  border-color: #0650CE;
}
.index-prod .wrapper .rt .swiper .swiper-slide:hover .pic img {
  transform: scale(1.1);
  max-width: 100%;
  max-height: 100%;
}
.index-prod .wrapper .rt .swiper .swiper-slide:hover .title {
  background-color: #0650CE;
  color: #fff;
}
.index-prod .wrapper .rt .swiper .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 86.394558%;
}
.index-prod .wrapper .rt .swiper .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.index-prod .wrapper .rt .swiper .title {
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  font-size: clamp(14px, 1.1vw, 16px);
  color: #494949;
  background-color: #fff;
  border-top: 1px solid #e5e5e5;
  border-bottom: 4px solid #0650CE;
  transition: all 0.5s;
  line-height: 2.7;
  padding: 0 2em 0 1em;
}
.index-prod .wrapper .rt .swiper .title a {
  color: inherit;
}
.index-about {
  padding: 2.7083333% 0;
	background-color: #fff;
	margin-bottom: 3%;
}
.index-about .mycontainer {
  position: relative;
  display: flex;
  justify-content: space-between;
	align-items: center;
  flex-wrap: wrap;
}
.index-about .mycontainer .text {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 15.1041667vw;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5976);
  line-height: 1;
  transform: translate(1%, 6%);
}
.index-about .mycontainer .lt {
  width: 48.5833333%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.index-about .mycontainer .lt .title {
	line-height: 1.4;
	margin-bottom: 1.715266%;
}
.index-about .mycontainer .lt .title h4 {
  font-size: clamp(20px, 1.875vw, 36px);
  font-weight: 800;
  color: #369aed;
}
.index-about .mycontainer .lt .title h3 {
  font-size: clamp(20px, 2.0833333vw, 40px);
  font-weight: 700;
  color: #363636;
}
.index-about .mycontainer .lt .title::after {
  display: block;
  width: 9.235294em;
  height: 2px;
  content: "";
  background-color: #fff;
  margin-top: 0.382353em;
}
.index-about .mycontainer .lt .brief {
  font-size: clamp(14px, 1.2vw, 22px);
  color: #666;
  line-height: 2.13636364;
}
.index-about .mycontainer .lt a {
  display: inline-block;
  font-size: clamp(14px, 1.25vw, 24px);
  color: #0650ce;
  font-weight: 500;
  transition: all 0.5s;
  margin-top: 3.375vw;
}
.index-about .mycontainer .lt a:hover {
  transform: translateY(-3px);
}
.index-about .mycontainer .rt {
  width: 48.5%;
}
.index-about .mycontainer .rt .pic {
  width: 100%;
  height: 100%;
}
.index-about .mycontainer .rt .pic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-about .data {
	margin-top: 3%;
}
.index-about .data .block {
	display: flex;
	align-items: center;
}
.index-about .data .block .title {
	line-height: 1.4;
}
.index-about .data .block .icon {
	font-size: clamp(24px, 3.6458333vw, 70px);
	width: 1.014286em;
	height: 1.014286em;
	margin-right: 0.257143em;
}
.index-about .data .block .icon img {
	display: block;
	max-width: 100%;
	max-height: 100%;
}
.index-about .data .block h2 {
	font-size: clamp(24px, 3.6458333vw, 70px);
	color: #0650ce;
	font-weight: 700;
}
.index-about .data .block h2 em {
	font-size: clamp(12px, 2.083333vw, 40px);
	font-weight: 700;
}
.index-about .data .block h5 {
	font-size: clamp(12px, 1.3541667vw, 26px);
	color: #666;
}
.index-choose {
  padding: 2% 0 2.7083333%;
	background-color: #00449a;
}
.index-choose .mycontainer {
  max-width: 1271px;
}
.index-choose .index-title h3 {
  font-size: clamp(20px, 2.291667vw, 44px);
  font-weight: 700;
  color: #fff;
}
.index-choose .index-title h3::after {
  display: none;
}
.index-choose .index-title h5 {
  font-size: 30px;
  color: #fff;
  font-weight: 400;
}
.index-choose .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.index-choose .wrapper .block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 24.0755311%;
  background-color: #fff;
  font-size: clamp(16px, 1.3541667vw, 26px);
  color: #363636;
  padding: 2.36035% 1.573564% 2.911094% 3.54052%;
  border-radius: 0.653846em;
  box-shadow: -2px 0px 5px 0px rgba(118, 121, 125, 0.27);
  transition: all 0.5s;
  cursor: default;
}
.index-choose .wrapper .block .icon {
  width: 2.30769em;
  height: 2.30769em;
  line-height: 2.1;
  border-radius: 50%;
  background-color: #0650ce;
  text-align: center;
}
.index-choose .wrapper .block .icon img {
  max-width: 72%;
  max-height: 72%;
}
.index-choose .wrapper .block .text {
  flex: 1;
  margin-left: 0.80769em;
}
.index-choose .wrapper .block .text h4 {
  margin-bottom: 0.2em;
}
.index-choose .wrapper .block .text p {
  font-size: clamp(14px, 1.05vw, 16px);
  color: #363636;
  font-weight: 300;
  line-height: 1.625;
  min-height: 4.875em;
}
.index-choose .wrapper .block:hover {
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}
.index-choose .wrapper .block:hover .icon {
  animation: swing 1s;
}
.index-application {
  margin: 3.125% 0;
}
.index-application .mycontainer {
  max-width: 1600px;
}
.index-application .index-title {
  margin-bottom: 2%;
}
.index-application .index-title h3 {
  margin-bottom: 0.25em;
}
.index-application .index-title h3::after {
  background-color: #2a5fd7;
  width: 1.15em;
  height: 0.125em;
  border-radius: 2px;
}
.index-application .swiper .swiper-slide {
  width: 24.25%;
}
.index-application .swiper .swiper-pagination {
  position: relative;
  bottom: 0;
  margin: 1.5625% 0 0;
}
.index-application .swiper .swiper-pagination .swiper-pagination-bullet {
  width: clamp(6px, 1vw, 17px);
  height: clamp(6px, 1vw, 17px);
  margin: 0 5px;
  background-color: #003f97;
  opacity: 1;
  transition: all 0.5s;
}
.index-application .swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #2a5fd7;
}
.index-application .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 137.8866%;
}
.index-application .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.index-application .pic .mask {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: clamp(14px, 0.9895833vw, 19px);
}
.index-application .pic .mask h4 {
  color: #fff;
  margin-bottom: 0.5em;
  text-align: center;
}
.index-application .pic .mask em {
  border: 1px solid transparent;
  border-bottom: 6.875vw solid #fff;
}
.index-application .pic .mask i {
  font-style: normal;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 50%;
  width: 1.6em;
  height: 1.6em;
  text-align: center;
  line-height: 1.4;
  font-weight: 700;
  margin-top: 0.5em;
}
.index-application .pic:hover img {
  filter: brightness(70%);
}
.index-news {
  background: url(../images/news-bg.jpg) no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 1.3020833% 0 3.0208333%;
}
.index-news .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.index-news .wrapper .block {
  width: 49.083333%;
  background-color: #fff;
}
.index-news .wrapper .block .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 58.9134126%;
}
.index-news .wrapper .block .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.index-news .wrapper .block .title {
  padding: 1.867572% 4.2445% 2.54669% 3.395586%;
}
.index-news .wrapper .block .title h4 {
  font-size: clamp(16px, 1.1vw, 18px);
  color: #000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.55556em;
}
.index-news .wrapper .block .title h4 a {
  color: inherit;
}
.index-news .wrapper .block .title p {
  font-size: clamp(12px, 1vw, 14px);
  color: #333;
  font-weight: 300;
  line-height: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  height: 6em;
}
.index-news .wrapper .block .title p a {
  color: inherit;
}
.index-news .wrapper .block .title .more {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #dcdcdc;
  padding-top: 2.389706%;
  margin-top: 1.8382353%;
}
.index-news .wrapper .block .title .more span {
  font-size: clamp(12px, 1vw, 14px);
  color: #333;
  font-weight: 300;
}
.index-news .wrapper .block .title .more a {
  color: #fff;
  font-size: clamp(12px, 1vw, 14px);
  line-height: 2;
  border-radius: 1em;
  padding: 0 1em;
  background-color: #005ba8;
  transition: all 0.5s;
  border: 1px solid transparent;
}
.index-news .wrapper .block .title .more a:hover {
  color: #005ba8;
  border-color: #005ba8;
  background-color: #fff;
}
.index-news .wrapper .block:hover .pic img {
  scale: 1.05;
}
.index-news .wrapper .block:hover .title h4 {
  color: #005ba8;
}
.index-slogan {
  background: url(../images/index-slogan1.jpg) no-repeat;
  background-size: cover;
  font-size: clamp(20px, 3.125vw, 60px);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2.9166667% 0;
}
.index-slogan h2 {
  font-weight: 700;
}
.index-coop {
  margin: 2.96875% 0 3.69791667%;
}
.index-coop .index-title h3 {
  color: #006cb6;
  font-weight: 700;
}
.index-coop .index-title h3::after {
  display: none;
}
.index-coop .wrapper {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  background-color: #e3edf8;
  padding: 2.75% 0 3.3333%;
  border-radius: 1.9791667vw;
}
.index-coop .wrapper .title {
  width: 100%;
  text-align: center;
  margin-bottom: 2.6455%;
}
.index-coop .wrapper .title span {
  display: inline-block;
  font-size: clamp(18px, 1.5625vw, 30px);
  color: #fff;
  background-color: #044c84;
  line-height: 1.733333;
  border-radius: 0.8666667em;
  padding: 0 1.26666667em;
}
.index-coop .wrapper .lt {
  width: 33.3333%;
  line-height: 1.8;
}
.index-coop .wrapper .lt h3 {
  color: #044c84;
  font-weight: 700;
  font-size: clamp(16px, 1.3541667vw, 26px);
}
.index-coop .wrapper .lt h5 {
  font-size: clamp(14px, 1.2vw, 20px);
  color: #000;
}
.index-coop .wrapper .rt {
  font-size: clamp(20px, 6.25vw, 120px);
  color: rgba(0, 143, 255, 0.1734);
  font-weight: 900;
  line-height: 1;
}
footer {
  background-color: #565656;
}
footer .footer-top {
  padding: 1.5625% 0 2.5%;
}
footer .footer-top .mycontainer {
  display: flex;
  justify-content: space-between;
}
footer .footer-top .info {
  width: 28.666667%;
}
footer .footer-top nav {
  width: 55.5%;
  display: flex;
  gap: 5%;
}
footer .footer-top .ewm {
	width: 10%;
}
footer .footer-top h4 {
  font-size: clamp(16px, 1.1vw, 18px);
  color: #fff;
  margin-bottom: 0.8889em;
}
footer .footer-top ul {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 16.1875em;
}
footer .footer-top ul li {
  font-size: clamp(14px, 1vw, 16px);
  color: #fff;
  margin-bottom: 0.3125em;
  margin-right: 3.25em;
  line-height: 2;
}
footer .footer-top ul li a {
  color: inherit;
}
footer .footer-top ul li a:hover {
  text-decoration: underline !important;
}
footer .footer-top p {
  font-size: clamp(14px, 1vw, 16px);
  color: #fff;
  margin-bottom: 0.3125em;
  line-height: 2;
}
footer .footer-bt {
  text-align: center;
  font-size: clamp(12px, 1.1vw, 18px);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.302083% 0 0.83333%;
}
footer .footer-bt a {
  color: inherit;
}
footer .footer-bt a:hover {
  text-decoration: underline !important;
}
