@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';
}
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: 80px;
  width: 100%;
}
.container {
  max-width: 1546px;
  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;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 120px;
}
header .logo {
  width: 27.9431%;
}
header .logo img {
  transition: all 0.5s;
  filter: contrast(0) brightness(200%);
}
header .lv1 {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  color: #ececec;
}
header .lv1 > li {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .lv1 > li a {
  color: #fff;
  font-size: 18px;
  font-family: Arial;
  transition: all 0.5s;
  text-transform: uppercase;
}
header .lv1 > li a:hover {
  text-decoration: underline !important;
}
header .lv1 > li:hover::after {
  width: 100%;
}
header .lv1 > li:hover .lv2 {
  opacity: 1;
  transform: translate(-50%, 0);
  visibility: visible;
}
header .lv1 .lang {
  color: #2f2f2f;
}
header .lv1 > .active a {
  font-weight: 700;
}
header .lv1 > .active a:hover {
  text-decoration: none !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: 0px 0 10px;
  visibility: hidden;
  opacity: 0;
}
header nav {
  width: 53.0401035%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-active {
  background-color: #fff;
}
.header-active .logo img {
  filter: contrast(1) brightness(100%);
}
.header-active .lv1 > li > a {
  color: #333;
}
.box {
  width: 100%;
  text-align: center;
  margin: 4.1397154% 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: 16px;
  width: 51px;
  line-height: 51px;
  background-color: #fff;
  margin: 5px 10px;
  color: #2e2e2e;
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(5, 48, 76, 0.1);
  transition: all 0.5s;
}
.pagination .active a {
  color: #fff;
  background-color: #0584d4;
  border: 1px solid transparent;
}
.pagination .active a:hover {
  color: #fff;
}
.pagination li a:hover {
  color: #0584d4;
}
.pagination .btn {
  margin: 0 29px;
}
.pagination .btn a {
  width: auto;
  white-space: nowrap;
  background-color: transparent;
  box-shadow: none;
  color: rgba(46, 46, 46, 0.3);
  font-weight: 700;
}
.pagination .btn i {
  margin: 0 20px;
}
.pagination .disabled {
  cursor: not-allowed;
}
.pagination .disabled a {
  color: #ccc !important;
  cursor: not-allowed;
  background-color: #fcfcfc;
  pointer-events: none;
}
.box .total {
  color: #999;
  margin-left: 10px;
  font-size: 12px;
}
.index-more {
  display: block;
  width: 167px;
  line-height: 50px;
  border-radius: 25px;
  font-size: 16px;
  text-align: center;
  color: #fff;
  border: 1px solid #fff;
  transition: all .5s;
}
.index-more img {
  margin-left: 13px;
}
.index-more:hover {
  color: #fff;
  transform: translateY(-5px);
}
.index-banner {
  height: 100vh;
}
.index-banner .swiper {
  width: 100%;
  height: 100%;
}
.index-banner .swiper .swiper-slide {
  position: relative;
}
.index-banner .swiper .swiper-slide-active h2 {
  animation: fadeInDown 2.5s;
}
.index-banner .swiper .swiper-slide-active h4 {
  animation: fadeInDown 1.5s;
}
.index-banner .swiper .swiper-slide-active a {
  animation: fadeInUp 2s;
}
.index-banner .banner-img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: cover;
}
.index-banner .container {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.index-banner .banner-text h2 {
  font-size: 52px;
  color: #fff;
  font-weight: 700;
}
.index-banner .banner-text h4 {
  font-size: 20px;
  color: #fff;
}
.index-banner .banner-text a {
  margin-top: 6.46831%;
}
.index-banner .banner-btn {
  position: absolute;
  width: 100%;
  z-index: 1;
  bottom: 10%;
  left: 50%;
  transform: translate(-50%, 0);
}
.index-banner .banner-btn .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.index-banner .banner-btn .swiper-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 60.15524%;
}
.index-banner .banner-btn .swiper-btn span {
  font-size: 24px;
  color: #fff;
  font-family: var(--Din);
}
.index-banner .banner-btn .swiper-pagination {
  position: relative;
  flex: 1;
  bottom: 0;
  margin: 0;
  display: flex;
  margin: 0 20px 0 18px;
}
.index-banner .banner-btn .swiper-pagination .swiper-pagination-bullet {
  flex: 1;
  border-radius: 0;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.5);
  margin: 0;
  position: relative;
  opacity: 1;
}
.index-banner .banner-btn .swiper-pagination .swiper-pagination-bullet::before {
  position: absolute;
  display: block;
  content: "";
  width: 0;
  height: 100%;
  background-color: #fff;
}
.index-banner .banner-btn .swiper-pagination .swiper-pagination-bullet::after {
  position: absolute;
  display: block;
  content: "";
  width: 2px;
  height: 8px;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  right: 0;
  transform: translate(0, -50%);
}
.index-banner .banner-btn .swiper-pagination .swiper-pagination-bullet:last-child::after {
  display: none;
}
.index-banner .banner-btn .swiper-pagination .swiper-pagination-bullet-active::before {
  animation: w2m 5s linear;
  width: 100%;
}
.index-banner .banner-btn .swiper-pagination .swiper-pagination-bullet-active::after {
  background-color: #fff;
}
@keyframes w2m {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.mouse-btn {
  width: 88px;
  line-height: 88px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  cursor: pointer;
  animation: bounce 2s infinite;
}
.index-title {
  position: relative;
  z-index: 1;
}
.index-title h3 {
  font-size: 40px;
  color: #011118;
  font-weight: 700;
}
.index-title h3::after {
  content: attr(title);
  position: absolute;
  z-index: -1;
  font-size: 1.9em;
  line-height: 1;
  color: rgba(1, 17, 24, 0.13);
  left: 0;
  top: 0;
  transform: translate(0, -30%);
  white-space: nowrap;
  font-family: var(--Noto-Sans-SC);
  font-weight: 900;
}
.index-prod {
  overflow: hidden;
  height: 100vh;
  background: url(../images/index-prod-bg.jpg) no-repeat;
  background-size: cover;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 0 0 9.791667%;
}
.index-prod .lt {
  padding-top: 120px;
  width: 21.65127%;
}
.index-prod .lt .index-title {
  margin-bottom: 6.145833vw;
}
.index-prod .lt .title {
  font-size: 24px;
  color: #011118;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 2.4479167vw;
}
.index-prod .lt .brief {
  font-size: 16px;
  color: rgba(1, 17, 24, 0.6);
  text-align: justify;
  line-height: 1.8;
  height: 18em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 10;
  overflow: hidden;
}
.index-prod .lt .more {
  display: block;
  width: 131px;
  color: #fff;
  text-align: center;
  font-size: 16px;
  line-height: 40px;
  border-radius: 20px;
  background-color: #0592d4;
  margin-top: 2em;
  transition: all 0.5s;
}
.index-prod .lt .more i {
  margin-left: 0.5em;
}
.index-prod .lt .more:hover {
  box-shadow: 0 2px 5px #0592d4;
  transform: translateY(-5px);
}
.index-prod .rt {
  position: relative;
  height: 100%;
  padding-top: 120px;
  width: 78.34873%;
  background: url(../images/index-prod-swiper-bg.png) no-repeat;
  background-position: right center;
  background-size: 45% 100%;
  display: flex;
  align-items: center;
}
.index-prod .rt .swiper .swiper-slide {
  width: 50%;
  margin-right: 5%;
  transform: scale(0.59);
}
.index-prod .rt .swiper .swiper-slide-active {
  transform: scale(0.9);
  transition: all 0.5s;
}
.index-prod .rt .swiper .swiper-slide-active .pic {
  box-shadow: 0 0 27px rgba(14, 31, 83, 0.03);
}
.index-prod .rt .swiper .swiper-slide-active p {
  opacity: 0;
}
.index-prod .rt .swiper-button-next {
  right: auto;
  left: 55%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}
.index-prod .rt .swiper-button-next::after {
  display: none;
}
.index-prod .rt .pic {
  position: relative;
  width: 100%;
  height: 0;
  padding: 50% 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 50%;
}
.index-prod .rt .pic img {
  position: absolute;
  max-width: 70%;
  max-height: 70%;
}
.index-prod .rt p {
  font-size: 30px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  line-height: 1.6;
  margin-top: 1em;
}
.index-about {
  height: 100vh;
  padding-top: 120px;
  background: url(../images/index-about-bg.jpg) no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.index-about .index-title {
  margin-bottom: 5.520833vw;
}
.index-about .index-title h3 {
  color: #fff;
}
.index-about .index-title h3 img {
  filter: contrast(0) brightness(200%);
}
.index-about .index-title h3::after {
  color: rgba(255, 255, 255, 0.13);
}
.index-about .brief {
  max-width: 587px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  font-size: 16px;
}
.index-about .index-more {
  margin-top: 5.20833vw;
}
.index-about .company-data {
  margin-top: 5.208333vw;
}
.company-data {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.company-data .block {
  text-align: center;
}
.company-data .block h4 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 0.5em;
}
.company-data .block h4 span {
  font-size: 48px;
  font-family: var(--Din);
}
.company-data .block p {
  font-size: 16px;
  color: #fff;
}
.company-data em {
  display: block;
  width: 2px;
  height: 99px;
  background-color: rgba(255, 255, 255, 0.8);
}
.company-data em:last-child {
  display: none;
}
.index-title-center {
  text-align: center;
}
.index-title-center h3::after {
  left: 50%;
  transform: translate(-50%, -30%);
}
.index-title-center em {
  position: relative;
  display: inline-block;
  width: 22px;
  height: 4px;
  background-color: #0592d4;
  border-radius: 2px;
  transform: translateY(-14px);
}
.index-title-center em::after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  background-color: #0592d4;
  border-radius: 50%;
  right: -4px;
  transform: translate(100%, 0);
}
.index-news {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  padding-top: 150px;
  background: url(../images/index-news-bg.jpg) no-repeat;
  background-size: cover;
}
.index-news .index-title {
  margin-bottom: 3%;
}
.index-news .wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.index-news .wrapper .block {
  transition: all 0.5s;
  width: 30.8642%;
}
.index-news .wrapper .block .pic {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 73.7981%;
  transition: all 0.5s;
}
.index-news .wrapper .block .pic img {
  position: absolute;
  transition: all 0.5s;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.index-news .wrapper .block .title {
  position: relative;
  z-index: 1;
  width: 100%;
  float: right;
  transition: all 0.5s;
}
.index-news .wrapper .block .title h4 {
  color: #333;
  font-size: 20px;
  margin: 1.1667em 0 0.6667em;
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.index-news .wrapper .block .title h4 a {
  color: inherit;
  transition: all 0s;
}
.index-news .wrapper .block .title p {
  font-size: 14px;
  color: #333;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 3.6em;
}
.index-news .wrapper .block .title p a {
  color: inherit;
  transition: all 0s;
}
.index-news .wrapper .block .title h5 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #000;
  margin-top: 1em;
  padding: 10px 0 9px;
}
.index-news .wrapper .block .title h5 span {
  color: inherit;
  transition: all 0s;
}
.index-news .wrapper .block .title h5 a {
  color: inherit;
  transition: all 0s;
  font-weight: 300;
}
.index-news .wrapper .block:hover {
  width: 44.1751%;
}
.index-news .wrapper .block:hover .pic {
  padding-bottom: 67.261%;
}
.index-news .wrapper .block:hover .title {
  background-color: #2778be;
  border-radius: 45px 0 0 0;
  width: 69.3597561%;
  padding: 21px 0 0 0;
  margin-top: -25%;
  margin-right: -4%;
}
.index-news .wrapper .block:hover .title h4 {
  color: #fff;
  padding: 0 30px 0 46px;
}
.index-news .wrapper .block:hover .title p {
  color: #fff;
  padding: 0 30px 0 46px;
}
.index-news .wrapper .block:hover .title h5 {
  color: #fff;
  background-color: #1164ac;
  padding: 10px 35px 9px;
  margin-top: 2.78em;
}
.index-news .wrapper:hover .block:not(:hover) {
  width: 25.58923%;
}
footer {
  font-family: var(--Noto-Sans-SC);
}
footer .footer-top {
  background-color: rgba(1, 25, 36, 0.96);
  padding: 2.8125% 0 2.34375%;
}
footer .footer-top .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer .footer-top h3 {
  font-size: 18px;
  color: #fff;
}
footer .footer-top .info {
  width: 425px;
  max-width: 100%;
}
footer .footer-top .info h3 {
    margin-bottom: 10px;
}
footer .footer-top .info .logo {
  width: 250px;
  margin-bottom: 15px;
}
footer .footer-top .info .logo img {
  filter: contrast(0) brightness(200%);
}
footer .footer-top .info address {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.43em;
  display: flex;
}
footer .footer-top .info address span {
  white-space: nowrap;
}
footer .footer-top .info ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 38px;
}
footer .footer-top .info ul li {
  position: relative;
  margin-right: 8px;
}
footer .footer-top .info ul li .tip {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -150%);
  transition: all .5s;
  visibility: hidden;
  opacity: 0;
  min-width: 100px;
}
footer .footer-top .info ul li .tip img {
  display: block;
  width: 100px;
  height: 100px;
}
footer .footer-top .info ul li .icon {
  transition: all 0.5s;
}
footer .footer-top .info ul li:hover .icon {
  filter: brightness(200%);
}
footer .footer-top .info ul li:hover .tip {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -120%);
}
footer .footer-top .nav {
  width: 425px;
  max-width: 100%;
  margin-top: 50px;
}
footer .footer-top .nav h3 {
  margin-bottom: 36px;
}
footer .footer-top .nav ul {
  display: flex;
  flex-wrap: wrap;
}
footer .footer-top .nav ul li {
  margin-right: 33px;
  color: rgba(255, 255, 255, 0.75);
}
footer .footer-top .nav ul li a {
  color: inherit;
}
footer .footer-top .nav ul li a:hover {
  text-decoration: underline !important;
}
footer .footer-top .nav ul li:last-child {
  margin-right: 0;
}
footer .footer-top .ewm {
  margin-top: 18px;
}
footer .footer-top .ewm h3 {
  margin-bottom: 36px;
}
footer .footer-top .ewm ul {
  display: flex;
  flex-wrap: wrap;
}
footer .footer-top .ewm ul li {
  margin-left: 66px;
  text-align: center;
}
footer .footer-top .ewm ul li:first-child {
  margin-left: 0;
}
footer .footer-top .ewm ul li img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
footer .footer-top .ewm ul li p {
  font-size: 14px;
  color: #fff;
  margin-top: 1em;
}
footer .footer-bt {
  background-color: #011924;
  text-align: center;
  color: #fff;
  font-size: 16px;
  line-height: 1.8;
  padding: 1.09375% 0;
}
footer .footer-bt a {
  color: #fff;
}
footer .footer-bt a:hover {
  text-decoration: underline !important;
}
.inner-banner {
  position: relative;
}
.inner-banner .banner-pic {
  position: relative;
}
.inner-banner .banner-img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.inner-banner .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.inner-banner .banner-text {
  text-align: center;
}
.inner-banner .banner-text h2 {
  font-size: 52px;
  color: #fff;
  font-weight: 700;
}
.inner-banner .banner-text h4 {
  font-size: 20px;
  color: #fff;
  text-transform: uppercase;
}
.inner-banner .scroll-down {
  position: absolute;
  left: 50%;
  bottom: 15%;
  transform: translate(-50%, 0);
}
.contact-us {
  background-color: #f6f9fb;
}
.purchase {
  padding: 6.041667% 0 5.416667%;
}
.purchase .index-title {
  margin-bottom: 1.1643%;
}
.purchase .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.purchase .wrapper .block {
  display: flex;
  flex-direction: column;
}
.purchase .wrapper .block h3 {
  font-size: 26px;
  color: #011118;
  font-weight: 700;
  margin-bottom: 1.231em;
}
.purchase .wrapper .block .card {
  flex: 1;
  background-color: #fff;
  box-shadow: 0 0 35px rgba(5, 48, 76, 0.15);
  border-radius: 16px;
}
.purchase .wrapper .offline {
  width: 18.111255%;
}
.purchase .wrapper .offline .card {
  padding: 58px 60px;
}
.purchase .wrapper .online {
  width: 26.520052%;
}
.purchase .wrapper .online .card {
  padding: 52px 50px 20px 66px;
}
.purchase .wrapper .online .card h5 {
  position: relative;
  font-size: 18px;
  color: rgba(1, 17, 24, 0.8);
  padding-left: 19px;
}
.purchase .wrapper .online .card h5::before {
  position: absolute;
  content: "";
  display: inline-block;
  vertical-align: middle;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 20px;
  background-color: #0584d4;
}
.purchase .wrapper .online .card p {
  font-size: 18px;
  color: rgba(1, 17, 24, 0.8);
  padding-left: 19px;
}
.purchase .wrapper .after-sale {
  width: 46.119017%;
}
.purchase .wrapper .after-sale .card {
  padding: 40px 50px 20px 65px;
}
.purchase .wrapper .after-sale .card h5 {
  position: relative;
  font-size: 18px;
  color: rgba(1, 17, 24, 0.8);
  padding-left: 19px;
}
.purchase .wrapper .after-sale .card h5::before {
  position: absolute;
  content: "";
  display: inline-block;
  vertical-align: middle;
  left: 0;
  top: 0.8em;
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  background-color: #0584d4;
}
.contact {
  padding-bottom: 5.8854167%;
}
.contact .index-title {
  margin-bottom: 2.393273%;
}
.contact .wrapper {
  box-shadow: 0 0 32px rgba(0, 11, 49, 0.13);
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.contact .wrapper .lt {
  width: 50%;
  padding: 3.622251% 4.527814%;
}
.contact .wrapper .lt h3 {
  font-size: 25px;
  color: #0584d4;
  font-weight: 700;
  margin-bottom: 11.058452%;
}
.contact .wrapper .lt h3::after {
  display: block;
  content: "";
  width: 50px;
  height: 3px;
  background-color: #0584d4;
  border-radius: 1.5px;
  margin-top: 0.72em;
}
.contact .wrapper .lt .row {
  display: flex;
  align-items: center;
  margin-bottom: 7.8989%;
}
.contact .wrapper .lt .row .icon {
  width: 66px;
  height: 66px;
  background-color: #0584d4;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-right: 19px;
}
.contact .wrapper .lt .row address {
  flex: 1;
  line-height: 1.6;
}
.contact .wrapper .lt .row address h4 {
  font-size: 20px;
  color: #011118;
  font-weight: 700;
}
.contact .wrapper .lt .row address p {
  font-size: 16px;
  color: rgba(1, 17, 24, 0.8);
  word-break: break-all;
}
.contact .wrapper .rt {
  width: 50%;
}
.contact .wrapper .rt iframe {
  width: 100%;
  height: 100%;
}
.recruit {
  padding: 6.041667% 0 6.8229167%;
  background-color: #f6f9fb;
  background-image: url(../images/recruit-bg.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center bottom;
}
.recruit .employee-style {
  margin-bottom: 7.503234%;
}
.recruit .employee-style .index-title {
  margin-bottom: 1.42303%;
}
.recruit .employee-style .style-tab {
  border-bottom: 1px solid #e7e7e7;
  margin-bottom: 4.786546%;
}
.recruit .employee-style .style-tab ul {
  display: flex;
  flex-wrap: wrap;
}
.recruit .employee-style .style-tab ul li {
  position: relative;
  cursor: pointer;
  font-size: 26px;
  font-weight: 700;
  color: rgba(1, 17, 24, 0.4);
  margin: 0 2em;
  padding-bottom: 0.769231em;
}
.recruit .employee-style .style-tab ul li::after {
  position: absolute;
  display: inline-block;
  content: "/";
  transform: translateX(2em);
  color: rgba(1, 17, 24, 0.4);
}
.recruit .employee-style .style-tab ul li:last-child::after {
  display: none;
}
.recruit .employee-style .style-tab ul .active {
  color: #011118;
}
.recruit .employee-style .style-tab ul .active::before {
  content: "";
  display: block;
  position: absolute;
  width: 50px;
  height: 5px;
  border-radius: 2.5px;
  background-color: #0584d4;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
}
.recruit .employee-style .style-wrapper .swiper {
  display: none;
}
.recruit .employee-style .style-wrapper .show {
  display: block;
}
.recruit .employee-style .swiper .swiper-slide {
  width: 53.0401035%;
  opacity: 0;
  transition: all 0.5s;
}
.recruit .employee-style .swiper .swiper-slide .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 63.41463%;
  border-radius: 16px;
}
.recruit .employee-style .swiper .swiper-slide .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recruit .employee-style .swiper .swiper-slide-prev,
.recruit .employee-style .swiper .swiper-slide-next {
  opacity: 1;
  filter: blur(3px);
}
.recruit .employee-style .swiper .swiper-slide-active {
  opacity: 1;
}
.recruit .employee-style .swiper .swiper-button-next,
.recruit .employee-style .swiper .swiper-button-prev {
  width: 51px;
  height: 51px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(5, 48, 76, 0.1);
  transition: all 0.5s;
}
.recruit .employee-style .swiper .swiper-button-next::after,
.recruit .employee-style .swiper .swiper-button-prev::after {
  font-size: 16px;
  font-weight: 700;
  color: #b2b2b2;
  transition: all 0.5s;
}
.recruit .employee-style .swiper .swiper-button-next:hover,
.recruit .employee-style .swiper .swiper-button-prev:hover {
  background-color: #0584d4;
  box-shadow: 0 0 10px rgba(5, 132, 212, 0.1);
}
.recruit .employee-style .swiper .swiper-button-next:hover::after,
.recruit .employee-style .swiper .swiper-button-prev:hover::after {
  color: #fff;
}
.recruit .join-us .index-title {
  margin-bottom: 3.0401035%;
}
.recruit .join-us .join-list .row {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 0 46px rgba(5, 48, 76, 0.1);
  padding: 1.9405% 2.58732% 2.199224%;
  margin-bottom: 2.58732%;
  cursor: pointer;
}
.recruit .join-us .join-list .row .title {
  font-size: 26px;
  color: #011118;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 1.841746%;
}
.recruit .join-us .join-list .row .info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.recruit .join-us .join-list .row .info .lt ul {
  display: flex;
  flex-wrap: wrap;
}
.recruit .join-us .join-list .row .info .lt ul li {
  font-size: 18px;
  color: rgba(1, 17, 24, 0.8);
  margin-right: 29px;
}
.recruit .join-us .join-list .row .info .lt ul li::after {
  display: inline-block;
  content: "";
  width: 1px;
  height: 12px;
  background-color: rgba(1, 17, 24, 0.2);
  transform: translateX(14px);
}
.recruit .join-us .join-list .row .info .lt ul li:last-child::after {
  display: none;
}
.recruit .join-us .join-list .row .info .rt {
  font-size: 16px;
  color: rgba(1, 17, 24, 0.8);
}
.recruit .join-us .join-list .row .info .rt i {
  color: #bfbfbf;
  margin-left: 20px;
}
.recruit .join-us .join-list .row .content {
  display: none;
  border-top: 1px solid #e7e7e7;
  margin-top: 1.90996%;
  padding-top: 2.5921%;
  font-size: 16px;
  color: rgba(1, 17, 24, 0.8);
}
.recruit .join-us .join-list .row .content h3 {
  font-size: 22px;
  color: #011118;
  font-weight: 700;
  margin-bottom: 0.5em;
}
.recruit .join-us .join-list .row .content p {
  margin-bottom: 0.5em;
}
.recruit .join-us .join-list .row .content .email {
  font-size: 15px;
  color: #fff;
  display: inline-block;
  background-color: #0584d4;
  line-height: 1.6;
  padding: 7px 24px 8px;
  margin-top: 2em;
  border-radius: 8px;
}
.news-list {
  position: relative;
  background-color: #f6f9fb;
  padding: 4.21875% 0 3.958333%;
}
.news-list .bg {
  position: absolute;
  width: 100%;
  z-index: 0;
}
.news-list .bg img {
  display: block;
  width: 100%;
}
.news-list .bg1 {
  top: 0;
}
.news-list .bg2 {
  bottom: 0;
}
.news-list .container {
  position: relative;
  z-index: 1;
}
.news-list .row {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.58732% 0;
  z-index: 1;
  transform-style: preserve-3d;
  perspective: 800px;
  margin-bottom: 1.2936611%;
}
.news-list .row .date {
  transition: all 0.5s;
}
.news-list .row .date h3 {
  font-size: 28px;
  color: #011118;
}
.news-list .row .date h3 span {
  font-size: 18px;
}
.news-list .row .picture {
  width: 27.16689%;
  transition: all 0.5s;
}
.news-list .row .picture .pic {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 64.2857143%;
  overflow: hidden;
  border-radius: 16px;
  transition: all 0.5s;
}
.news-list .row .picture .pic img {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.news-list .row .title {
  width: 55.6274256%;
  padding-right: 5.950841%;
  transition: all 0.5s;
}
.news-list .row .title h4 {
  font-size: 26px;
  color: #011118;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 5.208333%;
}
.news-list .row .title h4 a {
  color: inherit;
  transition: all 0s;
}
.news-list .row .title p {
  font-size: 18px;
  letter-spacing: 2px;
  color: rgba(46, 46, 46, 0.8);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-list .row .title p a {
  color: inherit;
  transition: all 0s;
}
.news-list .row .card {
  position: absolute;
  display: block;
  width: 74%;
  height: 100%;
  right: 0;
  background-color: #fff;
  z-index: -1;
  border-radius: 16px;
  box-shadow: 0 0 32px rgba(5, 48, 76, 0.24);
  transition: all 0.5s;
  opacity: 0;
  transform: translateY(5px);
}
.news-list .row:hover .date {
  transform: translateX(-5px);
}
.news-list .row:hover .picture {
  transform: translateZ(10px);
}
.news-list .row:hover .picture .pic {
  box-shadow: 0 5px 15px rgba(5, 48, 76, 0.24);
}
.news-list .row:hover .picture .pic img {
  transform: scale(1.05);
}
.news-list .row:hover .title {
  transform: translateX(-5px);
}
.news-list .row:hover .title h4 {
  color: #0584d4;
}
.news-list .row:hover .title p {
  color: #2e2e2e;
}
.news-list .row:hover .card {
  opacity: 1;
  transform: translateY(0);
}
.news-detail .title {
  text-align: center;
  margin-bottom: 3.234153%;
}
.news-detail .title h3 {
  font-size: 40px;
  color: #011118;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 1.1643%;
}
.news-detail .title h5 {
  font-size: 16px;
  color: rgba(1, 17, 24, 0.6);
  line-height: 1.6;
}
.news-detail article {
  background-color: #fff;
  box-shadow: 0 0 35px rgba(5, 48, 76, 0.15);
  padding: 8.4088% 5.49806% 7.4385511%;
  font-size: 18px;
  text-align: justify;
  color: rgba(1, 17, 24, 0.8);
}
.news-detail .article-tab {
  margin: 6.39535% 0 0;
}
.news-detail .article-tab p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
}
.news-detail .article-tab p:last-child {
  margin-bottom: 0;
}
.news-detail .article-tab p a {
  color: rgba(1, 17, 24, 0.6);
}
.news-detail .article-tab p a:hover {
  color: #0584d4;
}
.company-profile {
  padding: 6.041667% 0 0;
  background-color: #f6f9fb;
}
.company-profile .index-title {
  margin-bottom: 1.2936611%;
}
.company-profile .brief {
  max-width: 1376px;
  margin: 0 auto;
  font-size: 18px;
  color: rgba(1, 17, 24, 0.8);
}
.company-profile .picture {
  margin: 4.65718% auto 0;
  padding-bottom: 3.492885%;
  width: 940px;
  max-width: 100%;
}
.company-profile .picture .pic {
  position: relative;
  overflow: hidden;
  border-radius: 88px 8px 88px 8px;
  width: 100%;
  height: 0;
  padding-bottom: 63.8298%;
  box-shadow: 0 0 45px rgba(5, 48, 76, 0.1);
}
.company-profile .picture .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.company-profile .picture .shadow {
  width: 60%;
  margin: 4.6808511% auto 0;
}
.company-profile .picture .shadow img {
  display: block;
  width: 100%;
}
.inner-company-data {
  margin: 1.9791667% 0 2.864583%;
}
.inner-company-data .company-data .block h4 {
  color: #011118;
}
.inner-company-data .company-data .block p {
  color: rgba(1, 17, 24, 0.8);
}
.inner-company-data .company-data em {
  background-color: rgba(1, 17, 24, 0.2);
}
.company-culture {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.company-culture .lt {
  width: 50%;
  background: url(../images/company-culture-bg1.jpg) no-repeat;
  background-size: cover;
  padding: 7.8125% 4.0104167% 3% 9.791667%;
}
.company-culture .lt .index-title {
  margin-bottom: 8.75vw;
}
.company-culture .lt .index-title h3 {
  color: #fff;
}
.company-culture .lt .index-title h3 img {
  filter: contrast(0) brightness(200%);
}
.company-culture .lt .index-title h3::after {
  color: rgba(255, 255, 255, 0.13);
}
.company-culture .lt .brief {
  display: none;
  float: right;
  width: 353px;
  max-width: 100%;
  color: #fff;
  font-size: 18px;
  text-align: justify;
}
.company-culture .lt .brief h4 {
  font-size: 26px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.69em;
}
.company-culture .lt .show {
  display: block;
}
.company-culture .rt {
  width: 50%;
  background: url(../images/company-culture-bg2.jpg) no-repeat;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 10.20833% 9.791667% 8.4375% 0;
}
.company-culture .rt .block {
  width: 33.3333%;
  background-color: rgba(255, 255, 255, 0.2);
  text-align: center;
  padding: 1.927083vw 10px 2.6041667vw;
  cursor: pointer;
  transition: all 0.5s;
}
.company-culture .rt .block .icon {
  display: inline-block;
  width: 61px;
  height: 61px;
  margin-bottom: 1.041667vw;
}
.company-culture .rt .block .icon img {
  max-height: 100%;
}
.company-culture .rt .block h4 {
  font-size: 26px;
  color: #fff;
  font-weight: 700;
  line-height: 1.6;
}
.company-culture .rt .block h5 {
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.8;
}
.company-culture .rt .block:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
.company-culture .rt .active {
  background-color: #0584d4 !important;
}
.dev-history {
  padding: 5.9895833% 0 5.833333%;
  background: url(../images/dev-bg.png) no-repeat;
  background-size: cover;
  background-position: center bottom;
}
.dev-history .introSwiper {
  margin-bottom: 4.786546%;
}
.dev-history .introSwiper .swiper-slide {
  position: relative;
  padding: 5.50401035% 0;
}
.dev-history .introSwiper .swiper-slide::after {
  position: absolute;
  content: attr(title);
  font-size: 29.84375vw;
  font-family: var(--Din);
  color: rgba(5, 132, 212, 0.07);
  line-height: 1;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.dev-history .introSwiper .dev-content {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  border-radius: 16px;
  width: 822px;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}
.dev-history .introSwiper .dev-content .lt {
  width: 40.3893%;
}
.dev-history .introSwiper .dev-content .lt .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 86.956522%;
}
.dev-history .introSwiper .dev-content .lt .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dev-history .introSwiper .dev-content .rt {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3% 6.028882%;
}
.dev-history .introSwiper .dev-content .rt .title {
  font-size: 16px;
  color: #011118;
  line-height: 1.6;
  margin-bottom: 1.25em;
}
.dev-history .introSwiper .dev-content .rt .title span {
  font-family: var(--Din);
  font-size: 38px;
}
.dev-history .introSwiper .dev-content .rt .brief {
  font-size: 16px;
  color: rgba(1, 17, 24, 0.8);
  text-align: justify;
  line-height: 1.6;
}
.dev-history .thumb-wrapper {
  padding: 0 82px;
  position: relative;
}
.dev-history .thumb-wrapper .swiper-button-next,
.dev-history .thumb-wrapper .swiper-button-prev {
  width: 51px;
  height: 51px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(5, 48, 76, 0.1);
  transition: all 0.5s;
}
.dev-history .thumb-wrapper .swiper-button-next::after,
.dev-history .thumb-wrapper .swiper-button-prev::after {
  font-size: 16px;
  font-weight: 700;
  color: #b2b2b2;
  transition: all 0.5s;
}
.dev-history .thumb-wrapper .swiper-button-next:hover,
.dev-history .thumb-wrapper .swiper-button-prev:hover {
  background-color: #0584d4;
  box-shadow: 0 0 10px rgba(5, 132, 212, 0.1);
}
.dev-history .thumb-wrapper .swiper-button-next:hover::after,
.dev-history .thumb-wrapper .swiper-button-prev:hover::after {
  color: #fff;
}
.dev-history .thumb-wrapper .swiper-button-next {
  right: 0;
}
.dev-history .thumb-wrapper .swiper-button-prev {
  left: 0;
}
.dev-history .thumbSwiper .swiper-slide {
  text-align: center;
  font-size: 22px;
  font-family: var(--Din);
  color: rgba(1, 17, 24, 0.48);
  transition: all 0.5s;
  cursor: pointer;
}
.dev-history .thumbSwiper .swiper-slide-thumb-active {
  color: #0584d4;
}
.bread-crumb {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.bread-crumb .lt {
  width: 64.6875%;
  background-color: rgba(3, 116, 187, 0.8);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-height: 80px;
  padding: 0 3% 0 9.791667%;
}
.bread-crumb .lt .block {
  margin-right: 60px;
  font-size: 20px;
}
.bread-crumb .lt .block a {
  color: rgba(255, 255, 255, 0.8);
}
.bread-crumb .lt .block a:hover {
  color: #fff;
}
.bread-crumb .lt .block:last-child {
  margin-right: 0;
}
.bread-crumb .lt .active a {
  color: #fff;
}
.bread-crumb .rt {
  width: 35.3125%;
  background-color: rgba(0, 22, 36, 0.4);
  padding: 0 9.791667% 0 3%;
  color: #fff;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.bread-crumb .rt p {
  margin: auto 0;
  font-size: 18px;
  line-height: 1.6;
}
.bread-crumb .rt p a {
  color: #fff;
}
.bread-crumb .rt p a:hover {
  color: rgba(255, 255, 255, 0.7);
}
.prod-list {
  padding: 5.7291667% 0 4.166667%;
  background-color: #f6f9fb;
  background-image: url(../images/prod-list-bg.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: bottom center;
}
.prod-list .prod-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.prod-list .block {
  position: relative;
  width: 31.6947%;
  background-color: #fff;
  border-radius: 16px;
  padding: 1.48771% 1.94045% 7.4385511%;
  transition: all 0.5s;
  box-shadow: 0 0 46px rgba(5, 48, 76, 0.1);
  margin-bottom: 5.174644%;
}
.prod-list .block .prod-category {
  font-size: 16px;
  color: #2e2e2e;
  margin-bottom: 11.1628%;
}
.prod-list .block .pic {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 59.1837%;
  margin-bottom: 12.093%;
}
.prod-list .block .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  transition: all 0.5s;
}
.prod-list .block .title {
  font-size: 22px;
  color: #2e2e2e;
  font-weight: 700;
  text-align: center;
  line-height: 1.6;
}
.prod-list .block .title a {
  color: inherit;
}
.prod-list .block .more {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 35%);
  width: 70px;
  height: 120px;
  padding: 22px 0 18px;
  border-radius: 35px;
  background-color: #c4cfd6;
  transition: all 0.5s;
}
.prod-list .block .more span {
  font-size: 16px;
  color: rgba(46, 46, 46, 0.59);
  white-space: nowrap;
  transition: all 0.5s;
}
.prod-list .block .more em {
  color: #fff;
  font-size: 30px;
  line-height: 1;
}
.prod-list .block:hover {
  box-shadow: 0 0 38px rgba(11, 131, 207, 0.34);
  transform: translateY(-3px);
}
.prod-list .block:hover .pic img {
  transform: scale(1.05);
}
.prod-list .block:hover .more {
  width: 200px;
  height: 70px;
  flex-direction: row;
  padding: 0 38px 0 35px;
  background-color: #0584d4;
  transform: translate(-50%, 50%);
}
.prod-list .block:hover .more span {
  color: #fff;
}
.prod-intro {
  background-color: #fff;
  background-image: url(../images/prod-detail-intro-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  padding: 4.375% 0;
}
.prod-intro .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.prod-intro .container .lt {
  width: 38.163%;
  padding-bottom: 2.7814%;
}
.prod-intro .container .lt .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 68.3051%;
}
.prod-intro .container .lt .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
.prod-intro .container .rt {
  width: 55.7568%;
}
.prod-intro .container .rt .title {
  font-size: 26px;
  color: #2e2e2e;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 5.10441%;
}
.prod-intro .container .rt .brief {
  font-size: 18px;
  color: rgba(46, 46, 46, 0.8);
  line-height: 1.8;
  min-height: 5.4em;
}
.prod-intro .container .rt .prod-category {
  position: relative;
  font-size: 14px;
  color: #2e2e2e;
  font-weight: 700;
  margin-top: 14.27%;
  display: flex;
  align-items: center;
}
.prod-intro .container .rt .prod-category img {
  margin-right: 8px;
}
.prod-intro .container .rt .prod-category::before {
  position: absolute;
  content: attr(title);
  font-size: 3.125vw;
  letter-spacing: 0.3em;
  font-weight: 700;
  color: rgba(5, 132, 212, 0.17);
  line-height: 1;
  text-transform: uppercase;
  top: 0;
  left: 0;
  transform: translate(0, -70%);
}
.prod-intro .container .rt .prod-category::after {
  display: block;
  position: relative;
  content: "";
  flex: 1;
  height: 1px;
  background-color: #eee;
  margin-left: 10.325%;
}
.prod-detail {
  background-color: #f6f9fb;
  background-image: url(../images/prod-detail-bg.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: bottom center;
  padding: 4.16667% 0 0.729167%;
}
.prod-detail .container {
  border-top: 1px solid #e7e7e7;
  padding: 3.4375% 0 0;
}
.prod-detail .block {
  margin-bottom: 4.915912%;
}
.prod-detail .block .title {
  font-size: 26px;
  color: #2e2e2e;
  font-weight: 700;
  margin-bottom: 2.32859%;
}
.prod-detail .block article {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 0 46px rgba(5, 48, 76, 0.1);
  padding: 3.234153%;
  font-size: 18px;
  color: rgba(46, 46, 46, 0.8);
}
.prod-detail .block table {
  width: 100%;
}
.prod-detail .block table tr td {
  text-align: center;
  font-size: 18px;
  color: #2e2e2e;
  /*border-right: 1px solid #e7e7e7;*/
  /*border-bottom: 1px solid #e7e7e7;*/
  border: 1px solid #e7e7e7;
  height: 110px;
  width: 25%;
  vertical-align: middle;
}
/*.prod-detail .block table tr td:last-child {*/
/*  border-right: 0;*/
/*}*/
.prod-detail .block table tr:first-child td {
  font-size: 20px;
  font-weight: 700;
  height: 60px;
}
/*.prod-detail .block table tr:last-child td {*/
/*  border-bottom: 0;*/
/*}*/
.prod-detail .prod-package article {
  padding: 1.9405%;
}
.prod-detail .prod-download article {
  padding: 1.74644% 3.234153%;
  margin-bottom: 2%;
  transition: all 0.5s;
}
.prod-detail .prod-download article:last-child {
  margin-bottom: 0;
}
.prod-detail .prod-download article .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.prod-detail .prod-download article .row p {
  font-size: 20px;
  color: #2e2e2e;
  font-weight: 700;
  flex: 1;
  line-height: 1.6;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.prod-detail .prod-download article .row p a {
  color: inherit;
}
.prod-detail .prod-download article:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 46px rgba(5, 48, 76, 0.2);
}
.prod-detail .prod-download article:hover .row p {
  color: #0584d4;
}
#fullpage .active#section2 .index-prod .lt {
  animation: fadeInLeft 2s;
}
#fullpage .active#section2 .index-prod .rt {
  animation: fadeInRight 2s;
}
#fullpage .active#section3 .index-about .index-title {
  animation: fadeInDown 2.5s;
}
#fullpage .active#section3 .index-about .brief {
  animation: fadeInDown 2s;
}
#fullpage .active#section3 .index-about .index-more {
  animation: fadeInDown 1.5s;
}
#fullpage .active#section3 .index-about .company-data {
  animation: fadeInUp 2s;
}
#fullpage .active#section4 .index-news .index-title {
  animation: fadeInDown 2.5s;
}
#fullpage .active#section4 .index-news .wrapper {
  animation: fadeInUp 2s;
}