@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-Condensed: 'Roboto Condensed', 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';
  --exCondensed: 'Fira Sans Extra Condensed', '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: 100px;
  width: 100%;
}
.mycontainer {
  max-width: 1200px;
  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%;
  box-shadow: 0 1px 4px rgba(0, 6, 26, 0.19);
  z-index: 99;
  transition: all 0.5s;
  background-color: rgba(7, 108, 178, 0.7);
}
header .mycontainer {
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo {
  width: 29.166667%;
  text-align: center;
}
header .lv1 {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  font-size: clamp(16px, 1.25vw, 24px);
  margin-bottom: 0;
}
header .lv1 > li {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .lv1 > li a {
  display: block;
  color: #fff;
  transition: all 0.5s;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
}
header .lv1 > li:last-child::before {
  display: none;
}
header .lv1 > li:hover > a {
  text-decoration: underline !important;
}
header .lv1 > li:hover .lv2 {
  opacity: 1;
  transform: translate(-50%, 0);
  visibility: visible;
}
header .lv1 .lang {
  color: #fff;
  margin-right: 5%;
}
header .lv1 .lang img {
  margin-right: 9px;
}
header .lv1 .lang a {
  padding: 0;
  background-color: transparent !important;
}
header .lv1 .lang a:hover {
  text-decoration: underline !important;
}
header .lv1 .lang .on {
  color: #fff;
  font-weight: 700;
}
header .lv1 > .active a {
  font-weight: 700;
}
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;
}
header nav {
  flex: 1;
  margin-left: 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .search form {
  position: relative;
}
header .search form input {
  width: 214px;
  height: 30px;
  border-radius: 15px;
  outline: none;
  font-size: 13px;
  color: #333;
  font-weight: 300;
  background-color: #fafafa;
  padding: 0 35px 0 14px;
  transition: all 0.5s;
}
header .search form input::placeholder {
  color: #5f5f5f;
  transition: all 0.5s;
}
header .search form button {
  position: absolute;
  outline: none;
  border: 0;
  background-color: transparent;
  right: 22px;
  top: 50%;
  transform: translate(0, -50%);
  cursor: pointer;
  transition: all 0.5s;
}
.box {
  width: 100%;
  text-align: center;
  margin: 3.4868421% 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.pagination {
  display: flex !important;
  text-align: center;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 2%;
}
.pagination a {
  display: block;
  font-size: 14px;
  padding: 0 13px;
  line-height: 32px;
  background-color: #fff;
  margin: 5px;
  color: #1f61be;
  transition: all 0.5s;
  font-family: var(--Din);
  border-radius: 4px;
}
.pagination span {
  display: block;
  font-size: 14px;
  padding: 0 13px;
  line-height: 32px;
  background-color: #1f61be;
  margin: 5px;
  color: #fff;
  transition: all 0.5s;
  font-family: var(--Din);
  border-radius: 4px;
}
.pagination a:hover {
  color: #fff;
  background-color: #1f61be;
  border-color: transparent;
}
.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;
  transform: scale(1.1);
  transition: all 4s;
}
.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 {
  transform: 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 {
  position: relative;
  bottom: auto;
  left: auto;
  width: auto;
}
.index-banner .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  line-height: 1;
  background-color: #0e62c1;
  transition: all 0.5s;
  margin: 0 3px;
}
.index-banner .swiper-page {
  position: absolute;
  bottom: 2%;
  width: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.index-banner .swiper-button-prev,
.index-banner .swiper-button-next {
  font-size: clamp(16px, 1.770833vw, 34px);
  color: #fff;
  border-radius: 50%;
  border: 0.117647em solid #fff;
  width: 2.117647em;
  height: 2.117647em;
}
.index-banner .swiper-button-prev::after,
.index-banner .swiper-button-next::after {
  color: inherit;
  font-size: inherit;
  font-weight: 700;
}
.index-banner .swiper-button-prev {
  left: 9.21875%;
}
.index-banner .swiper-button-next {
  right: 9.21875%;
}
.index-title {
  text-align: center;
  margin-bottom: 3%;
}
.index-title h3 {
  font-size: clamp(20px, 2.083333vw, 40px);
  color: #0d0b19;
  font-weight: 700;
  position: relative;
  line-height: 1.8;
}
.index-title h3 span {
  color: #056af8;
}
.index-title h5 {
  font-size: clamp(12px, 1.2vw, 20px);
  color: #707070;
  line-height: 1.4;
  text-transform: uppercase;
}
.index-about {
  margin: 5.0520833% 0 3.38541667%;
}
.index-about .mycontainer {
  max-width: 1834px;
  width: 96%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.index-about .lt {
  width: 59.76008724%;
}
.index-about .lt .title {
  position: relative;
  margin-left: 29.0146%;
  margin-bottom: 5.291971%;
}
.index-about .lt .title h3 {
  font-size: clamp(20px, 1.875vw, 36px);
  color: #000;
}
.index-about .lt .title h3 span {
  color: #056af8;
}
.index-about .lt .title h2 {
  position: absolute;
  font-size: clamp(30px, 5.208333vw, 100px);
  color: rgba(5, 106, 248, 0.1);
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  font-weight: 700;
}
.index-about .lt .pic {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 62.9562044%;
  z-index: 1;
}
.index-about .lt .pic img {
  position: absolute;
  display: block;
  width: 107.481752%;
  height: 100%;
  object-fit: cover;
  max-width: none;
  z-index: -1;
}
.index-about .rt {
  width: 40.23991276%;
  position: relative;
  z-index: 2;
  background-color: #fff;
  background-image: url(../images/index-about-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  padding: 2.2901% 2.72628% 4.6892% 3.27154%;
  box-shadow: 0px 3px 4.05px 0.95px rgba(0, 0, 0, 0.14);
}
.index-about .rt::before {
  display: block;
  position: absolute;
  content: "";
  width: 100%;
  height: 13px;
  background-color: #056af8;
  top: 0;
  left: 0;
  box-shadow: 0px 3px 4.05px 0.95px rgba(0, 0, 0, 0.14);
}
.index-about .rt .title {
  position: relative;
  margin-bottom: 6.6878981%;
}
.index-about .rt .title h3 {
  font-size: clamp(16px, 1.5625vw, 30px);
  color: #000;
  font-weight: 700;
}
.index-about .rt .title h4 {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  font-size: clamp(18px, 2.08333vw, 40px);
  color: rgba(51, 51, 51, 0.1);
  font-weight: 700;
}
.index-about .rt .brief {
  font-size: clamp(14px, 1.1vw, 18px);
  color: #333;
  font-weight: 300;
  line-height: 2.38889;
}
.index-about .rt .data {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 11.942675%;
}
.index-about .rt .data em {
  display: block;
  width: 1px;
  font-size: clamp(40px, 4.16667vw, 80px);
  height: 1em;
  background: -webkit-linear-gradient(top, #056af8 40%, #bdbdbd 40%);
}
.index-about .rt .data .block h2 {
  font-size: clamp(12px, 1vw, 16px);
  color: #056af8;
  line-height: 1.4;
}
.index-about .rt .data .block h2 span {
  font-size: clamp(20px, 2.5vw, 48px);
  font-weight: 700;
}
.index-about .rt .data .block h5 {
  font-size: clamp(12px, 1vw, 14px);
  color: #959595;
  line-height: 1.6;
}
.index-about .rt .more {
  position: absolute;
  bottom: 0;
  right: 15%;
  transform: translate(0, 170%);
}
.index-about .rt .more a {
  display: block;
  font-size: clamp(14px, 1.614583vw, 31px);
  width: 2em;
  height: 2em;
  line-height: 1.95;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  background-color: #056af8;
  transition: all 0.5s;
}
.index-about .rt .more a:hover {
  transform: rotate(360deg);
}
.index-prod {
  margin-bottom: 4.63541667%;
}
.index-prod .index-title {
  background-color: #0165aa;
  padding: 2% 0;
}
.index-prod .index-title h3 {
  color: #fff;
}
.index-prod .index-title h5 {
  color: #fff;
}
.index-prod .wrapper {
  display: flex;
  justify-content: space-between;
}
.index-prod .wrapper .lt {
  width: 218px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.index-prod .wrapper .lt .aside-title {
  background-color: #000;
  text-align: center;
  line-height: 1.5;
  padding: 28px 10px 25px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.index-prod .wrapper .lt .aside-title h4 {
  position: relative;
  z-index: 1;
  font-size: clamp(18px, 1.3541667vw, 26px);
  color: #f0f0f0;
}
.index-prod .wrapper .lt .aside-title h5 {
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  font-size: clamp(12px, 1vw, 16px);
  color: #f0f0f0;
}
.index-prod .wrapper .lt .aside-content {
  overflow: auto;
}
.index-prod .wrapper .lt .aside-content aside {
  max-height: 100%;
}
.index-prod .wrapper .lt .aside-content .aside-lv1 > li {
  font-size: clamp(14px, 1.25vw, 24px);
  background-color: #f0f0f0;
  color: #000;
  transition: all 0.5s;
}
.index-prod .wrapper .lt .aside-content .aside-lv1 > li > a {
  display: block;
  color: inherit;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 0.5em;
  line-height: 2.75em;
  text-align: center;
}
.index-prod .wrapper .lt .aside-content .aside-lv1 > li:hover {
  background-color: #056af8;
  color: #fff;
}
.index-prod .wrapper .lt .aside-content .aside-lv1 > .active {
  background-color: #0e62c1;
  color: #fff;
}
.index-prod .wrapper .lt .aside-content .aside-lv2 {
  display: none;
}
.index-prod .wrapper .lt .aside-content .aside-lv2 > li {
  font-size: 15px;
  color: #666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 1em;
}
.index-prod .wrapper .lt .aside-content .aside-lv2 > li > a {
  color: inherit;
}
.index-prod .wrapper .lt .aside-content .aside-lv2 > li > a::before {
  display: inline-block;
  content: "";
  width: 0.86666667em;
  height: 0.86666667em;
  background: url(../images/aside-lv2-icon.png) no-repeat;
  background-size: contain;
  margin-right: 0.933333em;
}
.index-prod .wrapper .lt .aside-content .aside-lv2 > .active {
  color: #0e62c1;
}
.index-prod .wrapper .lt .aside-content .aside-lv3 {
  display: none;
  background-color: #0066cc;
  margin-top: 11px;
  padding: 10px 0 2px 0;
}
.index-prod .wrapper .lt .aside-content .aside-lv3 > li {
  color: #fff;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 9px;
}
.index-prod .wrapper .lt .aside-content .aside-lv3 > li a {
  position: relative;
  color: inherit;
  margin-left: clamp(30px, 3.125vw, 60px);
  max-width: 100%;
}
.index-prod .wrapper .lt .aside-content .aside-lv3 > li a::before {
  position: absolute;
  display: block;
  content: "";
  border: 4.5px solid transparent;
  border-top: 4.5px solid #fff;
  border-right: 4.5px solid #fff;
  left: -0.857143em;
  top: 0.4em;
  transform: translate(-100%, 0);
  transition: all 0.5s;
  visibility: hidden;
  opacity: 0;
}
.index-prod .wrapper .lt .aside-content .aside-lv3 > li a:hover::before {
  opacity: 1;
  visibility: visible;
}
.index-prod .wrapper .lt .aside-footer {
  background-color: #0e62c1;
  font-size: 14px;
  color: #fff;
  padding: 1.2143em 8px 1em 1.2857em;
  margin-top: 12px;
}
.index-prod .wrapper .lt .aside-footer h3 {
  font-size: clamp(20px, 1.875vw, 36px);
  text-align: center;
  line-height: 1.5;
  font-family: var(--exCondensed);
  font-weight: 800;
  letter-spacing: -1px;
  white-space: nowrap;
  font-stretch: condensed;
}
.index-prod .wrapper .lt .aside-footer h4 {
  font-size: clamp(14px, 1.2vw, 18px);
  text-align: center;
  line-height: 1.5;
}
.index-prod .wrapper .lt .aside-footer p {
  margin-bottom: 1.14286em;
  line-height: 1.8;
}
.index-prod .wrapper .lt .aside-footer p:last-child {
  margin-bottom: 0;
}
.index-prod .wrapper .rt {
  flex: 1;
  margin-left: 2.4166667%;
  max-width: 76.9166667%;
}
.index-prod .wrapper .rt .swiper .swiper-slide .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  background-color: #fff;
  transition: all 0.5s;
	border: 1px solid rgba(2, 121, 187, 0.6);
}
.index-prod .wrapper .rt .swiper .swiper-slide .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  transition: all 0.5s;
  object-fit: cover;
}
.index-prod .wrapper .rt .swiper .swiper-slide .title {
  position: absolute;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  bottom: 0;
  left: 0;
  width: 100%;
  font-size: clamp(14px, 1.2vw, 20px);
  color: #fff;
  background-color: rgba(2, 121, 187, 0.6);
  transition: all 0.5s;
  line-height: 2.4;
  padding: 0 0.5em;
}
.index-prod .wrapper .rt .swiper .swiper-slide .title a {
  color: inherit;
}
.index-prod .wrapper .rt .swiper .swiper-slide:hover .pic img {
  transform: scale(1.05);
}
.index-prod .wrapper .rt .swiper .swiper-slide:hover .title {
  background-color: #0279bb;
  color: #fff;
}
.index-adv {
  background: url(../images/index-adv-bg.jpg) no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 4.0625% 0 3.020833%;
}
.index-adv .mycontainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1330px;
}
.index-adv .mycontainer .lt {
  width: 42.105263%;
  color: #fff;
}
.index-adv .mycontainer .lt .title {
  font-size: clamp(24px, 3.125vw, 60px);
  font-weight: 900;
  border-bottom: 1px solid #fff;
  line-height: 1.6;
  margin-bottom: 0.8333em;
}
.index-adv .mycontainer .lt .title span {
  font-size: clamp(20px, 2.083333vw, 40px);
}
.index-adv .mycontainer .lt .brief {
  font-size: clamp(14px, 1.3541667vw, 26px);
  line-height: 1.769;
}
.index-adv .mycontainer .lt .slogan {
  font-size: clamp(22px, 2.6041667vw, 50px);
  margin-top: 1.88em;
}
.index-adv .mycontainer .lt .slogan h3 {
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.6667;
}
.index-adv .mycontainer .rt {
  width: 49.924812%;
}
.index-case {
  margin: 3.4375% 0;
}
.index-case .mycontainer {
  max-width: 1640px;
  width: 90%;
}
.index-case .swiper .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 75%;
}
.index-case .swiper .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.index-case .swiper .pic:hover img {
  scale: 1.05;
}
.index-case .swiper .swiper-pagination {
  position: relative;
  bottom: 0;
  margin-top: 2%;
}
.index-case .swiper .swiper-pagination .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  background-color: #0d0b19;
  opacity: 1;
  transition: all 0.5s;
}
.index-case .swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #056af8;
}
.index-news {
  padding: 2% 0 3.4895833%;
}
.index-news .index-title {
  margin-bottom: 3%;
}
.index-news .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.index-news .wrapper .lt {
  width: 40.5%;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.index-news .wrapper .lt .block {
  display: flex;
  align-items: center;
  transition: all 0.5s;
  position: relative;
  padding: 2% 0;
  border-bottom: 1px solid #e7e7e7;
}
.index-news .wrapper .lt .block:first-child {
  border-top: 1px solid #e7e7e7;
}
.index-news .wrapper .lt .block::after {
  display: block;
  content: "";
  position: absolute;
  z-index: -1;
  width: 102.88%;
  height: 100%;
  background-color: #0066cc;
  border-bottom: 3px solid #84ce13;
  transition: all 0.5s;
  opacity: 0;
}
.index-news .wrapper .lt .block .num {
  font-size: clamp(20px, 2.083333vw, 40px);
  font-family: Arial;
  color: #979797;
  font-weight: 700;
  border-right: 1px solid #bdbdbd;
  transition: all 0.5s;
  line-height: 1.75;
  padding-right: 0.35em;
  margin: 0 0.45em 0 0.25em;
}
.index-news .wrapper .lt .block .title {
  flex: 1;
  padding-right: 1em;
}
.index-news .wrapper .lt .block .title h4 {
  font-size: clamp(14px, 1.1vw, 18px);
  color: #000;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-weight: 700;
}
.index-news .wrapper .lt .block .title h4 a {
  color: inherit;
}
.index-news .wrapper .lt .block .title p {
  font-size: clamp(12px, 1vw, 16px);
  color: #555;
  line-height: 1.5;
  height: 3em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.index-news .wrapper .lt .block .title p a {
  color: inherit;
}
.index-news .wrapper .lt .block:hover {
  border-color: transparent;
}
.index-news .wrapper .lt .block:hover .num {
  border-right-color: #fff;
  color: #fff;
}
.index-news .wrapper .lt .block:hover .title h4 {
  color: #fff;
}
.index-news .wrapper .lt .block:hover .title p {
  color: #fff;
}
.index-news .wrapper .lt .block:hover::after {
  opacity: 1;
  animation: fadeInRight 1s;
}
.index-news .wrapper .rt {
  width: 59.5%;
}
.index-news .wrapper .rt .pic {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.index-news .wrapper .rt .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  transition: all 0.5s;
}
.index-news .wrapper .rt .pic .title {
  position: absolute;
  width: 100%;
  background-color: rgba(0, 102, 204, 0.9);
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 2.10084% 4.201681% 2.52101% 3.7815126%;
}
.index-news .wrapper .rt .pic .title h4 {
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.index-news .wrapper .rt .pic .title p {
  font-size: 14px;
  line-height: 1.2857143;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.index-news .wrapper .rt .pic:hover img {
  scale: 1.05;
}
.index-coop {
  background-color: #fff;
  padding-bottom: 3.4375%;
}
.index-coop .title {
  font-size: clamp(24px, 4.16667vw, 80px);
  color: #006cb6;
  font-weight: 700;
  text-align: center;
}
.index-coop .wrapper {
  position: relative;
  background-color: #e3edf8;
  border-radius: 1.9791667vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 2.75% 2.6667% 5.166667% 5.083333%;
  overflow: hidden;
}
.index-coop .wrapper .wrapper-title {
  text-align: center;
  width: 100%;
  margin-bottom: 2.34869%;
}
.index-coop .wrapper .wrapper-title span {
  display: inline-block;
  background-color: #044c84;
  font-size: clamp(18px, 1.5625vw, 30px);
  color: #fff;
  line-height: 1.7333;
  padding: 0 1.3333em;
  border-radius: 0.86665em;
}
.index-coop .wrapper .lt {
  width: auto;
  line-height: 1.8;
}
.index-coop .wrapper .lt h3 {
  font-size: clamp(16px, 1.7708333vw, 34px);
  font-weight: 700;
  color: #044c84;
}
.index-coop .wrapper .lt h4 {
  font-size: clamp(14px, 1.5625vw, 30px);
  color: #0d0b19;
}
.index-coop .wrapper .rt {
  flex: 1;
  font-size: clamp(30px, 6.25vw, 120px);
  font-weight: 900;
  color: rgba(0, 143, 255, 0.1734);
  line-height: 1;
  text-align: right;
  white-space: nowrap;
}
footer .footer-top {
  padding: 3.5416667% 0 2%;
  background: url(../images/footer-bg.jpg) no-repeat;
  background-size: cover;
}
footer .footer-top .mycontainer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer .footer-top h4 {
  font-size: clamp(16px, 1.1627907vw, 20px);
  color: #fff;
  font-weight: 700;
  margin-bottom: 1.05em;
  padding-bottom: 0.6em;
}
footer .footer-top h5 {
  font-size: clamp(14px, 1.06666667vw, 16px);
  color: #fff;
  font-weight: 700;
}
footer .footer-top p {
  font-size: clamp(14px, 1.06666667vw, 16px);
  color: #fff;
}
footer .footer-top h6 {
  font-size: clamp(12px, 0.933333vw, 14px);
  color: #fff;
}
footer .footer-top .info {
  width: 33.3333%;
}
footer .footer-top .info h5,
footer .footer-top .info p {
  margin-bottom: 0.5em;
}
footer .footer-top .ewm {
  text-align: center;
}
footer .footer-top .ewm img {
  width: clamp(90px, 10vw, 192px);
}
footer .footer-top nav {
  width: 25%;
}
footer .footer-top nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .footer-top nav ul li {
  width: 48%;
  font-size: 14px;
  color: #fff;
  margin-bottom: 0.857143em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
footer .footer-top nav ul a {
  color: inherit;
  transition: all 0.5s;
}
footer .footer-top nav ul a:hover {
  opacity: 0.5;
}
footer .footer-top .msg {
  width: 25%;
}
footer .footer-top .msg form input,
footer .footer-top .msg form textarea {
  outline: none;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  padding: 0 1em;
  height: 42px;
  margin-bottom: 3px;
  color: #fff;
  transition: all 0.5s;
  border: 1px solid rgba(253, 253, 253, 0.25);
}
footer .footer-top .msg form input::placeholder,
footer .footer-top .msg form textarea::placeholder {
  color: #fff;
}
footer .footer-top .msg form input:focus,
footer .footer-top .msg form textarea:focus {
  background-color: rgba(0, 0, 0, 0.7);
}
footer .footer-top .msg form textarea {
  padding: 0.5em 1em;
  height: 57px;
}
footer .footer-top .msg form button {
  width: 100%;
  outline: none;
  transition: all 0.5s;
  font-size: clamp(14px, 0.9375vw, 18px);
  color: #fff;
  font-weight: 700;
  background-color: #1c448a;
  cursor: pointer;
  height: 2.33333em;
  margin-top: 6px;
}
footer .footer-top .msg form button:hover {
  filter: brightness(120%);
}
footer .footer-bt {
  text-align: center;
  line-height: 1.8;
  color: #fff;
  font-size: 14px;
  background-color: #1d4895;
  padding: 0.78125% 0;
}
footer .footer-bt a {
  color: inherit;
  transition: all 0.5s;
}
footer .footer-bt a:hover {
  opacity: 0.7;
}
