﻿@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;
}
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: 164px;
  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: #edf2f8;
}
header .header-top {
  background-color: #009a44;
}
header .header-top .mycontainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 42px;
  font-size: 13px;
  color: #fff;
}
header .header-top .mycontainer a {
  color: inherit;
}
header .header-top .mycontainer a:hover {
  text-decoration: underline !important;
}
header .header-mid .mycontainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 110px;
}
header .header-mid .logo {
  width: 100%;
}
header .header-mid .logo img {
  transition: all 0.5s;
}
header .header-mid .info {
  display: flex;
  align-items: center;
  font-size: clamp(16px, 1.25vw, 20px);
  color: #0e62c1;
  line-height: 1.4;
}
header .header-mid .info img {
  margin-right: 14px;
}
header .header-mid .info h4 {
  font-weight: 700;
}
header .lv1 {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  font-size: clamp(16px, 1.1627907vw, 20px);
  margin-bottom: 0;
}
header .lv1 > li {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}
header .lv1 > li a {
  display: block;
  color: #333;
  transition: all 0.5s;
  text-transform: uppercase;
  line-height: 52px;
  padding: 0 1em;
  text-align: center;
  width: 100%;
}
header .lv1 > li:last-child::before {
  display: none;
}
header .lv1 > li:hover > a {
  color: #1277cc;
}
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 {
  background-color: #1277cc;
  color: #fff !important;
}
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 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #d2d2d2;
  border-bottom: 1px solid #d2d2d2;
}
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-active h2 {
  animation: fadeInDown 2s;
}
.index-banner .swiper .swiper-slide-active h5 {
  animation: fadeInDown 2.5s;
}
.index-banner .swiper .swiper-slide-active a {
  animation: fadeInUp 2s;
}
.index-banner .swiper .swiper-slide-active .banner-img {
  transform: scale(1);
}
.index-banner .banner-img {
  display: block;
  width: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: all 5s;
}
.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-title {
  text-align: center;
  margin-bottom: 3%;
  line-height: 1.8;
}
.index-title h3 {
  font-size: clamp(20px, 1.875vw, 36px);
  color: #000;
  font-weight: 700;
}
.index-title h5 {
  font-size: clamp(12px, 1.2vw, 18px);
  color: #666;
}
.search-banner .mycontainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 105px;
  padding: 0.5em 0;
  gap: 1em;
}
.search-banner .mycontainer .lt {
  border-right: 1px solid #e9e9e9;
  padding-right: 13px;
}
.search-banner .mycontainer .lt h4 {
  font-size: clamp(16px, 1.40625vw, 27px);
  font-weight: 700;
  color: #000;
  line-height: 1.6;
  margin-bottom: 0.2em;
}
.search-banner .mycontainer .lt h5 {
  font-size: clamp(12px, 1vw, 14px);
  color: #fff;
  background-color: #0e62c1;
  padding: 0 0.5em;
  line-height: 1.857143;
}
.search-banner .mycontainer .mid {
  flex: 1;
  border-right: 1px solid #e9e9e9;
  padding-right: 13px;
}
.search-banner .mycontainer .mid form {
  display: flex;
  border-top: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
}
.search-banner .mycontainer .mid form input {
  background-color: transparent;
  outline: none;
  font-size: 12px;
  flex: 1;
  height: 35px;
}
.search-banner .mycontainer .mid form button {
  cursor: pointer;
  outline: none;
  background-color: transparent;
}
.search-banner .mycontainer .mid span {
  font-size: 12px;
  color: #222;
  line-height: 1.5;
  display: inline-block;
  margin-top: 0.5em;
}
.search-banner .mycontainer .mid span a {
  color: inherit;
}
.search-banner .mycontainer .mid span a:hover {
  text-decoration: underline !important;
}
.search-banner .mycontainer .rt h6 {
  font-size: 12px;
  color: #525252;
}
.search-banner .mycontainer .rt h3 {
  font-size: clamp(18px, 1.40625vw, 27px);
  font-weight: 700;
  line-height: 1.6;
  color: #0e62c1;
}
.index-prod {
  margin: 1.5% 0 2.5%;
}
.index-prod .mycontainer {
  max-width: 1540px;
}
.index-prod .swiper .swiper-slide {
  background-color: #eee;
  padding: 14px 14px 9px;
}
.index-prod .swiper .swiper-slide:hover .pic img {
  scale: 1.05;
}
.index-prod .swiper .swiper-slide:hover .title .more {
  rotate: 360deg;
}
.index-prod .swiper .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 75.6374%;
}
.index-prod .swiper .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.index-prod .swiper .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(14px, 1.2vw, 20px);
  margin-top: 0.45em;
}
.index-prod .swiper .title p {
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.index-prod .swiper .title p a {
  color: inherit;
}
.index-prod .swiper .title .more {
  font-size: 34px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  color: #fff;
  font-weight: 300;
  background-color: #1277cc;
  line-height: 0.6;
  text-align: center;
  transition: all 0.5s;
}
.swiper-btn {
  margin-top: 2%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-btn .swiper-pagination {
  position: relative;
  margin: 0;
  bottom: 0;
  width: auto;
}
.swiper-btn .swiper-pagination .swiper-pagination-bullet {
  background-color: #0065c4;
  opacity: 1;
  transition: all 0.5s;
  margin: 0 2.5px;
}
.swiper-btn .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #000;
}
.swiper-btn .swiper-button-prev,
.swiper-btn .swiper-button-next {
  position: relative;
  margin: 0 10px;
  left: auto;
  right: auto;
  top: auto;
  width: auto;
  height: auto;
  transition: all 0.5s;
}
.swiper-btn .swiper-button-prev::after,
.swiper-btn .swiper-button-next::after {
  display: none;
}
.swiper-btn .swiper-button-next img {
  rotate: 180deg;
}
.index-about {
  background: url(../image/index-about-bg.jpg) no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 1.5% 0 2.5%;
}
.index-about .index-title h3 {
  color: #fff;
}
.index-about .index-title h5 {
  color: #fff;
}
.index-about .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.index-about .wrapper .lt {
  width: 56.5%;
  font-size: clamp(14px, 1.2vw, 18px);
  color: #fff;
  line-height: 2.166667;
}
.index-about .wrapper .rt {
  width: 36.25%;
  display: flex;
  justify-content: space-between;
  color: #fff;
}
.index-about .wrapper .rt .block {
  display: inline-block;
}
.index-about .wrapper .rt h5 {
  font-size: clamp(12px, 1.2vw, 18px);
  line-height: 1.6;
}
.index-about .wrapper .rt h2 {
  font-size: clamp(20px, 2vw, 38px);
  line-height: 1.4;
}
.index-about .wrapper .rt em {
  display: block;
  font-size: clamp(24px, 3.5416667vw, 68px);
}
.index-about .wrapper .rt .line:nth-child(2) {
  text-align: right;
}
.index-about .wrapper .rt .line:nth-child(2) h5 {
  text-align: left;
}
.index-about .swiper {
  margin-top: 3.5%;
}
.index-about .swiper .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 74.54068%;
}
.index-about .swiper .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.index-about .swiper .pic:hover img {
  scale: 1.05;
}
.index-more {
  text-align: center;
  margin-top: 3%;
}
.index-more a {
  display: inline-block;
  font-size: clamp(14px, 1.2vw, 20px);
  color: #fff;
  background-color: #28b737;
  border: 1px solid transparent;
  line-height: 2.25;
  border-radius: 1.125em;
  padding: 0 0.6em 0 1em;
  transition: all 0.5s;
}
.index-more a:hover {
  background-color: #fff;
  color: #28b737;
  border: 1px solid #28b737;
}
.index-serv .tab {
  padding: 2.65625% 0 0;
}
.index-serv .tab .mycontainer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.index-serv .tab .mycontainer .block {
  position: relative;
  width: 24.25%;
  background-color: #f3f3f3;
  text-align: center;
  font-size: clamp(16px, 1.25vw, 24px);
  padding: 2.75% 0.5em 2.66667%;
  cursor: pointer;
  margin-bottom: 1.3em;
  z-index: 1;
  transition: all 0.5s;
}
.index-serv .tab .mycontainer .block::after {
  position: absolute;
  display: block;
  content: "";
  border: 1.925em solid transparent;
  border-bottom: 0;
  border-top: 1.3em solid #f3f3f3;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0%);
  opacity: 0;
  transition: all 0.5s;
}
.index-serv .tab .mycontainer .block .icon {
  display: inline-block;
  width: 2.541667em;
  height: 2.208333em;
}
.index-serv .tab .mycontainer .block .icon img {
  max-height: 100%;
  transition: all 0.5s;
}
.index-serv .tab .mycontainer .block h4 {
  color: #222;
  margin-top: 0.25em;
}
.index-serv .tab .mycontainer .block .brief {
  font-size: 0.75em;
  line-height: 1.765;
  color: #222;
}
.index-serv .tab .mycontainer .block:hover .icon img {
  animation: swing 1s;
}
.index-serv .tab .mycontainer .active {
  background-color: #0065c4;
}
.index-serv .tab .mycontainer .active .icon img {
  filter: contrast(0) brightness(200%);
}
.index-serv .tab .mycontainer .active h4 {
  color: #fff;
}
.index-serv .tab .mycontainer .active .brief {
  color: #fff;
}
.index-serv .tab .mycontainer .active::after {
  opacity: 1;
  transform: translate(-50%, 100%);
  border-top-color: #0065c4;
}
.index-serv .content {
  background-color: #f3f3f3;
  padding: 2.5521% 0 1.666667%;
}
.index-serv .content .swiper .swiper-slide {
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 3.25% 2.08333% 2.83333% 3.166667%;
}
.index-serv .content .swiper .swiper-slide .lt {
  width: 43.095866%;
}
.index-serv .content .swiper .swiper-slide .lt .title {
  display: flex;
  align-items: center;
  margin-bottom: 6.122449%;
}
.index-serv .content .swiper .swiper-slide .lt .title .num {
  font-size: clamp(20px, 2vw, 38px);
  color: #0065c4;
  font-weight: 700;
  font-style: italic;
  background: url(../image/serv-num-bg.png) no-repeat;
  background-size: contain;
  text-align: center;
  width: 2.289474em;
  line-height: 2.10526316;
  margin-right: 0.553em;
}
.index-serv .content .swiper .swiper-slide .lt .title .text {
  flex: 1;
}
.index-serv .content .swiper .swiper-slide .lt .title .text h4 {
  font-size: clamp(16px, 1.3vw, 24px);
  font-weight: 700;
  color: #333;
  line-height: 1.8;
}
.index-serv .content .swiper .swiper-slide .lt .title .text h5 {
  font-size: clamp(14px, 1vw, 15.3px);
}
.index-serv .content .swiper .swiper-slide .lt .brief {
  font-size: clamp(14px, 1vw, 15.3px);
  color: #333;
  line-height: 3.203;
}
.index-serv .content .swiper .swiper-slide .lt .tel {
  display: inline-block;
  font-size: clamp(14px, 1.25vw, 23px);
  color: #fff;
  background-color: #0065c4;
  line-height: 2;
  border-radius: 1em;
  padding: 0 1.087em 0 0.652174em;
  margin-top: 9.18367%;
}
.index-serv .content .swiper .swiper-slide .rt {
  width: 55.848725%;
}
.index-honor {
  position: relative;
  padding: 2% 0 0;
  margin-bottom: 2.5%;
}
.index-honor .bg {
  position: absolute;
  width: 100%;
  z-index: -1;
  top: 0;
  left: 0;
}
.index-honor .bg img {
  display: block;
  width: 100%;
}
.index-honor .mycontainer {
  max-width: 1570px;
}
.index-honor .index-title h3 {
  color: #fff;
}
.index-honor .index-title h5 {
  color: #fff;
}
.index-honor .swiper-content {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 9px rgba(0, 0, 0, 0.18);
  padding: 1.719745% 1.5923567% 3.057325%;
}
.index-honor .swiper-content .swiper {
  padding: 14px;
}
.index-honor .swiper-content .pic {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 75.419%;
}
.index-honor .swiper-content .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 4px solid #d2d2d3;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.09);
}
.index-case {
  background-color: #f2f2f2;
  padding: 1.5% 0 2.5%;
}
.index-case .mycontainer {
  max-width: 1700px;
  width: 90%;
}
.index-case .swiper .swiper-slide {
  background-color: #fff;
  padding: 15px 12px 10px 15px;
}
.index-case .swiper .swiper-slide:hover .pic img {
  scale: 1.05;
}
.index-case .swiper .swiper-slide:hover .title .more {
  rotate: 360deg;
}
.index-case .swiper .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 75.6410256%;
}
.index-case .swiper .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.index-case .swiper .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(14px, 1.2vw, 20px);
  margin-top: 0.45em;
}
.index-case .swiper .title p {
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.index-case .swiper .title p a {
  color: inherit;
}
.index-case .swiper .title .more {
  font-size: 34px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  color: #fff;
  font-weight: 300;
  background-color: #1277cc;
  line-height: 0.6;
  text-align: center;
  transition: all 0.5s;
}
.index-news {
  margin: 1.5% 0;
}
.index-news .container {
  max-width: 1240px;
}
.index-news .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.index-news .wrapper .lt {
  width: 48.951613%;
}
.index-news .wrapper .rt {
  width: 50%;
}
.index-news .wrapper .rt .block {
  background-color: #eee;
  padding: 2.419355% 5.6451613% 4.1935484% 4.51613%;
  margin-bottom: 2.903226%;
}
.index-news .wrapper .rt .block a {
  color: inherit;
}
.index-news .wrapper .rt .block .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.index-news .wrapper .rt .block .title h4 {
  flex: 1;
  margin-right: 0.5em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: clamp(14px, 1.2vw, 18.7px);
  color: #000;
}
.index-news .wrapper .rt .block .title h3 {
  font-size: clamp(12px, 1.3vw, 20.4px);
  color: #333;
}
.index-news .wrapper .rt .block .title h3 span {
  font-size: clamp(10px, 1vw, 14px);
}
.index-news .wrapper .rt .block p {
  font-size: 12px;
  color: #666;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  line-height: 2.8333;
  height: 8.4999em;
}
.index-news .wrapper .rt .block:hover .title h4 {
  color: #0065c4;
}
.index-slogan {
  background: url(../image/index-slogan-bg.jpg) no-repeat;
  background-size: cover;
  text-align: center;
  color: #fff;
  padding: 2.083333% 0 2.23958333%;
}
.index-slogan h4 {
  font-size: clamp(16px, 1.40625vw, 27px);
  font-weight: 300;
  letter-spacing: 0.35em;
}
.index-slogan h2 {
  font-weight: 700;
  font-size: clamp(20px, 2.5vw, 48px);
  margin-bottom: 0.3em;
}
.index-slogan h5 {
  font-size: clamp(12px, 1.1vw, 17px);
  max-width: 855px;
  margin: 0 auto;
}
.index-slogan h3 {
  font-size: clamp(14px, 1.2vw, 20px);
  border: 2px solid #fff;
  background-color: #0065c4;
  line-height: 2.25;
  border-radius: 1.125em;
  display: inline-block;
  padding: 0 1em;
  margin-top: 1.8em;
}
footer {
  background: url(../image/footer-bg.jpg) no-repeat;
  background-size: cover;
}
footer .footer-top ul {
  display: flex;
  justify-content: space-between;
}
footer .footer-top ul li a {
  font-size: clamp(16px, 1.1627907vw, 20px);
  color: #edf2f8;
  padding: 0 1em;
  line-height: 3;
}
footer .footer-top ul li a:hover {
  text-decoration: underline !important;
}
footer .footer-mid {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding: 2.5% 0 1.5%;
}
footer .footer-mid .mycontainer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer .footer-mid h4 {
  font-size: clamp(16px, 1.1vw, 18px);
  color: #fff;
  font-weight: 700;
  margin-bottom: 1.05em;
}
footer .footer-mid p {
  font-size: 14px;
  color: #fff;
}
footer .footer-mid .logo {
  width: 34.4166667%;
  align-self: center;
}
footer .footer-mid .info {
  width: 20%;
}
footer .footer-mid .info p {
  margin-bottom: 1em;
}
footer .footer-mid .ewm img {
  width: clamp(90px, 10vw, 192px);
}
footer .footer-mid nav ul li {
  font-size: 14px;
  color: #fff;
  margin-bottom: 1em;
}
footer .footer-mid nav ul a {
  color: inherit;
  transition: all 0.5s;
}
footer .footer-mid nav ul a:hover {
  opacity: 0.5;
}
footer .footer-mid .msg {
  width: 25%;
}
footer .footer-mid .msg form input,
footer .footer-mid .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-mid .msg form input::placeholder,
footer .footer-mid .msg form textarea::placeholder {
  color: #fff;
}
footer .footer-mid .msg form input:focus,
footer .footer-mid .msg form textarea:focus {
  background-color: rgba(0, 0, 0, 0.7);
}
footer .footer-mid .msg form textarea {
  padding: 0.5em 1em;
  height: 57px;
}
footer .footer-mid .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: #84ce13;
  cursor: pointer;
  height: 2.33333em;
  margin-top: 6px;
}
footer .footer-mid .msg form button:hover {
  filter: brightness(80%);
}
footer .footer-bt {
  text-align: center;
  line-height: 1.8;
  color: #fff;
  font-size: 14px;
  padding: 0.78125% 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
footer .footer-bt a {
  color: inherit;
  transition: all 0.5s;
}
footer .footer-bt a:hover {
  opacity: 0.7;
}
