@font-face {
  font-family: 'DIN-Medium';
  src: url('../fonts/DIN-Medium.otf');
}
:root {
  --Noto-Sans-SC: 'Noto Sans SC', sans-serif;
  --Roboto: 'Roboto', sans-serif;
  --Abel: 'Abel', sans-serif;
  --Barlow-Condensed: 'Barlow Condensed', sans-serif;
  --Din: 'DIN-Medium', sans-serif;
}
h1,
h2,
h3,
h4,
h5,
p {
  transition: all 0.5s;
}
a {
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
  transition: all 0.5s;
}
html,
body {
  /*scroll-behavior: smooth;*/
}
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%;
}
.container {
  max-width: 1400px;
  width: 85%;
  margin: 0 auto;
}
.blank {
  margin: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  min-height: 0 !important;
}
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 6, 26, 0.19);
  z-index: 99;
  transition: all 0.5s;
}
header .container {
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header-blank {
  width: 18.36%;
}
header .lv1 {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .lv1 > li a {
  color: #333;
  font-size: 16px;
}
header .lang_search {
  display: flex;
  align-items: center;
  margin-left: 7.86%;
}
header .lang_search .lang {
  display: flex;
  align-items: center;
  position: relative;
}
header .lang_search .lang img {
  margin-right: 7px;
}
header .lang_search .lang a {
  color: #666;
  font-size: 16px;
}
header .lang_search .lang i {
  color: #999;
}
header .lang_search .lang ul {
  position: absolute;
  width: 100%;
  top: 150%;
  left: 0;
  background-color: #fff;
  box-shadow: 0 1px 4px rgba(0, 6, 26, 0.19);
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
}
header .lang_search .lang ul li {
  text-align: center;
  border-bottom: 1px solid #cdcdcd;
}
header .lang_search .lang ul li:last-of-type {
  border-bottom: 0;
}
header .lang_search .lang:hover ul {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
header .lang_search #searchIcon {
  cursor: pointer;
}
.inner-header {
  background-color: #fff;
}
.inner-header .header .lv1 > li a {
  color: #333;
}
.inner-header .header .lv1 .search .lang a {
  color: #333;
}
.inner-header .header .lv1 .search .lang .act {
  color: #326295;
}
.inner-header .header .lv1 .search form input {
  color: #333;
  border-color: #666;
}
.inner-header .header .lv1 .search form input::placeholder {
  color: #666;
}
.inner-header .header .lv1 .search form input:focus {
  border-color: rgba(0, 0, 0, 0.2);
}
.header-fixed {
  position: fixed;
  animation: top-bottom 0.8s ease-in-out;
  top: 0;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2), 0 10px 15px rgba(0, 0, 0, 0.1);
}
@keyframes top-bottom {
  0% {
    transform: translate(0, -100%);
  }
  100% {
    transform: translate(0, 0);
  }
}
.box {
  width: 100%;
  text-align: center;
  margin: 5.7143% 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.pagination {
  display: flex !important;
  text-align: center;
  justify-content: center;
  flex-wrap: wrap;
}
.pagination > li a {
  display: block;
  font-size: 12px;
  padding: 0.5px 9px;
  border: 1px solid #e7e7e7;
  background-color: #fff;
  margin: 3px 5px;
  color: #999;
  transition: all 0.5s;
}
.pagination .active a {
  color: #fff;
  background-color: #002a5e;
  border: 1px solid transparent;
}
.pagination .active a:hover {
  color: #fff;
}
.pagination li a:hover {
  color: #002a5e;
}
.pagination .btn a {
  background-color: #eee;
}
.pagination .disabled a {
  color: #ccc !important;
  cursor: not-allowed;
  background-color: #fcfcfc;
}
.box .total {
  color: #999;
  margin-left: 10px;
  font-size: 12px;
}
.index-banner .swiper-slide {
  position: relative;
}
.index-banner .swiper-slide img {
  display: block;
  width: 100%;
  min-height: 230px;
  object-fit: cover;
}
.modal-mask {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  top: 0;
  left: 0;
}
.modal-mask .modal {
  background-color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 94%;
  max-width: 1400px;
  border-radius: 10px;
}
.modal-mask .search-modal form {
  padding: 30px;
  display: flex;
}
.modal-mask .search-modal form input {
  flex: 1;
  padding: 0 20px;
  height: 50px;
  border-radius: 8px 0 0 8px;
  border: 1px solid #ccc;
  outline: none;
  color: #666;
  font-size: 14px;
}
.modal-mask .search-modal form button {
  background-color: #f5f5f5;
  width: 80px;
  height: 50px;
  border: 1px solid #ccc;
  border-left: 0px;
  outline: none;
  cursor: pointer;
  border-radius: 0 8px 8px 0;
}
.tools-bar {
  position: fixed;
  top: 50%;
  right: 14px;
  background-color: #fff;
  border-radius: 8px;
  z-index: 99;
  padding: 17px 15px 19px 17px;
  box-shadow: 0 1px 4px rgba(0, 6, 26, 0.19);
}
.tools-bar ul li {
  text-align: center;
  position: relative;
  padding: 20px 0;
  border-bottom: 1px solid #ccc;
  cursor: pointer;
}
.tools-bar ul li > img {
  transition: all 0.5s;
}
.tools-bar ul li:last-of-type {
  padding-bottom: 0;
  border-bottom: 0;
}
.tools-bar ul li:first-of-type {
  padding-top: 0;
}
.tools-bar ul li .tip {
  position: absolute;
  background-color: #fff;
  transition: all 0.5s;
  box-shadow: 0 1px 4px rgba(0, 6, 26, 0.19);
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  opacity: 0;
  visibility: hidden;
  border-radius: 5px;
  padding: 10px;
  color: #004190;
  font-size: 14px;
  white-space: nowrap;
}
.tools-bar ul li .tip img {
  min-width: 110px;
  width: 110px;
  height: 110px;
}
.tools-bar ul li:hover {
  z-index: 1;
}
.tools-bar ul li:hover > img {
  filter: brightness(50%);
}
.tools-bar ul li:hover .tip {
  opacity: 1;
  right: 100%;
  visibility: visible;
}
.index-title {
  text-align: center;
}
.index-title h3 {
  display: inline-block;
  position: relative;
  font-size: 36px;
  color: #333;
  z-index: 1;
}
.index-title h3::before {
  position: absolute;
  content: attr(title);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  z-index: -1;
  color: rgba(51, 51, 51, 0.1);
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
}
.index-title h3::after {
  position: absolute;
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  background-color: #004190;
  left: 50%;
  transform: translate(-50%, 0);
  margin-top: 7px;
}
.index-prod {
  margin: 3.90625% 0 4.6875%;
}
.index-prod .index-prod-tab {
  display: flex;
  justify-content: space-between;
  width: 1124px;
  max-width: 100%;
  margin: 6.4286% auto 0;
}
.index-prod .index-prod-tab li {
  width: 15.125%;
}
.index-prod .index-prod-tab li a {
  display: block;
  width: 100%;
  line-height: 50px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  border: 1px solid #ccc;
  font-size: 16px;
  color: #999;
  padding: 0 15px;
}
.index-prod .index-prod-tab li a:hover {
  border-color: #004190;
  color: #004190;
}
.index-prod .index-prod-tab .active a {
  color: #fff !important;
  background-color: #004190;
  border: 1px solid transparent;
}
.index-prod .index-prod-container {
  position: relative;
  overflow: hidden;
  margin-top: 5%;
}
.index-prod .index-prod-container .index-prod-wrapper {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  top: 100%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, 0) scale(0.75);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  transition: all 1s;
  z-index: -1;
}
.index-prod .index-prod-container .index-prod-wrapper .block {
  width: 32.143%;
  margin-bottom: 2.857143%;
}
.index-prod .index-prod-container .index-prod-wrapper .block .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 71.33333%;
  background-color: #e8eaf3;
}
.index-prod .index-prod-container .index-prod-wrapper .block .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: darken;
}
.index-prod .index-prod-container .index-prod-wrapper .block .pic .mask {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 65, 144, 0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  top: 100%;
  transition: all 0.5s;
}
.index-prod .index-prod-container .index-prod-wrapper .block .pic .mask span {
  display: inline-block;
  font-size: 24px;
  color: #fff;
  position: relative;
  padding: 6px 0 4px;
}
.index-prod .index-prod-container .index-prod-wrapper .block .pic .mask span::before,
.index-prod .index-prod-container .index-prod-wrapper .block .pic .mask span::after {
  position: absolute;
  content: "";
  display: block;
  width: 0%;
  left: 50%;
  transform: translate(-50%, 0);
  height: 1px;
  background-color: #fff;
  transition: all 0.5s;
}
.index-prod .index-prod-container .index-prod-wrapper .block .pic .mask span::before {
  top: 0;
}
.index-prod .index-prod-container .index-prod-wrapper .block .pic .mask span::after {
  bottom: 0;
}
.index-prod .index-prod-container .index-prod-wrapper .block .pic:hover .mask {
  opacity: 1;
  top: 0;
}
.index-prod .index-prod-container .index-prod-wrapper .block .pic:hover .mask span::before,
.index-prod .index-prod-container .index-prod-wrapper .block .pic:hover .mask span::after {
  width: 100%;
  transition-delay: 0.3s;
}
.index-prod .index-prod-container .active {
  position: relative;
  visibility: visible;
  opacity: 1;
  top: 0;
  z-index: 1;
  transform: translate(-50%, 0) scale(1);
}
.index-about {
  position: relative;
  background: url(../images/index-about-bg.jpg) no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 6.25% 0 8.3333%;
}
.index-about::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 30, 103, 0.8);
  z-index: 1;
}
.index-about .index-title {
  position: relative;
  z-index: 1;
  margin-bottom: 3.57143%;
}
.index-about .index-title h3 {
  color: #fff;
}
.index-about .index-title h3::before {
  color: rgba(255, 255, 255, 0.2);
}
.index-about .index-title h3::after {
  background-color: #fff;
}
.index-about .index-intro {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 15px;
  text-align: justify;
  text-align-last: center;
}
.index-about .more {
  position: relative;
  z-index: 1;
  margin: 6.4286% auto 0;
  display: block;
  width: 170px;
  line-height: 50px;
  border: 1px solid #fff;
  text-align: center;
  color: #fff;
}
.index-about .more:hover {
  background-color: #fff;
  color: #004190;
}
.index-about .index-data {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 6.57143% 0 0;
}
.index-about .index-data .block {
  width: 25%;
  position: relative;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.6);
}
.index-about .index-data .block:last-of-type {
  border-right: 0;
}
.index-about .index-data .block h2 {
  font-size: 18px;
  color: #fff;
  line-height: 1.4;
}
.index-about .index-data .block h2 span {
  font-size: 48px;
  font-weight: 500;
  font-family: var(--Din);
}
.index-about .index-data .block h5 {
  font-size: 16px;
  color: #fff;
  line-height: 1.4;
}
.index-news {
  margin: 4.375% 0 5.521%;
}
.index-news .index-title {
  margin-bottom: 7.286%;
}
.index-news .index-news-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.index-news .index-news-wrapper .lt {
  width: 35.7143%;
}
.index-news .index-news-wrapper .lt .row {
  padding: 12% 10.4% 8% 8.8%;
  background-color: #f4f4f4;
  transition: all 0.5s;
}
.index-news .index-news-wrapper .lt .row h5 {
  font-size: 14px;
  color: #999;
}
.index-news .index-news-wrapper .lt .row h4 {
  font-size: 20px;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.6;
  margin-bottom: 12px;
}
.index-news .index-news-wrapper .lt .row p {
  font-size: 14px;
  color: #666;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 3.6em;
  line-height: 1.8;
}
.index-news .index-news-wrapper .lt .row em {
  display: inline-block;
  width: 31px;
  height: 31px;
  background: url(../images/index-news-arrow1.png) no-repeat;
  background-size: contain;
  margin-top: 11.4796%;
  transition: all 0.5s;
}
.index-news .index-news-wrapper .lt .row:hover {
  background-color: #004190;
}
.index-news .index-news-wrapper .lt .row:hover h5 a {
  color: #fff;
}
.index-news .index-news-wrapper .lt .row:hover h4 a {
  color: #fff;
}
.index-news .index-news-wrapper .lt .row:hover p a {
  color: #fff;
}
.index-news .index-news-wrapper .lt .row:hover em {
  filter: grayscale(1) brightness(200%);
}
.index-news .index-news-wrapper .rt {
  width: 61.4286%;
  background-color: #f4f4f4;
  padding: 6.07143% 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.index-news .index-news-wrapper .rt .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5.11628% 0 6.7442%;
}
.index-news .index-news-wrapper .rt .row .date {
  text-align: center;
  padding-right: 5.6977%;
  margin-right: 5%;
  border-right: 1px solid #b5b7b9;
  white-space: nowrap;
}
.index-news .index-news-wrapper .rt .row .date h2 {
  font-size: 54px;
  color: #004190;
  line-height: 1.1;
}
.index-news .index-news-wrapper .rt .row .date h5 {
  font-size: 14px;
  color: #999;
}
.index-news .index-news-wrapper .rt .row .title h4 {
  font-size: 20px;
  color: #333;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  margin-bottom: 8px;
}
.index-news .index-news-wrapper .rt .row .title p {
  font-size: 14px;
  color: #666;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 3.6em;
  line-height: 1.8;
}
.index-news .index-news-wrapper .rt .row em {
  display: inline-block;
  width: 47px;
  height: 47px;
  transition: all 0.5s;
  background: url(../images/index-news-arrow1.png) no-repeat;
  background-size: cover;
  margin-left: 70px;
}
.index-news .index-news-wrapper .rt .row:hover em {
  background-image: url(../images/index-news-arrow2.png);
}
.index-news .more {
  display: block;
  width: 170px;
  line-height: 50px;
  text-align: center;
  border: 1px solid #004190;
  color: #004190;
  margin: 5.5% auto 0;
}
.index-news .more:hover {
  color: #fff;
  background-color: #004190;
}
.index-partner {
  position: relative;
  background: url(../images/index-partner-bg.jpg) no-repeat;
  padding: 4.7916667% 0 4.63542%;
  background-attachment: fixed;
}
.index-partner::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 50, 87, 0.75);
}
.index-partner .index-title {
  margin-bottom: 7.5%;
}
.index-partner .index-title h3 {
  color: #fff;
}
.index-partner .index-title h3::before {
  color: rgba(255, 255, 255, 0.1);
}
.index-partner .index-title h3::after {
  background-color: #fff;
}
.index-partner .partner-swiper {
  position: relative;
  z-index: 1;
  height: 440px;
  padding: 30px;
  background-color: #fff;
  border-radius: 10px;
}
.index-partner .partner-swiper .swiper {
  width: 100%;
  height: 100%;
  padding: 10px;
}
.index-partner .partner-swiper .swiper-slide {
  height: calc((100% - 30px) / 3);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
}
.index-partner .partner-swiper .swiper-slide img {
  max-width: 90%;
  max-height: 90%;
  transition: all 0.5s;
}
.index-partner .partner-swiper .swiper-slide:hover {
  box-shadow: 0 2px 5px rgba(0, 6, 26, 0.19);
  transform: translate(0, -3px);
}
.index-partner .partner-swiper .swiper-slide:hover img {
  transform: scale(0.85);
}
footer {
  background-color: #00216f;
}
footer .footer-top {
  padding: 4.4271% 0 3.38542%;
}
footer .footer-top .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer .footer-top .lt .logo {
  max-width: 251px;
  margin-bottom: 60px;
}
footer .footer-top .lt .logo img {
  filter: grayscale(1) brightness(500%);
}
footer .footer-top .lt ul {
  display: flex;
  justify-content: space-around;
}
footer .footer-top .lt ul li {
  position: relative;
  text-align: center;
  cursor: pointer;
}
footer .footer-top .lt ul li p {
  font-size: 14px;
  color: #fff;
  margin-top: 4px;
}
footer .footer-top .lt ul li .tip {
  position: absolute;
  padding: 10px 10px;
  border-radius: 5px;
  background-color: #fff;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, 0%);
  color: #004190;
  white-space: nowrap;
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 10;
}
footer .footer-top .lt ul li .tip img {
  min-width: 110px;
  width: 110px;
  height: 110px;
}
footer .footer-top .lt ul li:hover {
  z-index: 11;
}
footer .footer-top .lt ul li:hover .tip {
  visibility: visible;
  opacity: 1;
  bottom: 100%;
}
footer .footer-top .nav ul {
  display: flex;
  flex-wrap: wrap;
}
footer .footer-top .nav ul li {
  width: 50%;
  margin-bottom: 32px;
}
footer .footer-top .nav ul li a {
  color: #fff;
  font-size: 16px;
}
footer .footer-top .nav ul li a:hover {
  opacity: 0.75;
}
footer .footer-top .nav ul li:nth-child(even) {
  text-align: right;
}
footer .footer-top .info h5 {
  font-size: 16px;
  color: #fff;
  line-height: 1.8;
}
footer .footer-top .info h4 {
  font-size: 24px;
  color: #fff;
  line-height: 1.8;
  margin-bottom: 5px;
}
footer .footer-top .ewm {
  text-align: center;
}
footer .footer-top .ewm img {
  width: 110px;
  height: 110px;
}
footer .footer-top .ewm p {
  color: #fff;
  font-size: 14px;
  margin-top: 8px;
}
footer .footer-bt {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
footer .footer-bt .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  height: 80px;
}
footer .footer-bt .container p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}
footer .footer-bt .container p a {
  color: rgba(255, 255, 255, 0.8);
}
footer .footer-bt .container p a:hover {
  color: #fff;
}
.inner-banner {
  position: relative;
}
.inner-banner img {
  display: block;
  width: 100%;
  min-height: 180px;
  object-fit: cover;
}
.inner-banner .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 0);
  font-family: var(--Noto-Sans-SC);
}
.inner-banner .container h3 {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}
.inner-banner .container h5 {
  font-size: 20px;
  color: #fff;
  line-height: 1.4;
}
.bread-crumb {
  background-color: #f7f7f7;
}
.bread-crumb .container {
  display: flex;
  align-items: center;
  height: 70px;
}
.bread-crumb .container i {
  display: inline-block;
  font-size: 12px;
  color: #022e9f;
  vertical-align: middle;
  margin-right: 8px;
}
.bread-crumb .container p {
  font-size: 16px;
  color: #666;
  vertical-align: middle;
}
.inner-title {
  text-align: center;
  line-height: 1.4;
}
.inner-title h3 {
  font-size: 36px;
  color: #333;
}
.inner-title h5 {
  font-size: 24px;
  color: #999;
}
.inner-contacts {
  margin: 3.2292% 0 3.02083%;
}
.inner-contacts .inner-title {
  margin-bottom: 5.14286%;
}
.inner-contacts .contact-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 4.14286%;
}
.inner-contacts .contact-wrapper .block {
  width: 32.4286%;
  text-align: center;
  background-color: #f7f7f7;
  padding: 3.57143% 4.857143% 2.143%;
}
.inner-contacts .contact-wrapper .block em {
  display: inline-block;
  width: 77px;
  height: 77px;
  line-height: 77px;
  text-align: center;
  margin-bottom: 30px;
}
.inner-contacts .contact-wrapper .block em img {
  max-width: 100%;
  max-height: 100%;
}
.inner-contacts .contact-wrapper .block p {
  font-size: 18px;
  color: #333;
  line-height: 1.7;
}
.inner-contacts .map {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 35.7143%;
}
.inner-contacts .map iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}
.company-profile {
  padding: 5% 0 6.40625%;
}
.company-profile .inner-title {
  margin-bottom: 4.64286%;
}
.company-profile .profile-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background-color: #f4f5fb;
  position: relative;
}
.company-profile .profile-wrapper::before,
.company-profile .profile-wrapper::after {
  display: block;
  content: "";
  position: absolute;
  z-index: -1;
  width: 90px;
  height: 90px;
  background-color: #004190;
}
.company-profile .profile-wrapper::before {
  top: 0;
  left: 0;
  transform: translate(-15px, -15px);
}
.company-profile .profile-wrapper::after {
  bottom: 0;
  right: 0;
  transform: translate(15px, 15px);
}
.company-profile .profile-wrapper .lt {
  width: 43.2143%;
}
.company-profile .profile-wrapper .rt {
  width: 52.857143%;
  padding: 2% 3.07143% 2% 0;
}
.company-profile .profile-wrapper .rt img {
  max-width: 54%;
}
.company-profile .profile-wrapper .rt .brief {
  font-size: 15px;
  color: #666;
  line-height: 1.9;
  text-align: justify;
  margin-top: 4.01722%;
}
.quality-commitment {
  padding: 5.20833% 0 7.0833%;
  background-color: #f4f5fb;
}
.quality-commitment .inner-title {
  margin-bottom: 2.143%;
}
.quality-commitment .brief {
  font-size: 16px;
  color: #666;
  text-align: justify;
  text-align-last: center;
}
.quality-commitment .company-concept {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  width: 80%;
  margin: 4.286% auto 0;
}
.quality-commitment .company-concept .block {
  position: relative;
  width: 25%;
  text-align: center;
}
.quality-commitment .company-concept .block em {
  display: inline-block;
  width: 89px;
  height: 89px;
  line-height: 89px;
  margin-bottom: 17px;
}
.quality-commitment .company-concept .block em img {
  max-width: 100%;
  max-height: 100%;
}
.quality-commitment .company-concept .block p {
  font-size: 20px;
  color: #333;
}
.quality-commitment .company-concept .block::after {
  position: absolute;
  display: block;
  content: "";
  width: 1px;
  height: 73px;
  background-color: #ccc;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
}
.quality-commitment .company-concept .block:last-of-type::after {
  display: none;
}
.development {
  position: relative;
  background: url(../images/dev-bg.jpg) no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 3.75% 0 6.875%;
}
.development::before {
  display: block;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(22, 74, 146, 0.8);
}
.development .inner-title {
  position: relative;
  margin-bottom: 6.2143%;
  z-index: 1;
}
.development .inner-title h3 {
  color: #fff;
}
.development .inner-title h5 {
  color: #fff;
}
.development .dev-swiper {
  position: relative;
  padding: 0 6.07143% 0 7.143%;
}
.development .dev-swiper .swiper-slide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.development .dev-swiper .swiper-slide .picture {
  width: 27.57202%;
}
.development .dev-swiper .swiper-slide .picture .pic {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 72.254%;
}
.development .dev-swiper .swiper-slide .picture .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.development .dev-swiper .swiper-slide .date {
  font-size: 100px;
  font-weight: 500;
  font-family: var(--Din);
  color: #fff;
  line-height: 1;
  border-right: 1px solid #fff;
  padding-right: 4.286%;
}
.development .dev-swiper .swiper-slide .brief {
  width: 43.21%;
  font-size: 18px;
  color: #fff;
  text-align: justify;
}
.development .dev-swiper .swiper-button-next,
.development .dev-swiper .swiper-button-prev {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: #fff;
}
.development .dev-swiper .swiper-button-next::after,
.development .dev-swiper .swiper-button-prev::after {
  font-size: 18px;
  font-weight: 700;
  color: #005bac;
}
.development .dev-swiper .swiper-button-next {
  right: 0;
}
.development .dev-swiper .swiper-button-prev {
  left: 0;
}
.development .thumbSwiper {
  position: relative;
  padding: 15px;
  margin-top: 4.643%;
}
.development .thumbSwiper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #fff;
  left: 0;
}
.development .thumbSwiper .swiper-slide {
  padding-top: 18px;
  font-size: 30px;
  color: #fff;
  font-family: var(--Din);
  font-weight: 500;
  transition: all 0.5s;
  line-height: 70px;
  text-align: center;
  cursor: pointer;
}
.development .thumbSwiper .swiper-slide::before {
  display: block;
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  background-color: #fff;
  border-radius: 50%;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s;
}
.development .thumbSwiper .swiper-slide-thumb-active {
  font-size: 36px;
  font-weight: 700;
}
.development .thumbSwiper .swiper-slide-thumb-active::before {
  width: 20px;
  height: 20px;
}
.honor {
  margin: 5.364583% 0 6.09375%;
}
.honor .inner-title {
  margin-bottom: 7.357143%;
}
.honor .honor-swiper {
  position: relative;
}
.honor .honor-swiper .swiper-slide {
  position: relative;
  width: 45.07143%;
  height: 0;
  padding-bottom: 33.2143%;
}
.honor .honor-swiper .swiper-slide img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.honor .honor-swiper .swiper-pagination {
  position: relative;
  line-height: 1;
  bottom: 0;
  margin-top: 8.786%;
}
.honor .honor-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background-color: #005bac;
  margin: 0 21.5px;
}
.partner {
  background: url(../images/partner-bg.jpg) no-repeat;
  background-size: cover;
  padding: 4.6875% 0 5.3646%;
}
.partner .inner-title {
  margin-bottom: 3.4896%;
}
.partner .partner-swiper {
  max-width: 1600px;
  width: 94%;
  margin: 0 auto;
  height: 380px;
}
.partner .partner-swiper .swiper {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.partner .partner-swiper .swiper-slide {
  height: calc((100% - 50px) / 2);
  transform: translate(-50px, 0);
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 19px rgba(0, 42, 94, 0.22);
  transition: all 0.5s;
}
.partner .partner-swiper .swiper-slide img {
  max-width: 80%;
  max-height: 80%;
  transition: all 0.5s;
}
.partner .partner-swiper .swiper-slide:nth-child(even) {
  transform: translate(50px, 0);
}
.partner .partner-swiper .swiper-slide:hover {
  box-shadow: 0 4px 19px rgba(0, 42, 94, 0.22), 0 10px 30px rgba(0, 42, 94, 0.32);
}
.partner .partner-swiper .swiper-slide:hover img {
  transform: scale(0.85);
}
.news-list {
  margin: 3.125% 0 5.2083%;
}
.news-list .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f8f8f8;
  transition: all 0.5s;
  margin-bottom: 3.286%;
}
.news-list .row .picture {
  width: 29.786%;
}
.news-list .row .picture .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 49.4005%;
}
.news-list .row .picture .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.news-list .row .title {
  width: 49.57143%;
}
.news-list .row .title h3 {
  font-size: 19px;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-list .row .title p {
  font-size: 15px;
  color: #666;
  text-align: justify;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.news-list .row .date {
  text-align: center;
  padding: 0 6% 0 4%;
}
.news-list .row .date h2 {
  font-size: 53px;
  color: #999;
  font-weight: 700;
  line-height: 1;
}
.news-list .row .date h5 {
  font-size: 15px;
  color: #999;
}
.news-list .row:hover {
  background-color: #164a92;
}
.news-list .row:hover .picture .pic img {
  transform: scale(1.05);
}
.news-list .row:hover .title h3 a {
  color: #fff;
  font-weight: 700;
}
.news-list .row:hover .title p a {
  color: #fff;
}
.news-list .row:hover .date h2 {
  color: #fff;
}
.news-list .row:hover .date h5 {
  color: #fff;
}
.news-detail {
  margin: 3.2291667% 0 5.3125%;
}
.news-detail .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.news-detail .container main {
  width: 71.286%;
}
.news-detail .container main .news-detail-title {
  text-align: center;
  margin-bottom: 5.411%;
}
.news-detail .container main .news-detail-title h3 {
  font-size: 30px;
  line-height: 1.5;
  color: #333;
  margin-bottom: 0.5em;
}
.news-detail .container main .news-detail-title h5 {
  font-size: 14px;
  color: #999;
}
.news-detail .container main article {
  text-align: justify;
  font-size: 16px;
  color: #666;
}
.news-detail .container main .article-tab {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: 1px solid #dbdbdb;
  padding-top: 2.4286%;
  margin-top: 8.57143%;
}
.news-detail .container main .article-tab .lt {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.news-detail .container main .article-tab .lt p {
  max-width: 100%;
  display: inline-block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #666;
  opacity: 0.72;
  margin-bottom: 6px;
}
.news-detail .container main .article-tab .lt p:hover {
  color: #333;
  opacity: 1;
}
.news-detail .container main .article-tab .lt p:hover a {
  color: #333;
}
.news-detail .container main .article-tab .rt a {
  font-size: 15px;
  color: #0b2c78;
  border-bottom: 1px solid #0b2c78;
  padding-bottom: 10px;
}
.news-detail .container aside {
  width: 25.143%;
}
.news-detail .container aside .aside-block {
  background-color: #f7f7f7;
  padding: 14px 24px 23px 23px;
  border-radius: 12px;
  margin-bottom: 11px;
}
.news-detail .container aside .aside-block h3 {
  font-size: 18px;
  color: #0b2c78;
  font-weight: 700;
  margin-bottom: 12px;
}
.news-detail .container aside .latest-news .row {
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 8px;
  padding: 0 0 0 22px;
  margin-bottom: 13px;
}
.news-detail .container aside .latest-news .row .lt {
  width: calc(100% - 70px);
  padding: 15px 0 14px 0;
}
.news-detail .container aside .latest-news .row .lt h4 {
  font-size: 14px;
  color: #666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 3px;
}
.news-detail .container aside .latest-news .row .lt h5 {
  font-size: 11.4px;
  color: #999;
}
.news-detail .container aside .latest-news .row .rt {
  width: 63px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-left: 1px solid #e5e5e5;
}
.news-detail .container aside .latest-news .row:last-of-type {
  margin-bottom: 0;
}
.news-detail .container aside .follow-us .ewm {
  text-align: center;
}
.news-detail .container aside .follow-us .ewm p {
  font-size: 13.3px;
  color: #666;
  margin-top: 7px;
}
.prod-list {
  margin: 3.229167% 0 4.53125%;
}
.prod-list .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.prod-list .container aside {
  width: 250px;
}
.prod-list .container aside .aside-title {
  line-height: 70px;
  text-align: center;
  font-size: 30px;
  color: #fff;
  background-color: #164a92;
  margin-bottom: 5px;
}
.prod-list .container aside .aside-lv1 li {
  margin-bottom: 1px;
}
.prod-list .container aside .aside-lv1 li a {
  display: block;
  width: 100%;
  line-height: 60px;
  text-align: center;
  background-color: #f2f2f2;
  font-size: 16px;
  color: #333;
  padding: 0 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.prod-list .container aside .aside-lv1 li a:hover {
  color: #004190;
  opacity: 0.5;
}
.prod-list .container aside .aside-lv1 .active a {
  color: #fff !important;
  background-color: rgba(37, 104, 196, 0.5);
}
.prod-list .container main {
  width: calc(100% - 4.286% - 250px);
}
.prod-list .container main .prod-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.prod-list .container main .prod-wrapper .block {
  width: 32.1101%;
  margin-bottom: 2.857143%;
}
.prod-list .container main .prod-wrapper .block .pic {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 71.4286%;
  overflow: hidden;
  background-color: #e8eaf3;
}
.prod-list .container main .prod-wrapper .block .pic img {
  position: absolute;
  transition: all 0.5s;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: darken;
}
.prod-list .container main .prod-wrapper .block p {
  font-size: 20px;
  color: #333;
  font-family: var(--Noto-Sans-SC);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 4%;
}
.prod-list .container main .prod-wrapper .block:hover .pic img {
  transform: scale(1.05);
}
.prod-list .container main .intro-title {
  font-size: 24px;
  color: #333;
  font-weight: 700;
  font-family: var(--Noto-Sans-SC);
  line-height: 60px;
  background-color: #f2f2f2;
  padding: 0 27px;
  margin: 1.835% 0 2.385%;
}
.prod-list .container main .prod-intro {
  font-size: 16px;
  text-align: justify;
  font-family: var(--Noto-Sans-SC);
  color: #666;
}
.prod-list .container main .prod-table {
  font-family: var(--Noto-Sans-SC);
  margin-top: 2.56881%;
}
.prod-list .container main .prod-table table {
  border-collapse: collapse;
  width: 100%;
}
.prod-list .container main .prod-table table tr:first-child td,
.prod-list .container main .prod-table table th td {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  background-color: #4472c4;
  height: 65px;
  word-break: keep-all;
  padding: 0 5px;
}
.prod-list .container main .prod-table table tr td {
  width: 25%;
  font-size: 18px;
  color: #333;
  text-align: center;
  line-height: 1.5;
  border: 1px solid #fff;
  height: 46px;
  background-color: #e9ebf5;
  padding: 0 5px;
  word-break: break-all;
}
.prod-list .container main .prod-table table tr:nth-child(even) td {
  background-color: #cfd5ea;
}
.anchor-fixed {
  position: relative;
  top: -150px;
}