@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;
}
.wow {
  visibility: hidden;
}
html,
body {
  font-family: var(--Noto-Sans-SC);
}
body {
  overflow: visible;
}
body::-webkit-scrollbar-track {
  border-radius: 2px;
  background-color: #fff;
}
body::-webkit-scrollbar {
  width: 5px;
  background-color: #fff;
}
body::-webkit-scrollbar-thumb {
  border-radius: 2px;
  background-color: #666;
}
body:hover::-webkit-scrollbar-thumb {
  background-color: #ccc;
}
.out-header {
  height: 80px;
  width: 100%;
}
.mycontainer {
  max-width: 1600px;
  width: 90%;
  margin: 0 auto;
}
.blank {
  margin: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  min-height: 0 !important;
  border: 0 !important;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: all 0.5s;
  background-color: #1954B3;
  box-shadow: 0 1px 4px rgba(0, 6, 26, 0.19);
}
header .mycontainer {
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo {
  width: 13.888889%;
}
header .logo img {
  transition: all 0.5s;
}
header .lv1 {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  font-size: clamp(14px, 1.1vw, 18px);
}
header .lv1 > li {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  transition: all 0.5s;
}
header .lv1 > li > a {
  position: relative;
  color: inherit;
  text-transform: uppercase;
}
header .lv1 > li::after {
  position: absolute;
  display: block;
  content: "";
  width: 0;
  height: 2px;
  background-color: #fff;
  border-radius: 0.15em;
  left: 50%;
  bottom: 1px;
  transform: translate(-50%, 0);
  transition: all 0.5s;
}
header .lv1 > li:hover::after {
  width: 100%;
}
header .lv1 > li:hover .lv2 {
  opacity: 1;
  transform: translate(-50%, 0);
  visibility: visible;
}
header .lv1 > .active {
  font-weight: 700;
}
header .lv1 > .active::after {
  width: 100%;
}
header .lv2 {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, 5%);
  transition: all 0.5s;
  background-color: #fff;
  box-shadow: 0 3px 5px rgba(0, 6, 26, 0.19);
  visibility: hidden;
  opacity: 0;
  font-size: clamp(13px, 1vw, 16px);
  padding: 0.625em 0;
}
header .lv2::after {
  position: absolute;
  display: block;
  content: "";
  left: 50%;
  top: 0;
  transform: translate(-50%, -100%);
  border: 0.625em solid transparent;
  border-top: 0;
  border-bottom: 0.75em solid #fff;
}
header .lv2 > li {
  position: relative;
  white-space: nowrap;
  text-align: center;
  color: #1954B3;
  line-height: 1.45;
  font-weight: 300;
  padding: 0.21875em 2.25em;
}
header .lv2 > li a {
  color: inherit;
}
header .lv2 > li:hover {
  background-color: #f2f2f2;
}
header .lv2 > li:hover .lv3 {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}
header .lv3 {
  position: absolute;
  top: 0%;
  left: 100%;
  transform: translate(10px, 0);
  transition: all 0.5s;
  background-color: #fff;
  padding: 10px 0;
	min-width: 120px;
  visibility: hidden;
	box-shadow: 0 3px 5px rgba(0, 6, 26, 0.19);
  opacity: 0;
}
header .lv3 li a {
	padding: 0.21875em 2.25em;
}
header .lv3 li:hover {
	background-color: #f2f2f2;
}
header nav {
  flex: 1;
  margin-left: 3%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .tel {
  display: flex;
  align-items: center;
  font-size: clamp(16px, 1.25vw, 24px);
  color: #fff;
  font-weight: 900;
  margin-left: 7.361111%;
  line-height: 1.45;
}
header .tel img {
  width: 1em;
  height: 1em;
  object-fit: scale-down;
  margin-right: 0.6667em;
}
header .tel text {
	flex: 1;
}
header .tel h3 {
	font-weight: 700;
}
header .tel h5 {
	font-size: clamp(12px, 1vw, 14px);
}
.header-active {
  background-color: #fff;
  box-shadow: 0 1px 4px rgba(0, 6, 26, 0.19);
}
.header-active .logo img {
  filter: contrast(1) brightness(100%);
}
.header-active .lv1 > li {
  color: #333;
}
.header-active .lv1 > li::after {
  background-color: #1954B3;
}
.header-active .lv1 > li:hover {
  color: #1954B3;
}
.header-active .lv1 > .active {
  font-weight: 700;
  color: #1954B3;
}
.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 3s;
  scale: 1.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 .swiper .swiper-slide-active img {
  scale: 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 {
  width: auto;
  display: inline-block;
  bottom: 10%;
  left: 22.916667%;
}
.index-banner .swiper-pagination .swiper-pagination-bullet {
  position: relative;
  font-size: clamp(10px, 1.2vw, 20px);
  width: 1em;
  height: 1em;
  opacity: 1;
  background-color: transparent;
  background-color: #fff;
  transition: all 0.5s;
  margin: 0 1.3em;
}
.index-banner .swiper-pagination .swiper-pagination-bullet::after {
  position: absolute;
  display: block;
  content: "";
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  background-color: transparent;
  border: 1px solid #fff;
  transform: translate(-50%, -50%) scale(0);
  transition: all 0.5s;
}
.index-banner .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #1954B3;
}
.index-banner .swiper-pagination .swiper-pagination-bullet-active::after {
  transform: translate(-50%, -50%) scale(1);
  border-color: #1954B3;
}
.index-title {
  margin-bottom: 3.472222%;
  line-height: 1.45;
}
.index-title h3 {
  font-size: clamp(20px, 2.083333vw, 40px);
  color: #1954B3;
  position: relative;
  font-weight: 700;
  text-transform: uppercase;
}
.index-title h4 {
  position: relative;
  font-size: clamp(18px, 1.5625vw, 30px);
  color: #000;
}
.index-title h4::after {
  position: relative;
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.5em;
  width: 1.666667em;
  height: 2px;
  background-color: #1954B3;
}
.index-prod {
  position: relative;
  overflow: hidden;
  padding: 4.6875% 0 5.67708333%;
}
.index-prod .wrapper .block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5s;
  border: 1px solid #e5e5e5;
  border-radius: 11px;
  margin-bottom: 2.7778%;
}
.index-prod .wrapper .block .lt {
  width: 22.1527778%;
}
.index-prod .wrapper .block .lt .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 68.965517%;
}
.index-prod .wrapper .block .lt .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
.index-prod .wrapper .block .mid {
  position: relative;
  width: 27.8472222%;
  line-height: 1.45;
  padding: 10px;
}
.index-prod .wrapper .block .mid::after {
  position: absolute;
  display: block;
  content: "";
  width: 1px;
  height: 1.76470588em;
  font-size: clamp(16px, 1.7708333vw, 34px);
  background-color: #000;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  transition: all 0.5s;
}
.index-prod .wrapper .block .mid h4 {
  font-size: clamp(16px, 1.7708333vw, 34px);
  font-weight: 700;
  color: #000;
  margin-bottom: 0.5em;
}
.index-prod .wrapper .block .mid h5 {
  font-size: clamp(12px, 1.1vw, 18px);
  color: #a6a6a6;
  margin-bottom: 1.2778em;
}
.index-prod .wrapper .block .mid a {
  display: inline-block;
  font-size: clamp(12px, 1.1vw, 18px);
  color: #fff;
  background-color: #1A58A5;
  line-height: 2;
  border-radius: 1em;
  padding: 0 1.111111em;
  transition: all 0.5s;
}
.index-prod .wrapper .block .mid a:hover {
  box-shadow: 0 0 1em #1A58A5;
}
.index-prod .wrapper .block .rt {
  width: 50%;
  padding: 0 7.5%;
  display: flex;
  justify-content: space-between;
}
.index-prod .wrapper .block .rt .icon {
  font-size: clamp(14px, 1.2vw, 20px);
  text-align: center;
}
.index-prod .wrapper .block .rt .icon em {
  width: 3.5em;
  height: 3.5em;
  background-color: #f1f2f4;
  border-radius: 50%;
  transition: all 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.index-prod .wrapper .block .rt .icon em img {
  width: 2em;
  height: 2em;
  transition: all 0.5s;
  filter: contrast(0);
}
.index-prod .wrapper .block .rt .icon h5 {
  color: #383838;
  line-height: 1.45;
  margin-top: 0.5em;
}
.index-prod .wrapper .block:hover {
  background-color: #E8F3FF;
  box-shadow: 0px 5px 14px 1px #C2DEFF;
  border-color: #E8F3FF;
}
.index-prod .wrapper .block:hover .mid h4,
.index-prod .wrapper .block:hover .mid h5 {
  color: #1A58A5;
}
.index-prod .wrapper .block:hover .mid::after {
  background-color: #1A58A5;
}
.index-prod .wrapper .block:hover .rt .icon em {
  background-color: #fff;
}
.index-prod .wrapper .block:hover .rt .icon em img {
  filter: contrast(1);
}
.index-prod .wrapper .block:hover .rt .icon h5 {
  color: #1A58A5;
}
.index-prod .wrapper .block:nth-child(even) {
  flex-direction: row-reverse;
}
.index-prod .wrapper .block:nth-child(even) .mid {
  text-align: right;
}
.index-prod .wrapper .block:nth-child(even) .mid::after {
  right: 0;
  left: 0;
}
.index-prod .wrapper .block:nth-child(even) .rt {
  flex-direction: row-reverse;
}
.index-prod .swiper {
  overflow: visible;
}
.index-prod .swiper .swiper-slide {
  position: relative;
}
.index-prod .swiper .swiper-slide:hover .pic img {
  scale: 1.05;
}
.index-prod .swiper .swiper-slide:hover .title {
  color: #fff;
  background-color: #1A58A5;
}
.index-prod .swiper .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  border: 1px solid #e5e5e5;
}
.index-prod .swiper .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.index-prod .swiper .title {
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  left: 0;
  background-color: rgba(232, 243, 255, 0.64);
  text-align: center;
  font-size: clamp(14px, 1vw, 16px);
  color: #1A58A5;
  padding: 0 0.5em;
  line-height: 2.75;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.5s;
}
.index-adv {
  padding: 2.6041667% 0 4.166667%;
  background: url(../images/index-adv-bg.jpg) no-repeat;
  background-size: cover;
}
.index-adv .adv-title {
  text-align: center;
  margin-bottom: 4.5138889%;
}
.index-adv .adv-title h3 {
  font-size: clamp(20px, 2.083333vw, 40px);
  color: #383838;
  line-height: 1.45;
}
.index-adv .adv-title h3 span {
  font-size: 1.5em;
  color: #1954B3;
}
.index-adv .wrapper {
  background: url(../images/index-adv-bg1.jpg) no-repeat;
  background-size: cover;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.index-adv .wrapper .lt {
  width: 31.944444%;
}
.index-adv .wrapper .lt ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
}
.index-adv .wrapper .lt ul li {
  width: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: rgba(229, 229, 229, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  cursor: pointer;
}
.index-adv .wrapper .lt ul li .icon {
  width: 3em;
  height: 3em;
  display: flex;
  justify-content: center;
  align-items: center;
}
.index-adv .wrapper .lt ul li .icon img {
  max-width: 100%;
  max-height: 100%;
  filter: contrast(0) brightness(0%);
  transition: all 0.5s;
}
.index-adv .wrapper .lt ul li h5 {
  text-align: center;
  color: #383838;
}
.index-adv .wrapper .lt ul .active .icon img {
  filter: contrast(1) brightness(100%);
}
.index-adv .wrapper .lt ul .active h5 {
  color: transparent;
  background: linear-gradient(270deg, #03428c, #0e9ef2, #044e99);
  -webkit-background-clip: text;
  background-clip: text;
}
.index-adv .wrapper .rt {
  width: 68.055556%;
  padding: 3.472222% 16.9791667vw 2.916667% 6.319444%;
}
.index-adv .wrapper .rt .swiper .swiper-slide {
  color: #fff;
  line-height: 1.45;
}
.index-adv .wrapper .rt .swiper .swiper-slide .title {
  font-size: clamp(16px, 1.5625vw, 30px);
  margin-bottom: 1.7333em;
  margin-left: 1.8667em;
}
.index-adv .wrapper .rt .swiper .swiper-slide .brief {
  font-size: clamp(12px, 1vw, 18px);
  padding-left: 3.1111em;
}
.index-adv .wrapper .rt .swiper .swiper-slide .brief p {
  position: relative;
  margin-bottom: 2em;
}
.index-adv .wrapper .rt .swiper .swiper-slide .brief p::before {
  position: absolute;
  display: block;
  content: "";
  width: 2.111111em;
  height: 2.111111em;
  background: url(../images/check.png) no-repeat;
  background-size: contain;
  left: 0;
  top: 0;
  transform: translate(-100%, -50%);
}
.index-adv .wrapper .rt .swiper .swiper-slide .feature {
  display: flex;
  justify-content: space-around;
}
.index-adv .wrapper .rt .swiper .swiper-slide .feature .block {
  text-align: center;
  font-size: 14px;
  flex: 1;
  border-right: 1px solid #fff;
}
.index-adv .wrapper .rt .swiper .swiper-slide .feature .block:last-child {
  border-right: 0;
}
.index-adv .wrapper .rt .swiper .swiper-slide .feature .block .icon {
  width: 3em;
  height: 3em;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.index-adv .wrapper .rt .swiper .swiper-slide .feature .block .icon img {
  max-width: 100%;
  max-height: 100%;
  filter: contrast(0) brightness(200%);
}
.index-adv .wrapper .rt .swiper .swiper-slide .feature .block h5 {
  margin-top: 0.5em;
}
.index-slogan {
  background: url(../images/index-slogan-bg.jpg) no-repeat;
  background-size: cover;
  padding: 2.60416667% 0;
  position: relative;
  overflow: hidden;
}
.index-slogan .mycontainer {
  display: flex;
  justify-content: space-around;
  align-items: center;
  line-height: 1.45;
  color: #fff;
}
.index-slogan .mycontainer .lt h3 {
  font-size: clamp(18px, 1.875vw, 36px);
  font-weight: 700;
}
.index-slogan .mycontainer .lt h5 {
  font-size: clamp(12px, 1.2vw, 20px);
  margin: 1em 0;
}
.index-slogan .mycontainer .lt ul {
  display: flex;
  font-size: clamp(12px, 1.2vw, 20px);
  gap: 1em 1.8em;
}
.index-slogan .mycontainer .lt ul li {
  color: #1A58A5;
  background-color: #fff;
  line-height: 2;
  border-radius: 1em;
  padding: 0 1.25em;
}
.index-slogan .mycontainer .rt h4 {
  font-size: clamp(14px, 1.25vw, 24px);
  margin-bottom: 0.375em;
}
.index-slogan .mycontainer .rt h4 img {
  width: 1em;
  height: 1em;
  object-fit: scale-down;
  margin-right: 0.8333em;
}
.index-slogan .mycontainer .rt h3 {
  font-size: clamp(18px, 1.875vw, 36px);
  font-weight: 700;
}
.index-about {
  padding: 4.6875% 0 4.1667%;
}
.index-about .wrapper {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.index-about .wrapper .lt {
  position: relative;
  z-index: 1;
  width: 38.125%;
  padding-bottom: 2.083333%;
}
.index-about .wrapper .lt .title {
  line-height: 1.45;
}
.index-about .wrapper .lt .title h5 {
  font-size: clamp(12px, 1.25vw, 24px);
  color: #808080;
  margin-bottom: 0.4167em;
}
.index-about .wrapper .lt .title h3 {
  font-size: clamp(20px, 1.5625vw, 30px);
  color: #1954B3;
  font-weight: 700;
  margin-bottom: 1.1em;
}
.index-about .wrapper .lt .brief {
  font-size: clamp(14px, 1vw, 16px);
  color: #808080;
  line-height: 1.45;
}
.index-about .wrapper .lt .link {
  margin-top: 1.875vw;
}
.index-about .wrapper .lt .link a {
  display: inline-block;
  font-size: clamp(14px, 1.1vw, 18px);
  color: #1954B3;
  border: 1px solid #1954B3;
  border-radius: 0.333333em;
  padding: 0 1.6667em;
  line-height: 2.5;
  transition: all 0.5s;
  margin-right: 2.5em;
}
.index-about .wrapper .lt .link a:last-child {
  margin-right: 0;
}
.index-about .wrapper .lt .link a:hover {
  background-color: #1954B3;
  color: #fff;
}
.index-about .wrapper .lt .data {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 129.6903461%;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  margin-top: 3.125vw;
  padding: 0.4em 0.6em;
  font-size: clamp(20px, 2.6041667vw, 50px);
  box-shadow: 0px 1px 20px -2px rgba(0, 0, 0, 0.1);
  gap: 0.6em;
}
.index-about .wrapper .lt .data .block {
  position: relative;
  flex: 1;
}
.index-about .wrapper .lt .data .block .icon {
  position: absolute;
  right: 0;
  top: 0;
  width: 0.7em;
  height: 0.7em;
}
.index-about .wrapper .lt .data .block .icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
.index-about .wrapper .lt .data .block h3 {
  color: #003E85;
  line-height: 1.25;
  min-width: 3em;
  font-weight: 700;
}
.index-about .wrapper .lt .data .block h3 em {
  font-size: clamp(12px, 1vw, 16px);
  font-weight: 400;
  color: #808080;
}
.index-about .wrapper .lt .data .block h5 {
  font-size: clamp(12px, 1vw, 16px);
  color: #808080;
  line-height: 1.45;
}
.index-about .wrapper .lt .data i {
  display: block;
  width: 1px;
  height: 1em;
  background-color: #e5e5e5;
}
.index-about .wrapper .rt {
  width: 51.597222%;
}
.index-about .wrapper .rt .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.index-about .wrapper .rt .pic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-app {
  position: relative;
  overflow: hidden;
  background-color: #f5f5f5;
  padding: 4.6875% 0 4.1667%;
}
.index-app .swiper {
  overflow: visible;
}
.index-app .swiper .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 133.333333%;
}
.index-app .swiper .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-app .swiper .pic .mask {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  font-size: clamp(14px, 1.5625vw, 30px);
  color: #fff;
  text-align: center;
  line-height: 1.45;
  font-weight: 500;
  background: url(../images/index-app-bg.png) no-repeat;
  background-color: rgba(25, 84, 179, 0.6);
  background-size: auto;
  background-position: center;
  transition: all 0.5s;
}
.index-app .swiper .pic:hover .mask {
  opacity: 1;
}
.index-news {
  position: relative;
  overflow: hidden;
  padding: 2.6041667% 0 3.125%;
}
.index-news .index-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.index-news .index-title a {
  font-size: clamp(14px, 1vw, 16px);
  color: #383838;
  line-height: 2.625em;
  border: 1px solid #a6a6a6;
  padding: 0 1.25em;
  border-radius: 0.375em;
  transition: all 0.5s;
}
.index-news .index-title a:hover {
  background-color: #1954B3;
  color: #fff;
  border-color: #1954B3;
}
.index-news .wrapper {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.index-news .wrapper .lt {
  width: 39.583333%;
}
.index-news .wrapper .lt .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 52.982456%;
}
.index-news .wrapper .lt .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.index-news .wrapper .lt .pic:hover img {
  scale: 1.05;
}
.index-news .wrapper .lt .title {
  padding: 10px;
}
.index-news .wrapper .lt .title h4 {
  margin-bottom: 0.5em;
}
.index-news .wrapper .rt {
  width: 41.3888889%;
}
.index-news .wrapper .rt .block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5%;
}
.index-news .wrapper .rt .block:last-child {
  margin-bottom: 0;
}
.index-news .wrapper .rt .block .picture {
  width: 37.58389262%;
}
.index-news .wrapper .rt .block .picture .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 58.0357143%;
}
.index-news .wrapper .rt .block .picture .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.index-news .wrapper .rt .block .picture .pic:hover img {
  scale: 1.05;
}
.index-news .wrapper .rt .block .title {
  width: 59.395973%;
}
.index-news .wrapper .title {
  line-height: 1.45;
}
.index-news .wrapper .title h4 {
  font-size: clamp(14px, 1.2vw, 22px);
  color: #383838;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.index-news .wrapper .title h5 {
  font-size: clamp(12px, 1vw, 16px);
  color: #808080;
  margin-bottom: 0.375em;
}
.index-news .wrapper .title p {
  font-size: clamp(12px, 1vw, 16px);
  color: #808080;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  height: 4.35em;
}
footer {
  background-color: #053685;
}
footer .footer-top {
  padding: 2.34375% 0 2.8125%;
}
footer .footer-top .mycontainer {
  display: flex;
  justify-content: space-between;
  font-size: clamp(14px, 1vw, 18px);
  gap: 1em;
}
footer .footer-top h4 {
  font-size: clamp(16px, 1.2vw, 22px);
  color: #fff;
  line-height: 1.45;
  margin-bottom: 1.45em;
}
footer .footer-top .info {
  width: 18.055556%;
}
footer .footer-top .info .ewm {
  text-align: center;
  margin-top: 27px;
}
footer .footer-top .info .ewm img {
  width: 100px;
  height: auto;
  box-sizing: content-box;
  padding: 10px;
  border: 1px solid #fff;
}
footer .footer-top .info .ewm p {
  font-size: clamp(12px, 1vw, 16px);
  color: #fff;
  line-height: 1.45;
  margin: 0.5em 0 0;
}
footer .footer-top nav {
  width: 34.9305556%;
  display: flex;
  justify-content: space-between;
  gap: 1em;
}
footer .footer-top nav ul li {
  color: #fff;
  line-height: 1.45;
  margin-bottom: 0.75em;
}
footer .footer-top nav ul li a {
  color: inherit;
}
footer .footer-top nav ul li a:hover {
  text-decoration: underline !important;
}
footer .footer-top address p {
  font-size: clamp(14px, 1.1vw, 18px);
  color: #fff;
  line-height: 1.45;
  margin-bottom: 0.5em;
}
footer .footer-top address p img {
  width: 0.888889em;
  object-fit: scale-down;
  margin-right: 0.6667em;
  margin-top: -0.25em;
}
footer .footer-bt {
  text-align: center;
  font-size: clamp(12px, 1.1vw, 18px);
  color: #e5e5e5;
  line-height: 1.45;
  padding: 0.75% 0;
  border-top: 1px solid #fff;
}
footer .footer-bt a {
  color: inherit;
}
footer .footer-bt a:hover {
  color: #fff;
  text-decoration: underline !important;
}
