@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 {
  scroll-behavior: smooth;
  font-family: var(--Noto-Sans-SC);
}
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: 1600px;
  width: 85%;
  margin: 0 auto;
}
.blank {
  margin: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  min-height: 0 !important;
  border: 0 !important;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  z-index: 99;
  transition: all 0.5s;
  background-color: #fff;
}
header .mycontainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}
header .logo {
  width: 15.75%;
  text-align: center;
}
header .logo img {
  transition: all 0.5s;
}
header .lv1 {
  flex: 1;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  height: 100%;
}
header .lv1 > li {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(14px, 1.1vw, 18px);
}
header .lv1 > li:first-child {
  margin-left: 0;
}
header .lv1 > li a {
  color: #666;
  padding: 0 1em;
  line-height: 2.2222em;
  text-align: center;
  transition: all 0.5s;
  text-transform: uppercase;
}
header .lv1 > li:hover > a {
  background-color: rgba(20, 96, 171, 0.1);
}
header .lv1 > li:hover::after {
  width: 100%;
}
header .lv1 > li:hover .lv2 {
  opacity: 1;
  transform: translate(-50%, 0);
  visibility: visible;
}
header .lv1 > .active > a {
  color: #fff !important;
  background-color: #1460AB !important;
  font-weight: 700;
}
header .lv1 .tel {
  line-height: 1.2;
}
header .lv1 .tel h5 {
  font-size: clamp(14px, 1vw, 16px);
  color: #1460AB;
  font-weight: 700;
}
header .lv1 .tel h4 {
  font-size: clamp(16px, 1.1vw, 18px);
  color: #1460AB;
  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: 3%;
  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;
}
.pagination {
  margin-top: 2%;
  display: flex !important;
  text-align: center;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.pagination a {
  display: block;
  font-size: 14px;
  padding: 0 13px;
  line-height: 32px;
  background-color: #fff;
  margin: 5px;
  color: #1460AB;
  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: #1460AB;
  margin: 5px;
  color: #fff;
  transition: all 0.5s;
  font-family: var(--Din);
  border-radius: 4px;
}
.pagination a:hover {
  color: #fff;
  background-color: #1460AB;
  border-color: transparent;
}
.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 {
  bottom: 5%;
}
.index-banner .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: transparent;
  border: 1px solid #fff;
  transition: all 0.5s;
  margin: 0 6.5px;
}
.index-banner .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fff;
}
.index-banner .swiper-button-prev, .index-banner .swiper-button-next {
	font-size: clamp(16px, 1.875vw, 36px);
	color: #045ECE;
	width: 2em;
	height: 2em;
	border-radius: 50%;
	border: 2px solid #045ECE;
	background-color: rgba(255, 255, 255, 0.7);
	font-weight: 700;
	transition: all .5s;
}
.index-banner .swiper-button-prev::after, .index-banner .swiper-button-next::after {
	font-size: inherit;
	color: inherit;
}
.index-banner .swiper-button-prev:hover, .index-banner .swiper-button-next:hover {
	filter: drop-shadow(0 0 5px #045ECE) brightness(130%);
}
.index-title {
  text-align: center;
  margin-bottom: 2%;
}
.index-title h3 {
  font-size: clamp(20px, 2.083333vw, 40px);
  color: #1460AB;
  font-weight: 700;
  position: relative;
  line-height: 1.25;
  margin-bottom: 0.25em;
}
.index-title h3::before,
.index-title h3::after {
  display: inline-block;
  content: "";
  vertical-align: middle;
  margin: 0 1.25em;
  width: 1em;
  height: 3px;
  background-color: #1460AB;
}
.index-title h5 {
  font-size: clamp(12px, 1.25vw, 24px);
  line-height: 2;
  text-transform: uppercase;
  color: #999;
  line-height: 1.6667;
}
.search-banner {
  z-index: 10;
  background-color: #FAFAFA;
  padding: 1.0416667% 0;
}
.search-banner .mycontainer {
  display: flex;
  justify-content: space-between;
  font-size: clamp(14px, 1.2vw, 20px);
  gap: 1em;
}
.search-banner .mycontainer span {
  font-size: clamp(14px, 1vw, 16px);
  color: #1460AB;
  white-space: nowrap;
  line-height: 1.875;
}
.search-banner .mycontainer .keywords {
  font-size: clamp(14px, 1.1vw, 18px);
  color: #666;
  line-height: 1.66667;
}
.search-banner .mycontainer .keywords a {
  color: inherit;
}
.search-banner .mycontainer .keywords a:hover {
  text-decoration: underline !important;
}
.search-banner .mycontainer form {
  font-size: clamp(14px, 1vw, 16px);
  display: flex;
  align-items: center;
}
.search-banner .mycontainer form input {
  background-color: #fff;
  border: 1px solid #1460AB;
  border-right: 0;
  outline: none;
  height: 2.5em;
  width: 15em;
  padding: 0 1em;
}
.search-banner .mycontainer form button {
  width: 5em;
  height: 2.5em;
  outline: none;
  border: 0;
  background: #1460AB;
  cursor: pointer;
}
.index-about {
  margin: 1.5625% 0 0;
}
.index-about .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: #F2F2F2;
}
.index-about .wrapper .lt {
  width: 50%;
}
.index-about .wrapper .lt .pic {
  position: relative;
  overflow: hidden;
  box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1), 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
}
.index-about .wrapper .lt .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.index-about .wrapper .lt .pic:hover img {
  scale: 1.05;
}
.index-about .wrapper .rt {
  width: 50%;
  padding: 2.34375% 0 0;
}
.index-about .wrapper .rt .text {
  padding: 0 4.166667%;
}
.index-about .wrapper .rt .title h5 {
  font-size: clamp(12px, 1.25vw, 24px);
  color: #1460AB;
  line-height: 1.25;
}
.index-about .wrapper .rt .title h4 {
  font-size: clamp(16px, 1.7708333vw, 34px);
  color: #1460AB;
  line-height: 1.470588;
}
.index-about .wrapper .rt .title em {
  display: block;
  font-size: clamp(20px, 2.083333vw, 40px);
  width: 2em;
  height: 2px;
  background-color: #1460AB;
  margin-top: 0.25em;
}
.index-about .wrapper .rt .brief {
  font-size: clamp(14px, 1.2vw, 20px);
  color: #666;
  line-height: clamp(2em, 2.6041667vw, 2.5em);
  margin-bottom: 1em;
}
.index-about .wrapper .rt .more {
  display: inline-block;
  color: #1460AB;
  font-weight: 700;
  font-size: clamp(14px, 1.25vw, 24px);
  border: 1px solid transparent;
  border-radius: 0.5em;
  line-height: 2;
  padding: 0 5.5px;
  transition: all 0.5s;
}
.index-about .wrapper .rt .more:hover {
  transform: translateY(-3px);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
  border-color: #1460AB;
}
.index-about .wrapper .rt .data {
  display: flex;
  justify-content: space-around;
  background: url(../images/index-data-bg.jpg) no-repeat;
  background-size: cover;
  padding: 2.08333333%;
  margin-top: 4.6875%;
}
.index-about .wrapper .rt .data .block {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: clamp(20px, 2.083333vw, 40px);
  width: 32%;
}
.index-about .wrapper .rt .data .block .icon {
  width: 2em;
  height: 2em;
}
.index-about .wrapper .rt .data .block .icon img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}
.index-about .wrapper .rt .data .block .data-text {
  text-align: center;
}
.index-about .wrapper .rt .data .block h2 {
  font-weight: 700;
  line-height: 1;
}
.index-about .wrapper .rt .data .block h5 {
  font-size: clamp(12px, 1.25vw, 24px);
  line-height: 2.08333333;
}
.prod-tab {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  font-size: clamp(14px, 1.2vw, 20px);
  gap: 1em 2em;
  margin-bottom: 3.125%;
}
.prod-tab li a {
  color: #1460AB;
  display: block;
  min-width: 10em;
  padding: 0 0.5em;
  border-radius: 0.5em;
  border: 1px solid #1460AB;
  text-align: center;
  line-height: 2.5;
  transition: all 0.5s;
}
.prod-tab li a:hover {
  background-color: #1460AB;
  color: #fff;
  font-weight: 700;
}
.prod-tab .active a {
  background-color: #1460AB;
  color: #fff;
  font-weight: 700;
}
.index-prod {
  padding: 2.083333% 0;
  background-color: #F2F2F2;
}
.index-prod .swiper {
  margin: 10px;
}
.index-prod .swiper .swiper-slide {
  padding: 10px;
  border: 2px solid rgba(153, 153, 153, 0.3);
  background-color: #fff;
  transition: all 0.5s;
}
.index-prod .swiper .swiper-slide:hover {
  border-color: #1460AB;
}
.index-prod .swiper .swiper-slide:hover .pic img {
	transform: translate(-50%, -50%) scale(1.05);
}
.index-prod .swiper .swiper-slide:hover .title {
  background-color: #1460AB;
  color: #fff;
}
.index-prod .swiper .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 139.2857143%;
  background: url(../images/prod-bg.jpg) no-repeat;
  background-size: cover;
  transition: all 0.5s;
}
.index-prod .swiper .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 60%;
  object-fit: cover;
  transition: all 0.5s;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
.index-prod .swiper .title {
  width: 100%;
  font-size: clamp(14px, 1.1vw, 18px);
  background-color: #F6F6F6;
  color: #333;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 0.5em;
  transition: all 0.5s;
  line-height: 2.5;
  margin-top: 10px;
}
.index-prod .swiper .title a {
  color: inherit;
}
.index-prod .prod-swiper {
	position: relative;
}
.index-prod .swiper-button-prev, .index-prod .swiper-button-next {
	font-size: clamp(14px, 1.25vw, 24px);
	color: #fff;
	width: 2em;
	height: 2em;
	border-radius: 50%;
	border: 2px solid #fff;
	background-color: #045ECE;
	font-weight: 700;
	transition: all .5s;
}
.index-prod .swiper-button-prev::after, .index-prod .swiper-button-next::after {
	font-size: inherit;
	color: inherit;
}
.index-prod .swiper-button-prev:hover, .index-prod .swiper-button-next:hover {
	filter: drop-shadow(0 0 5px #045ECE) brightness(130%);
}
.index-prod .swiper-button-prev {
	left: -2%;
}
.index-prod .swiper-button-next {
	right: -2%;
}
.index-case {
  background-color: #F6F6F6;
  padding: 2.6041667% 0 3.125%;
  margin: 0;
}
.index-industry {
  padding: 2% 0 20px;
}
.index-industry .wrapper {
  display: flex;
  justify-content: space-between;
  gap: 1.25%;
}
.index-industry .wrapper .block {
  position: relative;
  overflow: hidden;
  flex: 1;
  height: 32.29166667vw;
  transition: all 1s;
}
.index-industry .wrapper .block h3 {
  position: absolute;
  width: 100%;
  line-height: 3;
  bottom: 0;
  left: 0;
  padding: 0 0.5em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  font-size: clamp(14px, 1.666667vw, 32px);
  color: #fff;
  font-weight: 700;
  background-color: rgba(20, 96, 171, 0.8);
  transform: translateY(100%);
  transition: all 1s;
}
.index-industry .wrapper .block img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.index-industry .wrapper .block:hover img {
  scale: 1.05;
}
.index-industry .wrapper .active {
  flex: 2.1333333;
}
.index-industry .wrapper .active h3 {
  transform: translateY(0);
}
.index-cert {
  position: relative;
  padding: 3.125% 0 3.6458333%;
  height: 42.7083333vw;
}
.index-cert .bg {
  top: 0;
  left: 0;
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-cert .index-title {
  position: relative;
  z-index: 2;
}
.index-cert .swiper .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 138.888889%;
}
.index-cert .swiper .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.index-cert .swiper .title {
  text-align: center;
  font-size: clamp(14px, 1.5625vw, 30px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 2.66667;
  color: #333;
}
.index-news {
  padding: 3.125% 0 2.60416667%;
  background-color: #F2F2F2;
}
.index-news .news-tab {
  display: flex;
  font-size: clamp(14px, 1.25vw, 24px);
  gap: 0.833333em;
  margin-bottom: 1.875%;
  padding: 0 2.5%;
}
.index-news .news-tab li {
  cursor: pointer;
  color: #333;
  line-height: 2.083333;
  padding: 0 0.9375em;
  border-bottom: 0.208333em solid transparent;
  transition: all 0.5s;
}
.index-news .news-tab li:hover {
  color: #1460AB;
}
.index-news .news-tab .active {
  color: #1460AB;
  border-bottom-color: #1460AB;
}
.index-news .wrapper {
  padding: 0 2.5%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.index-news .wrapper .lt {
  width: 50%;
}
.index-news .wrapper .lt .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 56.57895%;
}
.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 .title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  font-size: clamp(14px, 1.25vw, 24px);
  color: #fff;
  display: flex;
  justify-content: space-between;
  padding: 0 0.833333em;
  line-height: 2.0833;
  background-color: rgba(51, 51, 51, 0.6);
}
.index-news .wrapper .lt .pic .title h4 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  margin-right: 0.5em;
}
.index-news .wrapper .lt .pic .title span {
  white-space: nowrap;
}
.index-news .wrapper .lt .pic:hover img {
  scale: 1.05;
}
.index-news .wrapper .rt {
  width: 48.0263158%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.index-news .wrapper .rt .block {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5s;
}
.index-news .wrapper .rt .block .date {
  width: 16.4383562%;
  white-space: nowrap;
  color: #333;
  text-align: center;
  padding: 10px 10px;
  transition: all 0.5s;
}
.index-news .wrapper .rt .block .date h3 {
  font-size: clamp(20px, 2.083333vw, 40px);
  line-height: 1.25;
}
.index-news .wrapper .rt .block .date h5 {
  font-size: clamp(12px, 1.2vw, 20px);
  line-height: 2.5;
}
.index-news .wrapper .rt .block .title {
  width: 83.5616438%;
  padding: 0 10px;
}
.index-news .wrapper .rt .block .title h4 {
  font-size: clamp(14px, 1.25vw, 24px);
  color: #333;
  font-weight: 700;
  line-height: 1.6667;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.index-news .wrapper .rt .block .title p {
  font-size: clamp(12px, 1.1vw, 18px);
  color: #666;
  line-height: 1.6667;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.index-news .wrapper .rt .block .title a {
  color: inherit;
}
.index-news .wrapper .rt .block:hover {
  background-color: #fff;
}
.index-news .wrapper .rt .block:hover .date {
  background-color: #1460AB;
}
.index-news .wrapper .rt .block:hover .date h3,
.index-news .wrapper .rt .block:hover .date h5 {
  color: #fff;
}
.index-news .wrapper .rt .block:hover .title h4 {
  color: #1460AB;
}
.index-news .news-content {
  display: none;
}
.index-news .news-content:first-child {
  display: block;
}
.index-more {
  margin-top: 1.875%;
  text-align: center;
}
.index-more a {
  display: inline-block;
  font-size: clamp(14px, 1.1vw, 18px);
  border: 1px solid #999;
  color: #999;
  min-width: 11.1111em;
  line-height: 2.6666667;
  padding: 0 1.5em;
  border-radius: 1.33333335em;
  transition: all 0.5s;
}
.index-more a:hover {
  border-color: #1460AB;
  color: #fff;
  background-color: #1460AB;
  font-weight: 700;
}
footer {
  background: url(../images/footer-bg.jpg);
  background-size: cover;
  padding: 2.60416667% 0;
}
footer .footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 2.125%;
}
footer .footer-top h4 {
  font-size: clamp(16px, 1.25vw, 24px);
  color: #fff;
  font-weight: 700;
  line-height: 1.6667;
  margin-bottom: 0.416667em;
}
footer .footer-top .info {
  width: 24.375%;
}
footer .footer-top .info .logo {
  margin-bottom: 10px;
}
footer .footer-top .info .logo h3 {
  font-size: clamp(20px, 1.5625vw, 30px);
  color: #fff;
  font-weight: 700;
  line-height: 1.3333;
}
footer .footer-top .info .logo h5 {
  font-size: 10px;
  color: #fff;
  line-height: 2;
}
footer .footer-top .info .logo h4 {
  margin-bottom: 0;
}
footer .footer-top .info .brief {
  font-size: clamp(14px, 1.2vw, 20px);
  color: #fff;
  line-height: 2;
}
footer .footer-top nav {
  width: 22.5%;
}
footer .footer-top nav ul {
  font-size: clamp(16px, 1.1vw, 18px);
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  max-height: 11em;
  gap: 0 1em;
}
footer .footer-top nav ul li {
  line-height: 1.6667;
  margin-bottom: 1em;
}
footer .footer-top nav ul li a {
  color: #fff;
  transition: all 0.5s;
}
footer .footer-top nav ul li a:hover {
  text-decoration: underline !important;
}
footer .footer-top address {
  width: 25%;
}
footer .footer-top address p {
  font-size: clamp(14px, 1.1vw, 18px);
  color: #fff;
  line-height: 1.6667;
  margin-bottom: 1em;
}
footer .footer-top .ewm {
  text-align: center;
  max-width: 21.25%;
}
footer .footer-top .ewm img {
  width: 100%;
  max-width: 140px;
}
footer .footer-top .ewm p {
  font-size: clamp(14px, 1.1vw, 18px);
  color: #fff;
  line-height: 1.6667;
  margin-top: 0.5556em;
}
footer .footer-bt {
  font-size: clamp(12px, 1.1vw, 18px);
  color: #fff;
  line-height: 1.6667;
  text-align: center;
  display: flex;
}
footer .footer-bt p {
  flex: 1;
}
footer .footer-bt a {
  color: inherit;
}
footer .footer-bt a:hover {
  text-decoration: underline !important;
}
footer .footer-bt span i {
  position: relative;
  margin-left: 20px;
  cursor: pointer;
  transform-style: preserve-3d;
  perspective: 800px;
}
footer .footer-bt span i > img {
  transition: all 0.5s;
}
footer .footer-bt span i .tip {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  left: 50%;
  top: -100%;
  transform: translate(-50%, -150%) rotateX(-90deg) rotateY(90deg);
  white-space: nowrap;
  min-width: 100px;
  min-height: 100px;
  transition: all 0.5s;
}
footer .footer-bt span i .tip img {
  width: 100px;
  height: 100px;
}
footer .footer-bt span i:hover > img {
  filter: brightness(200%);
}
footer .footer-bt span i:hover .tip {
  transform: translate(-50%, -100%) rotateX(0deg) rotateY(0deg);
  visibility: visible;
  opacity: 1;
}
.anchor-fixed {
  position: relative;
  top: -100px;
}
.back-top {
  position: fixed;
	z-index: 3;
  right: 1%;
  bottom: 5%;
  background-color: #1460AB;
  width: 2em;
  height: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  cursor: pointer;
  font-size: clamp(12px, 1.2vw, 20px);
  border-radius: 4px;
  transition: all 0.5s;
  animation: fadeOutRight 0.5s;
  visibility: hidden;
}
.back-top:hover {
  filter: sepia(1);
}
.back-top-show {
  animation: fadeInLeft 0.5s;
  visibility: visible;
}
.inner-banner {
  position: relative;
}
.inner-banner img {
  display: block;
  width: 100%;
}
.inner-content {
  padding: 2% 0 3%;
}
.inner-content .wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.inner-content .wrapper aside {
  position: sticky;
  top: 120px;
  width: 18.75%;
  max-height: calc(100vh - 120px);
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.inner-content .wrapper aside::after ::-webkit-scrollbar {
  display: none;
}
.inner-content .wrapper aside .aside-title {
  font-size: clamp(16px, 1.2vw, 20px);
  color: #fff;
  font-weight: 700;
  background-color: #1460AB;
  text-align: center;
  display: flex;
  align-items: center;
  height: 3em;
  padding: 0 1em;
}
.inner-content .wrapper aside .aside-title span {
  margin-left: 0.5em;
  font-weight: 400;
  color: rgba(236, 236, 236, 0.6);
  text-transform: uppercase;
}
.inner-content .wrapper aside .aside-lv1 {
  border: 1px solid #1460AB;
}
.inner-content .wrapper aside .aside-lv1 li {
  font-size: clamp(14px, 1.2vw, 20px);
}
.inner-content .wrapper aside .aside-lv1 li div {
  color: #333;
  padding: 0.5em 1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.5s;
}
.inner-content .wrapper aside .aside-lv1 li a {
  display: block;
  color: inherit;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 0.5em;
}
.inner-content .wrapper aside .aside-lv1 li i {
  cursor: pointer;
  transition: transform 0.5s;
}
.inner-content .wrapper aside .aside-lv1 .active div {
  background-color: rgba(20, 96, 171, 0.1);
  border-color: #1460AB;
  color: #1460AB;
}
.inner-content .wrapper aside .aside-lv1 .active i {
  transform: rotate(90deg);
}
.inner-content .wrapper aside .aside-lv2 {
  display: none;
}
.inner-content .wrapper aside .aside-lv2 li {
  font-size: clamp(14px, 1.2vw, 20px);
  color: #999;
  line-height: 2;
  margin: 0.5em 0;
  padding: 0 1em;
  transition: all 0.5s;
}
.inner-content .wrapper aside .aside-lv2 li:hover {
  background-color: rgba(20, 96, 171, 0.1);
  color: #1460AB;
}
.inner-content .wrapper aside .aside-lv2 .active {
  background-color: rgba(20, 96, 171, 0.1);
  color: #1460AB;
}
.inner-content .wrapper aside .aside-footer {
  margin-top: 20px;
}
.inner-content .wrapper aside .aside-footer .text {
  font-size: clamp(12px, 1vw, 16px);
  color: #333;
  padding: 0.5em 1em;
  border: 1px solid #1460AB;
}
.inner-content .wrapper aside .aside-footer .text p {
  font-size: clamp(12px, 1vw, 16px);
  line-height: 2.5;
  margin-bottom: 0.625em;
}
.inner-content .wrapper main {
  width: 80%;
  padding: 0.625%;
}
.inner-content-dark {
  background-color: #F6F6F6;
}
.prod-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.prod-wrapper .block {
  width: 31.80952381%;
  padding: 10px;
  border: 2px solid rgba(102, 102, 102, 0.2);
  margin-bottom: 2.3809524%;
  transition: all 0.5s;
}
.prod-wrapper .block .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 80%;
  /* background: url(../images/prod-bg.jpg) no-repeat;
  background-size: cover; */
  margin-bottom: 10px;
}
.prod-wrapper .block .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.5s;
}
.prod-wrapper .block .title {
  text-align: center;
  transition: all 0.5s;
  font-size: clamp(14px, 1vw, 16px);
  background-color: #F6F6F6;
  color: #666;
  line-height: 2.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 0.5em;
}
.prod-wrapper .block .title a {
  color: inherit;
}
.prod-wrapper .block:hover {
  border-color: #1460AB;
}
.prod-wrapper .block:hover .pic img {
  scale: 1.05;
}
.prod-wrapper .block:hover .title {
  color: #fff;
  background-color: #1460AB;
}
.inner-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #045ECE;
  padding: 20px 0;
  margin-bottom: 2.5%;
}
.inner-title h3 {
  font-size: clamp(20px, 2.0833333vw, 40px);
  color: #333;
  font-weight: 700;
  position: relative;
  line-height: 1.25;
  padding-left: 0.5em;
}
.inner-title h3 span {
  font-size: clamp(12px, 1.2vw, 20px);
  color: #666;
  font-weight: 400;
  margin-left: 1em;
  text-transform: uppercase;
}
.inner-title a {
  font-size: clamp(12px, 1.2vw, 20px);
  color: #999;
  margin-right: 1.5em;
  transition: all 0.5s;
  font-weight: 500;
	border: 1px solid #ccc;
	line-height: 2.5;
	border-radius: 1.25em;
	padding: 0 1em;
}
.inner-title a:hover {
  color: #1460AB;
	border-color: #1460AB;
}
.prod-list .prod-tab {
  gap: 1em;
}
.prod-detail .inner-title {
  /* background-color: #F6F6F6; */
  border-left: 4px solid #1460AB;
  padding: 10px 0;
  border-bottom: 0;
}
.prod-detail .prod-intro {
  background-color: #F6F6F6;
  padding: 3.125%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 5%;
}
.prod-detail .prod-intro .lt {
  width: 45.333333%;
}
.prod-detail .prod-intro .lt .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 61.764706%;
  border: 10px solid rgba(153, 153, 153, 0.2);
  background-color: #fff;
}
.prod-detail .prod-intro .lt .pic img {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.prod-detail .prod-intro .rt {
  width: 52%;
  background-color: #fff;
  padding: 10px 2.666667% 2%;
}
.prod-detail .prod-intro .rt .title {
  font-size: clamp(16px, 1.25vw, 24px);
  font-weight: 700;
  color: #1460AB;
  border-bottom: 1px solid #1460AB;
  margin-bottom: 0.833333em;
}
.prod-detail .prod-intro .rt .brief {
  font-size: clamp(12px, 1.1vw, 18px);
  color: #333;
  line-height: 2.22222;
}
.prod-detail .prod-intro .rt .brief h4 {
  font-size: clamp(14px, 1.2vw, 20px);
  font-weight: 700;
  line-height: 2;
}
.prod-detail .prod-intro .rt .brief p {
  position: relative;
  padding-left: 1.5em;
}
.prod-detail .prod-intro .rt .brief p::before {
  display: inline-block;
  content: "·";
  position: absolute;
  left: 0;
}
.prod-detail .prod-article {
  padding: 3.125%;
  background-color: #F6F6F6;
  font-size: clamp(14px, 1.1vw, 18px);
  line-height: clamp(2em, 2.60416667vw, 2.77778em);
  color: #333;
}
.prod-detail .prod-article .brief {
  padding: 10px 2.666667%;
}
.prod-detail .prod-article h3 {
  font-size: clamp(16px, 1.25vw, 24px);
  font-weight: 700;
  color: #1460AB;
  border-bottom: 1px solid #1460AB;
  margin-bottom: 0.833333em;
}
.prod-detail .prod-article h4 {
  font-size: clamp(14px, 1.2vw, 20px);
  font-weight: 700;
  line-height: 2;
}
.prod-detail .prod-article p {
  position: relative;
  padding-left: 1.5em;
}
.prod-detail .prod-article p::before {
  display: inline-block;
  content: "·";
  position: absolute;
  left: 0;
}
.prod-detail .prod-article article {
  overflow: auto;
}
.prod-detail .prod-article table {
  width: 100% !important;
  margin: 1em 0;
}
.prod-detail .prod-article table tr td {
  font-size: clamp(12px, 1vw, 16px);
  color: #666;
  padding: 0.75em 1.25em;
  border-left: 1px solid #E6E6E6;
  border-right: 1px solid #E6E6E6;
	border-bottom: 1px solid #E6E6E6;
  line-height: 1.6667;
}
.prod-detail .prod-article table tr:nth-child(odd) td {
  background-color: #fff;
}
.prod-detail .prod-article table tr:first-child td {
  text-align: center;
  font-size: clamp(14px, 1.1vw, 18px);
  color: #fff;
  background-color: #008DD7;
}
.prod-detail .prod-article table tr:last-child td {
	border-bottom: 1px solid #E6E6E6;
}
.app-wrapper .block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  background-color: #fff;
  margin-bottom: 1.5873016%;
}
.app-wrapper .block .picture {
  width: 32.25806452%;
}
.app-wrapper .block .picture .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 70%;
}
.app-wrapper .block .picture .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.app-wrapper .block .title {
  width: 66.93548387%;
  padding: 0 1.6129%;
}
.app-wrapper .block .title h4 {
  font-size: clamp(14px, 1.25vw, 24px);
  color: #333;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 1em;
}
.app-wrapper .block .title h4 a {
  color: inherit;
}
.app-wrapper .block .title p {
  font-size: clamp(12px, 1.1vw, 18px);
  color: #333;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-bottom: 1.3888889em;
}
.app-wrapper .block .title .more {
  display: block;
  font-size: clamp(14px, 1.1vw, 18px);
  color: #1460AB;
  border: 1px solid #1460AB;
  line-height: 2.1111;
  padding: 0 1em;
  width: 7.7777778em;
  text-align: center;
  border-radius: 4px;
  margin: 0 0 0 auto;
  transition: all 0.5s;
}
.app-wrapper .block .title .more:hover {
  background-color: #1460AB;
  color: #fff;
}
.app-wrapper .block:hover .picture .pic img {
  scale: 1.05;
}
.app-wrapper .block:hover .title h4 {
  color: #1460AB;
}
.list-search {
  margin-bottom: 20px;
}
.list-search form {
  display: flex;
  justify-content: center;
  max-width: 100%;
  width: 620px;
  margin: 0 auto;
}
.list-search form input {
  flex: 1;
  font-size: clamp(14px, 1.2vw, 20px);
  padding: 0 0.5em;
  outline: none;
  border-width: 1px 0px 1px 1px;
  border-style: solid;
  border-color: rgba(153, 153, 153, 0.6);
  background-color: #F6F6F6;
  color: #333;
  height: 3em;
  transition: all 0.5s;
}
.list-search form input:focus {
  background-color: #fff;
}
.list-search form button {
  cursor: pointer;
  outline: none;
  font-size: clamp(16px, 1.35416667vw, 26px);
  color: #fff;
  background-color: #1460AB;
  width: 3.846154em;
  transition: all 0.5s;
}
.list-search form button:hover {
  filter: brightness(120%);
}
.service-wrapper .block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px 10px 10px;
  background-color: #F6F6F6;
  margin-bottom: 1.5873016%;
  transition: all 0.5s;
}
.service-wrapper .block .picture {
  width: 14.634146%;
}
.service-wrapper .block .picture .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 77.777778%;
}
.service-wrapper .block .picture .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.service-wrapper .block .title {
  /* width: 83.333333%; */
	width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service-wrapper .block .title .text {
  width: 82.4390244%;
}
.service-wrapper .block .title .text h4 {
  font-size: clamp(14px, 1.25vw, 24px);
  color: #666;
  line-height: 1.6667;
  /* margin-bottom: 0.41666667em; */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
	padding-left: 1em;
}
.service-wrapper .block .title .text h4 span {
  margin-left: 0.416667em;
}
.service-wrapper .block .title .text h5 {
  font-size: clamp(12px, 1.2vw, 20px);
  color: #333;
  line-height: 2.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.service-wrapper .block .title .more {
  width: 15.6097561%;
  font-size: clamp(12px, 1vw, 14px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.service-wrapper .block .title .more a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #1460AB;
  width: 5em;
  height: 5em;
  border-radius: 0.7142857em;
  border: 2px solid transparent;
  transition: all 0.5s;
  filter: contrast(0);
}
.service-wrapper .block .title .more a::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  border-radius: 50%;
  background-color: #1460AB;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0.5;
}
.service-wrapper .block .title .more a:hover {
  border-color: #1460AB;
}
.service-wrapper .block .title .more a:hover::after {
  transform: translate(-50%, -50%) scale(1.5);
  opacity: 0;
  transition: all 0.5s;
}
.service-wrapper .block .title .more img {
  width: 2.142857em;
  height: 2.142857em;
  object-fit: contain;
}
.service-wrapper .block:hover {
  box-shadow: 0px 4px 10px 0px rgba(20, 96, 171, 0.3);
}
.service-wrapper .block:hover .title .text h4 {
  color: #1460AB;
  font-weight: 700;
}
.service-wrapper .block:hover .title .text h5 {
  color: #1460AB;
}
.service-wrapper .block:hover .title .more a {
  filter: contrast(1);
}
.news-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.news-wrapper .block {
  width: 31.74603175%;
  padding: 10px;
  border: 1px solid rgba(153, 153, 153, 0.4);
  transition: all 0.5s;
  margin-bottom: 2.3809524%;
}
.news-wrapper .block .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 59.868421%;
}
.news-wrapper .block .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.news-wrapper .block .title {
  padding: 10px;
}
.news-wrapper .block .title h4 {
  font-size: clamp(14px, 1.25vw, 24px);
  color: #333;
  font-weight: 700;
  line-height: 1.6667;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.416667em;
}
.news-wrapper .block .title p {
  font-size: clamp(12px, 1.1vw, 18px);
  color: #666;
  line-height: 1.6667;
  height: 5.0001em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-bottom: 0.55556em;
}
.news-wrapper .block .title h5 {
  font-size: clamp(12px, 1.1vw, 18px);
  color: #666;
  line-height: 1.6667;
	text-align: right;
}
.news-wrapper .block .title a {
  color: inherit;
}
.news-wrapper .block:hover {
  border-color: #1460AB;
}
.news-wrapper .block:hover .pic img {
  scale: 1.05;
}
.news-wrapper .block:hover .title h4,
.news-wrapper .block:hover .title h5,
.news-wrapper .block:hover .title p {
  color: #1460AB;
}
.news-detail {
  max-width: 920px;
  margin: 0 auto;
}
.news-detail .title {
  text-align: center;
  margin-bottom: 3%;
}
.news-detail .title h3 {
  font-size: clamp(18px, 1.5625vw, 30px);
  color: #333;
  font-weight: 700;
  line-height: 1.6667;
  margin-bottom: 0.466667em;
}
.news-detail .title h5 {
  font-size: clamp(12px, 1.1vw, 18px);
  color: #999;
}
.news-detail article {
  font-size: clamp(14px, 1.1vw, 18px);
  color: #666;
  line-height: 2.2222;
}
.news-detail .article-tab {
  font-size: clamp(14px, 1.1vw, 18px);
  color: #999;
  padding-top: 2%;
  margin-top: 3%;
  border-top: 1px solid #eee;
}
.news-detail .article-tab p {
  transition: all 0s;
}
.news-detail .article-tab a {
  color: inherit;
  transition: all 0.5s;
}
.news-detail .article-tab a:hover {
  color: #1460AB;
}
.about-intro .title {
  font-size: clamp(18px, 1.5625vw, 30px);
  color: #333;
  font-weight: 700;
  line-height: 1.6667;
  margin-bottom: 0.3333em;
  text-align: center;
}
.about-intro .brief {
  font-size: clamp(14px, 1.2vw, 20px);
  color: #333;
  line-height: 2;
  text-indent: 2em;
  padding: 0 1.5873%;
}
.about-intro .brief b,
.about-intro .brief strong {
  font-weight: 700;
}
.about-intro .brief p {
  margin-bottom: 0.5em;
}
.about-intro .picture {
  float: right;
  width: 50%;
  margin: 0 0 2% 3.1746%;
}
.about-intro .picture .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 63.4920635%;
}
.about-intro .picture img {
  display: block;
  width: 100%;
}
.dev-history {
  padding: 1.5873016% 11.904762% 1.5873016% 3.1746%;
}
.dev-history .block {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3.968254%;
}
.dev-history .block .date {
  width: 15.88785047%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.dev-history .block .date h3 {
  position: relative;
  font-size: clamp(14px, 1.25vw, 24px);
  color: #fff;
  font-weight: 700;
  line-height: 2.083333;
  background-color: #1460AB;
  width: 5.416667em;
  text-align: center;
}
.dev-history .block .date h3::after {
  position: absolute;
  display: block;
  width: 2.5em;
  height: 2px;
  background-color: #1460AB;
  content: "";
  right: 0;
  top: 50%;
  transform: translate(calc(100% + 1.66667em), -50%);
}
.dev-history .block .date .line {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
.dev-history .block .date .line::before,
.dev-history .block .date .line::after {
  display: block;
  content: "";
  width: 1px;
  flex: 1;
  background-color: #1460AB;
  margin: 10px 0;
}
.dev-history .block .date em {
  display: block;
  font-size: clamp(14px, 1.25vw, 24px);
  width: 1em;
  height: 1em;
  border-radius: 50%;
  border: 1px solid #1460AB;
  background-color: #1460AB;
  box-shadow: inset 0 0 0 2px #fff, 0px 0px 0.83333em 0px #1460AB;
}
.dev-history .block .text {
  width: 71.962617%;
  background-color: #F6F6F6;
  padding: 1.86915888%;
}
.dev-history .block .text .title {
  font-size: clamp(14px, 1.25vw, 24px);
  padding-bottom: 0.4166667em;
  border-bottom: 1px solid rgba(153, 153, 153, 0.4);
  margin-bottom: 0.83333em;
}
.dev-history .block .text .title h4 {
  color: #1460AB;
  line-height: 1.25;
  padding-left: 1.25em;
  border-left: 0.166667em solid #1460AB;
}
.dev-history .block .text .wrapper {
  display: flex;
  justify-content: space-between;
}
.dev-history .block .text .wrapper .brief {
  width: 69.8630137%;
  font-size: clamp(12px, 1.1vw, 18px);
  color: #666;
  line-height: 1.6667;
}
.dev-history .block .text .wrapper .picture {
  width: 27.39726%;
}
.dev-history .block .text .wrapper .picture .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 50%;
}
.dev-history .block .text .wrapper .picture .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.dev-history .block:hover .text .wrapper .picture .pic img {
  scale: 1.05;
}
.organization img {
  display: block;
  width: 100%;
}
.honor-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.honor-list .block {
  width: 23.80952381%;
  margin-bottom: 1.5873016%;
}
.honor-list .block .pic {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 133.33333%;
}
.honor-list .block .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.5s;
}
.honor-list .block .pic:hover img {
  transform: translateY(-2px);
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.3));
}
.online-message {
  max-width: 800px;
  margin: 0 auto;
}
.online-message .title {
  text-align: center;
  margin-bottom: 3%;
}
.online-message .title h3 {
  font-size: clamp(18px, 1.5625vw, 30px);
  color: #333;
  font-weight: 700;
  line-height: 1.6667;
  margin-bottom: 0.466667em;
}
.online-message .title h5 {
  font-size: clamp(12px, 1.1vw, 18px);
  color: #999;
}
.online-message form input,
.online-message form textarea {
  width: 100%;
  height: 2.7777778em;
  font-size: clamp(14px, 1.1vw, 18px);
  outline: none;
  background-color: #F6F6F6;
  border: 1px solid rgba(4, 94, 206, 0.1);
  border-radius: 4px;
  color: #000;
  padding: 0 1.111111em;
  transition: all 0.5s;
  margin-bottom: 2.5%;
}
.online-message form input::placeholder,
.online-message form textarea::placeholder {
  color: #666;
}
.online-message form input:focus,
.online-message form textarea:focus {
  border-color: #1460AB;
}
.online-message form textarea {
  height: 12.777778em;
  padding: 0.8888889em 1.111111em;
}
.online-message form button {
  font-size: clamp(14px, 1.1vw, 18px);
  color: #fff;
  font-weight: 700;
  display: block;
  border-radius: 4px;
  background-color: #1460AB;
  height: 2.77778em;
  padding: 0 1.5em;
  min-width: 8.8888889em;
  border: 1px solid transparent;
  transition: all 0.5s;
  cursor: pointer;
  margin: 0 auto;
}
.online-message form button:hover {
  background-color: #fff;
  border-color: #1460AB;
  color: #1460AB;
}
.contact-info {
  background-color: #fff;
  border: 1px solid rgba(153, 153, 153, 0.4);
  box-shadow: 0px 4px 10px 0px rgba(102, 102, 102, 0.3);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1480px;
  margin: 0 auto 2.5%;
  padding: 5%;
  font-size: clamp(10px, 1.2vw, 20px);
  border-radius: 1em;
}
.contact-info .lt {
  width: 37.121212%;
  font-size: clamp(14px, 1.25vw, 24px);
  line-height: 1.6667;
}
.contact-info .lt p {
  margin-bottom: 0.416667em;
}
.contact-info .lt img {
  max-width: 8.333333em;
}
.contact-info .rt {
  width: 60.37878788%;
}
.contact-info .rt .map {
  width: 100%;
  height: 100%;
}
.contact-info .rt .map iframe {
  display: block;
  width: 100%;
  height: 100%;
}
.sale-info {
  background-color: #fff;
  border: 1px solid rgba(153, 153, 153, 0.4);
  box-shadow: 0px 4px 10px 0px rgba(102, 102, 102, 0.3);
  max-width: 1480px;
  margin: 0 auto 2.5%;
  padding: 1.25% 10% 1.875%;
  font-size: clamp(10px, 1.2vw, 20px);
  border-radius: 1em;
}
.sale-info .index-title h3 {
  font-size: clamp(20px, 1.25vw, 24px);
  line-height: 2.0833;
}
.sale-info .wrapper .block {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(12px, 1.2vw, 20px);
  color: #333;
  transition: all 0.5s;
  border-radius: 1.5em;
  margin-bottom: 2.1097%;
}
.sale-info .wrapper .block .lt {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40%;
  text-align: center;
  min-height: 3em;
  background-color: #F6F6F6;
  border-radius: 1.5em;
  padding: 0 0.5em;
  transition: all 0.5s;
}
.sale-info .wrapper .block .lt img {
  margin-right: 0.5em;
  transition: all 0.5s;
}
.sale-info .wrapper .block .mid {
  width: 15.7894737%;
}
.sale-info .wrapper .block .mid img {
  transition: all 0.5s;
}
.sale-info .wrapper .block .rt {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40%;
  text-align: center;
  min-height: 3em;
  background-color: #F6F6F6;
  border-radius: 1.5em;
  padding: 0 0.5em;
  transition: all 0.5s;
}
.sale-info .wrapper .block .rt img {
  margin-right: 0.5em;
  transition: all 0.5s;
}
.sale-info .wrapper .block:hover .lt,
.sale-info .wrapper .block:hover .rt {
  background-color: #1460AB;
  color: #fff;
  font-weight: 700;
}
.sale-info .wrapper .block:hover .lt img,
.sale-info .wrapper .block:hover .rt img {
  filter: contrast(0) brightness(200%);
}
.case-wrapper .block .pic img {
	object-fit: cover;
}
