@font-face {
  font-family: 'DIN-Medium';
  src: url('../fonts/DIN-Medium.otf');
}
@font-face {
  font-family: 'Montserrat-SemiBold';
  src: url('../fonts/Montserrat-SemiBold.otf');
}
@font-face {
  font-family: 'CKTKingKong-bold';
  src: url('../fonts/CKTKingKong-bold.otf');
}
@font-face {
  font-family: 'GemunuLibre-SemiBold';
  src: url('../fonts/GemunuLibre-SemiBold.ttf');
}
: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';
  --CKTKingKong-bold: 'CKTKingKong-bold', 'sans-serif';
  --GemunuLibre-SemiBold: 'GemunuLibre-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: 100px;
  width: 100%;
}
.container {
  max-width: 1520px;
  width: 85%;
  margin: 0 auto;
}
.blank {
  margin: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  min-height: 0 !important;
  border: 0 !important;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 1px 4px rgba(0, 6, 26, 0.19);
  z-index: 99;
  transition: all 0.5s;
  background-color: #fff;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}
header .logo {
  width: 235px;
}
header .logo img {
  transition: all 0.5s;
}
header .lv1 {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  color: #333;
  font-size: 18px;
}
header .lv1 > li {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .lv1 > li a {
  color: #333;
  font-size: 16px;
  transition: all 0.5s;
  text-transform: uppercase;
  line-height: 1;
}
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 {
  font-family: Arial;
  width: 75px;
  line-height: 26px;
  background: -webkit-linear-gradient(top, #2a9964, #1a73ac);
  border-radius: 13px;
  color: #fff;
}
header .lv1 .lang a {
  font-size: 14px;
  color: #fff;
}
header .lv1 .lang em {
  font-size: 14px;
  margin: 0 4px;
}
header .lv1 > .active a {
  -webkit-text-fill-color: transparent;
  background: -webkit-linear-gradient(top, #2a9964, #1a73ac);
  -webkit-background-clip: text;
}
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: 0 0 10px;
  visibility: hidden;
  opacity: 0;
}
header nav {
  width: 50.987%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .search form {
  position: relative;
}
header .search form input {
  width: 214px;
  height: 30px;
  border-radius: 15px;
  outline: none;
  font-size: 13px;
  color: #333;
  font-weight: 300;
  background-color: #fafafa;
  padding: 0 35px 0 14px;
  transition: all 0.5s;
}
header .search form input::placeholder {
  color: #5f5f5f;
  transition: all 0.5s;
}
header .search form button {
  position: absolute;
  outline: none;
  border: 0;
  background-color: transparent;
  right: 22px;
  top: 50%;
  transform: translate(0, -50%);
  cursor: pointer;
  transition: all 0.5s;
}
.box {
  width: 100%;
  text-align: center;
  margin: 1.9737% 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.pagination {
  display: flex !important;
  text-align: center;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.pagination > li a {
  display: block;
  font-size: 18px;
  padding: 0 14px;
  line-height: 38px;
  background-color: #e6e9ef;
  margin: 5px;
  color: #5f5f5f;
  border-radius: 4px;
}
.pagination .active a {
  color: #fff;
  background: -webkit-linear-gradient(top, #2a9964, #1a73ac);
}
.pagination .active a:hover {
  color: #fff;
}
.pagination li a:hover {
  background: -webkit-linear-gradient(top, #2a9964, #1a73ac);
  color: #fff;
}
.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 {
  opacity: 0.4;
  pointer-events: none;
}
.box .total {
  color: #666;
  margin: 5px 7px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.box .go-link {
  margin: 5px 19px;
  font-size: 16px;
  color: #666;
}
.box .go-link form {
  display: flex;
  align-items: center;
}
.box .go-link a {
  line-height: 1;
  display: inherit;
}
.box .go-link button {
  cursor: pointer;
  font-size: 16px;
  color: #666;
  outline: none;
  background-color: transparent;
  border: 0;
  padding: 0;
  margin: 0;
}
.box .go-link button:hover {
  text-decoration: underline;
}
.box .go-link input {
  width: 56px;
  height: 40px;
  text-align: center;
  outline: none;
  border-radius: 4px;
  border: 2px solid #f0f4f8;
  font-family: var(--Din);
  margin: 0 11px;
}
.box .go-link input[type='number']::-webkit-outer-spin-button,
.box .go-link input[type='number']::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0;
}
.index-banner {
  position: relative;
}
.index-banner .swiper .swiper-slide {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.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 .banner-img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.index-banner .swiper-pagination {
  bottom: 5%;
}
.index-banner .swiper-pagination .swiper-pagination-bullet {
  width: 27px;
  height: 5px;
  opacity: 1;
  background-color: #fff;
  transition: width 0.5s;
  margin: 0 5px;
  border-radius: 0;
}
.index-banner .swiper-pagination .swiper-pagination-bullet-active {
  background: -webkit-linear-gradient(top, #2a9964, #1a73ac);
  width: 43px;
}
.index-title {
  text-align: center;
}
.index-title h3 {
  font-size: 58px;
  font-family: var(--GemunuLibre-SemiBold);
  color: #333;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.7;
}
.index-title h3 span {
  font-size: 22px;
  position: relative;
}
.index-title h3 span::before {
  display: inline-block;
  vertical-align: middle;
  content: "";
  width: 5px;
  height: 5px;
  background-color: #51ae44;
  border-radius: 50%;
  margin: 0 11px 0 9px;
}
.index-title h5 {
  font-size: 16px;
  color: #666;
}
.index-prod {
  padding: 3.333333% 0 5.20833%;
  background-color: #f5f7fa;
}
.index-prod .index-title {
  margin-bottom: 3.645833%;
}
.index-prod .prod-wrapper {
  padding-left: 10.416667%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.index-prod .prod-wrapper .lt {
  width: 19.360465%;
}
.index-prod .prod-wrapper .lt ul {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.index-prod .prod-wrapper .lt ul li {
  flex: 1;
  border-bottom: 1px solid #ccc;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0.5em 1em;
  line-height: 1.5;
  text-align: center;
  color: #333;
  font-size: 20px;
  cursor: pointer;
}
.index-prod .prod-wrapper .lt ul li:last-child {
  border-bottom: 0;
}
.index-prod .prod-wrapper .lt ul .active {
  background: -webkit-linear-gradient(top, #2a9964, #1a73ac);
  border-bottom: 1px solid transparent;
  color: #fff;
}
.index-prod .prod-wrapper .rt {
  width: 77.44186%;
}
.index-prod .prod-wrapper .rt .swiper {
  display: none;
}
.index-prod .prod-wrapper .rt .swiper .swiper-slide {
  background-color: #fff;
  padding: 36px 0 50px;
}
.index-prod .prod-wrapper .rt .swiper .swiper-slide:hover .more span {
  background-color: #51ae44;
  border-color: transparent;
}
.index-prod .prod-wrapper .rt .swiper .swiper-slide:hover .more span::after {
  border-color: #fff;
}
.index-prod .prod-wrapper .rt .show {
  display: block;
}
.index-prod .prod-wrapper .rt .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ededed;
  margin: 0 36px 0.5em 32px;
  font-size: 20px;
  padding-bottom: 1em;
}
.index-prod .prod-wrapper .rt .title a {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #333;
  font-weight: 700;
}
.index-prod .prod-wrapper .rt .brief {
  margin: 0 36px 0 32px;
  font-size: 16px;
  height: 6em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  color: #666;
  margin-bottom: 1em;
}
.index-prod .prod-wrapper .rt .brief a {
  color: inherit;
}
.index-prod .prod-wrapper .rt .more {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin: 0 0 0 32px;
}
.index-prod .prod-wrapper .rt .more span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid #e1e1e1;
  transition: all 0.5s;
  margin-bottom: 30px;
}
.index-prod .prod-wrapper .rt .more span::after {
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid #cdcdcd;
  border-right: 1px solid #cdcdcd;
  transform: translateX(-25%) rotate(45deg);
  transition: all 0.5s;
}
.index-prod .prod-wrapper .rt .more .picture {
  width: 72.52125%;
}
.index-prod .prod-wrapper .rt .more .picture .pic {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 73.4375%;
}
.index-prod .prod-wrapper .rt .more .picture .pic img {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
.index-prod .link {
  margin-top: 2.70833%;
}
.link {
  text-align: center;
}
.link a {
  display: inline-block;
  width: 165px;
  line-height: 50px;
  border: 1px solid #666;
  border-radius: 8px;
  font-size: 16px;
  color: #333;
}
.link a:hover {
  animation: swing 0.5s;
}
.index-about {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.index-about > img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.index-about .container {
  position: absolute;
}
.index-about .container .index-title {
  text-align: left;
  margin-bottom: 3.2895%;
}
.index-about .container .index-title h3 {
  color: #fff;
}
.index-about .container .index-title h3 span::before {
  background-color: #fff;
}
.index-about .container .brief {
  max-width: 900px;
  font-size: 18px;
  color: #fff;
  text-align: justify;
  margin-bottom: 6.38158%;
}
.index-about .container .wrapper {
  display: flex;
  flex-wrap: wrap;
}
.index-about .container .wrapper .block {
  text-align: center;
  margin-right: 4.791667vw;
}
.index-about .container .wrapper .block:last-child {
  margin-right: 0;
}
.index-about .container .wrapper .block .icon {
  display: inline-block;
  width: 36px;
  height: 35px;
}
.index-about .container .wrapper .block .icon img {
  max-height: 100%;
}
.index-about .container .wrapper .block p {
  font-size: 16px;
  color: #fff;
}
.index-about .container .link {
  text-align: left;
  margin-top: 3.487%;
}
.index-about .container .link a {
  text-align: center;
  background-color: #fff;
  border: 1px solid transparent;
  color: #278f74;
}
.index-news {
  margin: 4.6875% 0 5.5729167%;
}
.index-news .index-title {
  margin-bottom: 2.76316%;
}
.index-news .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.index-news .wrapper .block {
  position: relative;
  overflow: hidden;
  width: 30.7895%;
  box-shadow: 0 5px 49px rgba(0, 0, 0, 0.09);
  padding: 4.276316% 3.94737% 4.07895% 2.82895%;
}
.index-news .wrapper .block > img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  transition: all 0.5s;
  opacity: 0;
}
.index-news .wrapper .block .title {
  position: relative;
  z-index: 1;
  font-size: 22px;
  color: #333;
  line-height: 1.6;
  transition: all 0.5s;
  margin-bottom: 2.08333vw;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.index-news .wrapper .block .title a {
  color: inherit;
}
.index-news .wrapper .block .brief {
  position: relative;
  z-index: 1;
  font-size: 16px;
  color: #666;
  transition: all 0.5s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.index-news .wrapper .block .brief a {
  color: inherit;
}
.index-news .wrapper .block .date {
  position: relative;
  z-index: 1;
  font-size: 16px;
  color: #333;
  transition: all 0.5s;
  margin-top: 6.3541667vw;
}
.index-news .wrapper .block::after {
  position: absolute;
  display: block;
  content: "";
  transition: all 0.5s;
  bottom: 0;
  left: 0;
  width: 0;
  height: 10px;
  background: -webkit-linear-gradient(top, #2a9964, #1a73ac);
}
.index-news .wrapper .block:nth-child(1) {
  border-radius: 18px 0 0 0;
}
.index-news .wrapper .block:nth-child(2) {
  border-radius: 18px 0 18px 0;
}
.index-news .wrapper .block:nth-child(3) {
  border-radius: 0 0 18px 0;
}
.index-news .wrapper .block:hover > img {
  opacity: 1;
}
.index-news .wrapper .block:hover .title {
  color: #fff;
}
.index-news .wrapper .block:hover .brief {
  color: #fff;
}
.index-news .wrapper .block:hover .date {
  color: #fff;
}
.index-news .wrapper .block:hover::after {
  width: 100%;
}
.index-news .link {
  margin-top: 2.82895%;
}
.index-customer {
  padding: 3.125% 0 4.53125%;
  background-color: #f5f7fa;
}
.index-customer .index-title {
  margin-bottom: 1.84211%;
}
.index-customer .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index-customer .wrapper .lt,
.index-customer .wrapper .rt {
  width: 40.13158%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: space-between;
  flex-wrap: wrap;
  height: 480px;
}
.index-customer .wrapper .lt .block,
.index-customer .wrapper .rt .block {
  width: 31.147541%;
  height: 100px;
  margin: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}
.index-customer .wrapper .lt .block img,
.index-customer .wrapper .rt .block img {
  max-width: 90%;
  max-height: 90%;
}
.index-customer .wrapper .mid {
  width: 17.1053%;
}
.index-customer .wrapper .mid h1 {
  margin: 0;
  text-align: center;
  font-family: var(--Abel);
  font-size: 75px;
  line-height: 1;
  -webkit-text-fill-color: transparent;
  background: -webkit-linear-gradient(top, #2a9964, #1a73ac);
  -webkit-background-clip: text;
  margin-bottom: 0.4em;
}
.index-customer .wrapper .mid p {
  font-size: 16px;
  text-align: center;
  color: #666;
  margin-bottom: 0.25em;
}
.index-customer .wrapper .mid .link {
  margin-top: 74px;
}
.index-customer .wrapper .mid .link a {
  background: -webkit-linear-gradient(top, #2a9964, #1a73ac);
  border: 0;
  color: #fff;
}
.index-customer .wrapper .rt {
  flex-wrap: wrap-reverse;
}
footer {
  padding: 4.0625% 0 0;
}
footer .footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 1.57895%;
  border-bottom: 1px solid #ededed;
}
footer .footer-top .lt .logo {
  margin-bottom: 24px;
}
footer .footer-top .lt ul {
  display: flex;
}
footer .footer-top .lt ul li {
  position: relative;
  cursor: pointer;
  width: 42px;
  line-height: 40px;
  text-align: center;
  border: 1px solid #c9c9c9;
  margin-right: 1em;
  font-size: 20px;
  border-radius: 50%;
  transition: all 0.5s;
}
footer .footer-top .lt ul li i {
  transition: all 0.5s;
  opacity: 0.5;
}
footer .footer-top .lt ul li:hover {
  border-color: #000;
}
footer .footer-top .lt ul li:hover i {
  opacity: 1;
}
footer .footer-top .lt ul li:last-child {
  margin-right: 0;
}
footer .footer-top .rt {
  display: flex;
}
footer .footer-top .rt .block {
  margin-left: 24px;
  text-align: center;
}
footer .footer-top .rt .block .pic {
  display: inline-block;
  padding: 3px;
  background-color: #f3f3f3;
  box-shadow: 0 0 13px rgba(69, 69, 69, 0.19);
}
footer .footer-top .rt .block img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}
footer .footer-top .rt .block p {
  font-size: 14px;
  color: #333;
  font-weight: 300;
  margin-top: 4px;
}
footer .footer-top .rt .block:first-child {
  margin-left: 0;
}
footer .footer-mid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 2.63158% 0 3.4211%;
}
footer .footer-mid .info h3 {
  font-size: 24px;
  color: #333;
  font-family: var(--Poppins);
  line-height: 1.5;
}
footer .footer-mid .info h5 {
  font-size: 16px;
  color: #333;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 1.625em;
}
footer .footer-mid .info a {
  display: inline-block;
  font-size: 14px;
  color: rgba(51, 51, 51, 0.6);
  font-weight: 300;
  border: 1px solid #b5b5b5;
  line-height: 36px;
  padding: 0 41px 0 21px;
  transition: all 0.5s;
}
footer .footer-mid .info a:hover {
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.18);
}
footer .footer-mid nav {
  width: 64.934211%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer .footer-mid nav h4 {
  font-size: 18px;
  color: #333;
  margin-bottom: 0.444em;
}
footer .footer-mid nav h4 a {
  color: inherit;
}
footer .footer-mid nav h4 a:hover {
  text-decoration: underline !important;
}
footer .footer-mid nav ul li {
  font-size: 16px;
  color: rgba(51, 51, 51, 0.5);
}
footer .footer-mid nav ul li a {
  color: inherit;
  transition: all 0.5s;
}
footer .footer-mid nav ul li a:hover {
  color: #333;
}
footer .footer-bt {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
  padding: 0.9868421% 0 2.1053%;
  border-top: 1px solid #ededed;
}
footer .footer-bt p {
  font-size: 14px;
  color: rgba(51, 51, 51, 0.5);
  font-weight: 300;
}
footer .footer-bt p a {
  color: inherit;
}
footer .footer-bt p a:hover {
  color: #333;
  text-decoration: underline !important;
}
.inner-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inner-banner img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.inner-banner .container {
  position: absolute;
  color: #fff;
  line-height: 1.6;
}
.inner-banner .container h3 {
  font-size: 66px;
  font-weight: 700;
}
.inner-banner .container h4 {
  font-family: Arial;
  font-size: 40px;
  text-transform: uppercase;
}
.bread-crumb .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  min-height: 80px;
}
.bread-crumb .container ul {
  display: flex;
  flex-wrap: wrap;
}
.bread-crumb .container ul li {
  position: relative;
  color: #333;
  font-size: 16px;
  line-height: 80px;
  margin-right: 5em;
}
.bread-crumb .container ul li a {
  color: inherit;
}
.bread-crumb .container ul li:last-child {
  margin-right: 0;
}
.bread-crumb .container ul .active::after {
  position: absolute;
  display: block;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: -webkit-linear-gradient(top, #2a9964, #1a73ac);
}
.bread-crumb .container p {
  font-size: 16px;
  color: #333;
}
.bread-crumb .container p a {
  color: inherit;
}
.bread-crumb .container p a:hover {
  text-decoration: underline !important;
}
.bread-crumb-bg {
  background-color: #f5f7fa;
}
.news-detail {
  margin: 4.6875% 0 5.208333%;
}
.news-detail .title {
  text-align: center;
  line-height: 1.6;
  border-bottom: 1px solid #dfdfdf;
  padding-bottom: 2.63158%;
  margin-bottom: 3.2895%;
}
.news-detail .title h3 {
  font-size: 32px;
  color: #333;
  font-weight: 700;
  margin-bottom: 1.9737%;
}
.news-detail .title h5 {
  font-size: 14px;
  color: #666;
}
.news-detail article {
  font-size: 16px;
  color: #333;
  padding: 0 20px;
}
.news-detail article img {
  margin: 2em 0;
}
.news-detail .article-tab {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 3.09211% 20px 0;
  margin-top: 3.94737%;
  border-top: 1px solid #dfdfdf;
}
.news-detail .article-tab p {
  font-size: 16px;
  color: #252525;
  max-width: 45%;
  line-height: 1.5;
}
.news-detail .article-tab p a {
  color: inherit;
}
.news-detail .article-tab p:hover {
  color: #248980;
}
.footer-bg {
  background-color: #f5f7fa;
}
.inner-title {
  text-align: center;
  position: relative;
  z-index: 1;
}
.inner-title h3 {
  position: relative;
  font-size: 36px;
  color: #333;
}
.inner-title h3::after {
  position: absolute;
  content: attr(title);
  color: transparent;
  -webkit-text-stroke: 1px #28956a;
  top: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.2;
  font-size: 170%;
  font-weight: 700;
  line-height: 1;
  z-index: -1;
  white-space: nowrap;
}
.news-list {
  background-color: #f5f7fa;
  padding: 5.9375% 0 4.94791667%;
}
.news-list .inner-title {
  margin-bottom: 3.1579%;
}
.news-list .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.news-list .wrapper .block {
  position: relative;
  width: 31.44737%;
  background-color: #fff;
  padding: 2.3684211% 1.9737%;
  margin-bottom: 2.82895%;
}
.news-list .wrapper .block .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: all 0.5s;
  background: -webkit-linear-gradient(top, #248a7f, #1a73ac);
  top: 0;
  left: 0;
  opacity: 0;
}
.news-list .wrapper .block h5 {
  position: relative;
  z-index: 1;
  font-size: 14px;
  color: #333;
  font-family: var(--Montserrat);
  font-weight: 600;
  margin-bottom: 0.7857143em;
}
.news-list .wrapper .block h4 {
  position: relative;
  z-index: 1;
  font-size: 20px;
  color: #333;
  font-weight: 700;
  height: 3em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
  margin-bottom: 0.9em;
}
.news-list .wrapper .block h4 a {
  color: inherit;
}
.news-list .wrapper .block .pic {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 58.4725537%;
}
.news-list .wrapper .block .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.news-list .wrapper .block p {
  position: relative;
  z-index: 1;
  font-size: 14px;
  line-height: 1.85;
  height: 5.55em;
  color: #666;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 1.2857em 0 1.714286em;
}
.news-list .wrapper .block p a {
  color: inherit;
}
.news-list .wrapper .block .more {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(157, 157, 157, 0.2);
  padding-top: 6.6986%;
  transition: all 0.5s;
}
.news-list .wrapper .block .more span {
  font-size: 14px;
  color: #333;
  font-weight: 700;
  transition: all 0.5s;
}
.news-list .wrapper .block .more span a {
  color: inherit;
}
.news-list .wrapper .block .more em {
  display: block;
  width: 27px;
  height: 27px;
  line-height: 25px;
  border: 1px solid #c1c1c1;
  border-radius: 50%;
  text-align: center;
  transition: all 0.5s;
  color: #666;
}
.news-list .wrapper .block:hover .bg {
  opacity: 1;
}
.news-list .wrapper .block:hover .pic img {
  transform: scale(1.05);
}
.news-list .wrapper .block:hover h5,
.news-list .wrapper .block:hover h4,
.news-list .wrapper .block:hover p {
  color: #fff;
}
.news-list .wrapper .block:hover .more {
  border-color: rgba(255, 255, 255, 0.2);
}
.news-list .wrapper .block:hover .more span {
  color: #fff;
}
.news-list .wrapper .block:hover .more em {
  border-color: #fff;
  color: #fff;
}
.news-list .wrapper .row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  padding: 2.1053% 1.9737% 2.763157% 4.276316%;
  transition: all 0.5s;
  margin-bottom: 2.1053%;
  box-shadow: 0 0 10px rgba(76, 76, 76, 0.07);
}
.news-list .wrapper .row .date {
  font-family: Arial;
  text-align: right;
  line-height: 1.6;
  white-space: nowrap;
}
.news-list .wrapper .row .date h3 {
  font-size: 38px;
  color: #444;
}
.news-list .wrapper .row .date h5 {
  font-size: 14px;
  color: #666;
}
.news-list .wrapper .row em {
  display: block;
  width: 1px;
  height: 133px;
  background-color: #c4c4c4;
}
.news-list .wrapper .row .title {
  position: relative;
  width: 85.965%;
  padding-right: 13.0612245%;
}
.news-list .wrapper .row .title h4 {
  font-size: 20px;
  color: #333;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-weight: 700;
  margin-bottom: 0.5em;
}
.news-list .wrapper .row .title h4 a {
  color: inherit;
}
.news-list .wrapper .row .title p {
  font-size: 16px;
  color: #666;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 1.8;
}
.news-list .wrapper .row .title p a {
  color: inherit;
}
.news-list .wrapper .row .title .more {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 16px;
  color: #24897f;
  transform: translateY(70%);
}
.news-list .wrapper .row:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.18);
}
.contact-us {
  margin: 4.53125% 0 5.520833%;
}
.contact-us .contact-info {
  padding-bottom: 8.553%;
  border-bottom: 1px solid #d6d6d6;
  margin-bottom: 3.684211%;
}
.contact-us .contact-info .inner-title {
  margin-bottom: 1.9737%;
}
.contact-us .contact-info .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contact-us .contact-info .wrapper .lt {
  width: 51.05263158%;
}
.contact-us .contact-info .wrapper .lt .map {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 67.268%;
}
.contact-us .contact-info .wrapper .lt .map iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}
.contact-us .contact-info .wrapper .rt {
  width: 42.1053%;
  padding-right: 5.13158%;
}
.contact-us .contact-info .wrapper .rt .row {
  border-bottom: 1px solid #dfdfdf;
  padding-bottom: 5.694%;
  margin-bottom: 3.55872%;
}
.contact-us .contact-info .wrapper .rt .row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
.contact-us .contact-info .wrapper .rt h4 {
  font-size: 28px;
  color: #333;
  margin-bottom: 0.4286em;
}
.contact-us .contact-info .wrapper .rt h5 {
  font-size: 22px;
  color: #666;
  line-height: 1.6;
}
.contact-us .contact-info .wrapper .rt .tel {
  line-height: 1.4;
}
.contact-us .contact-info .wrapper .rt .tel h5 {
  line-height: 1.3;
  font-size: 29px;
  color: #299769;
  font-weight: 700;
  font-family: Arial;
}
.contact-us .online-msg .inner-title {
  margin-bottom: 3.158%;
}
.contact-us .online-msg .inner-title h3 {
  font-weight: 700;
}
.contact-us .online-msg form .row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 1.9737%;
}
.contact-us .online-msg form .col {
  width: 48.2895%;
}
.contact-us .online-msg form input,
.contact-us .online-msg form textarea {
  width: 100%;
  font-size: 16px;
  color: #333;
  background-color: #f5f7fa;
  outline: none;
}
.contact-us .online-msg form input::placeholder,
.contact-us .online-msg form textarea::placeholder {
  color: transparent;
  -webkit-background-clip: text;
  background-image: -webkit-linear-gradient(left, #999 var(--size), #f00 var(--size));
}
.contact-us .online-msg form input {
  height: 3.75em;
  padding: 0 1.5em;
}
.contact-us .online-msg form textarea {
  height: 10.625em;
  padding: 1.6875em 1.5em;
}
.contact-us .online-msg form button {
  display: block;
  margin: 3.2895% auto 0;
  width: 202px;
  height: 47px;
  border-radius: 23.5px;
  color: #fff;
  font-size: 18px;
  background: -webkit-linear-gradient(top, #2a9964, #1a73ac);
  cursor: pointer;
  transition: all 0.5s;
}
.contact-us .online-msg form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.18);
}
.service {
  margin: 4.4270833% 0 4.16667%;
}
.service .inner-title {
  margin-bottom: 2.763158%;
}
.service article {
  font-size: 16px;
  color: #333;
}
.service article h3 {
  font-size: 26px;
  color: #28966a;
  font-weight: 700;
  line-height: 1.4;
  background-color: #f5f7fa;
  padding: 0.6154em 2.237% 0.65385em;
  border-radius: 0.6154em 0.6154em 0 0;
  margin-bottom: 0.5em;
}
.service article h5 {
  font-size: 20px;
  color: #333;
  padding: 0 2.237%;
}
.service article img {
  margin: 1.57895% 0;
}
.support {
  margin: 4.4791667% 0 0;
}
.support .inner-title {
  margin-bottom: 8.684211%;
}
.support .row {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 11.71053%;
}
.support .row::after {
  position: absolute;
  display: block;
  content: "";
  width: 85.5263158%;
  height: 107.806%;
  background-color: #f5f7fa;
  right: 0;
  top: 0;
  z-index: -1;
  clip-path: polygon(15% 0, 100% 0%, 100% 100%, 0 100%);
}
.support .row .lt {
  width: 48.157895%;
  position: relative;
  transform: translate(0, -17.9325%);
}
.support .row .lt .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 64.755%;
}
.support .row .lt .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.support .row .lt .icon {
  position: absolute;
  margin-top: 5.4645%;
}
.support .row .rt {
  width: 42.895%;
  font-size: 16px;
  color: #666;
  padding: 3% 9.21053% 3% 0;
}
.support .row .rt h4 {
  font-size: 20px;
  color: #333;
  display: flex;
  margin-bottom: 0.15em;
}
.support .row .rt h4::before {
  content: "";
  display: inline-block;
  width: 0.85em;
  min-width: 0.85em;
  height: 0.85em;
  background: url(../images/support-text-icon.png) no-repeat;
  background-size: contain;
  margin-top: 0.6em;
  margin-right: 0.5em;
}
.support .row .rt h5 {
  font-size: 16px;
  color: #333;
  display: flex;
}
.support .row .rt h5::before {
  content: "";
  display: inline-block;
  width: 0.75em;
  min-width: 0.75em;
  height: 0.75em;
  background: url(../images/support-text-icon.png) no-repeat;
  background-size: contain;
  margin-top: 0.5em;
  margin-right: 0.5em;
}
.support .row .rt .title {
  font-size: 30px;
  color: #299769;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0.53333em;
}
.support .row .rt .title span {
  font-weight: 400;
}
.support .row .rt table {
  width: 100%;
}
.support .row .rt table tr td {
  height: 40px;
  line-height: 1.6;
}
.support .row:nth-child(even) {
  flex-direction: row-reverse;
}
.support .row:nth-child(even)::after {
  left: 0;
  transform: rotateY(180deg);
}
.support .row:nth-child(even) .rt {
  padding: 3% 0 3% 9.21053%;
}
.prod-list {
  margin: 4.479167% 0 4.6875%;
}
.prod-list .inner-title {
  margin-bottom: 2.894737%;
}
.prod-list .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.prod-list .wrapper .block {
  width: 31.907895%;
  box-shadow: 0 0 13px rgba(0, 0, 0, 0.14);
  padding: 1.9737% 0 3.4211%;
  border-radius: 24px;
  margin-bottom: 2.1053%;
}
.prod-list .wrapper .block .picture {
  width: 60%;
  margin: 0 auto;
}
.prod-list .wrapper .block .picture .pic {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 80%;
}
.prod-list .wrapper .block .picture .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  transition: all 0.5s;
}
.prod-list .wrapper .block h4 {
  font-size: 24px;
  padding: 0 1em;
  color: #333;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  margin: 0.75em 0 0.91667em;
}
.prod-list .wrapper .block h4 a {
  color: inherit;
}
.prod-list .wrapper .block .more {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: block;
  margin: 0 auto;
  width: 151px;
  line-height: 40px;
  text-align: center;
  color: #333;
  font-size: 16px;
  transition: all 0.5s;
  background-color: #edf1f6;
  border-radius: 20px;
}
.prod-list .wrapper .block .more::after {
  position: absolute;
  display: block;
  content: "";
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: -webkit-linear-gradient(top, #2a9964, #1a73ac);
  transition: all 0.5s;
  opacity: 0;
}
.prod-list .wrapper .block:hover .pic img {
  transform: scale(1.05);
}
.prod-list .wrapper .block:hover h4 {
  color: #23897f;
}
.prod-list .wrapper .block:hover .more {
  color: #fff;
}
.prod-list .wrapper .block:hover .more::after {
  opacity: 1;
}
.prod-detail {
  margin: 3.90625% 0 5.263158%;
}
.prod-detail .prod-title {
  padding-bottom: 1.3158%;
  border-bottom: 1px solid #dfdfdf;
  margin-bottom: 3.4211%;
}
.prod-detail .prod-title h3 {
  font-size: 34px;
  color: #333;
  font-weight: 700;
  line-height: 1.5;
}
.prod-detail .prod-title h5 {
  font-size: 20px;
  color: #333;
  line-height: 1.8;
  min-height: 3.6em;
}
.prod-detail .prod-advantage {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 5%;
}
.prod-detail .prod-advantage .lt {
  width: 34.868421%;
}
.prod-detail .prod-advantage .lt h4 {
  font-size: 24px;
  color: #333;
  margin-bottom: 0.625em;
}
.prod-detail .prod-advantage .lt ul li {
  display: flex;
  font-size: 18px;
  color: #333;
  margin-bottom: 0.8333em;
}
.prod-detail .prod-advantage .lt ul li::before {
  display: inline-block;
  content: "";
  width: 11px;
  min-width: 11px;
  height: 13px;
  background: url(../images/prod-adv-icon.png) no-repeat;
  background-size: contain;
  margin-right: 0.8333em;
  margin-top: 0.7em;
}
.prod-detail .prod-advantage .rt {
  width: 61.0526316%;
}
.prod-detail .prod-advantage .rt .pic {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 44.6121%;
  box-shadow: 0 0 13px rgba(17, 46, 124, 0.17);
}
.prod-detail .prod-advantage .rt .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
.prod-detail article {
  font-size: 16px;
  color: #333;
  margin-bottom: 5.46053%;
}
.prod-detail article h5 {
  font-size: 18px;
  display: flex;
  color: #000;
}
.prod-detail article h5::before {
  content: "";
  display: inline-block;
  width: 0.4444em;
  min-width: 0.4444em;
  height: 0.4444em;
  border-radius: 50%;
  background: -webkit-linear-gradient(top, #2a9964, #1a73ac);
  margin-top: 0.8em;
  margin-right: 0.88889em;
}
.prod-detail article table {
  position: relative;
  width: 100%;
  border-radius: 1em 1em 0 0;
  border-collapse: separate;
  border-spacing: 0;
}
.prod-detail article table tr td {
  height: 70px;
  padding: 0 3.375em;
}
.prod-detail article table tr:nth-child(1) td:first-child {
  border-radius: 1em 0 0 0;
}
.prod-detail article table tr:nth-child(1) td:last-child {
  border-radius: 0 1em 0 0;
}
.prod-detail article table tr:nth-child(1) tr:first-child {
  border-radius: 1em 1em 0 0;
}
.prod-detail article table tr:nth-child(odd) {
  background-color: #f2f6f9;
}
.prod-detail .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.prod-detail .wrapper .block {
  position: relative;
  width: 32.5%;
  background-color: #f5f7fa;
  margin-bottom: 1.25%;
  padding: 3.157895% 1.9737% 2.63158% 2.63158%;
}
.prod-detail .wrapper .block .icon {
  position: relative;
  z-index: 1;
  width: 100px;
  height: 60px;
  text-align: center;
}
.prod-detail .wrapper .block .icon img {
  max-height: 100%;
  transition: all 0.5s;
}
.prod-detail .wrapper .block h4 {
  position: relative;
  z-index: 1;
  font-weight: 700;
  font-size: 22px;
  color: #333;
  line-height: 1.5;
  margin: 1.1364em 0 0.9091em;
}
.prod-detail .wrapper .block .brief {
  position: relative;
  z-index: 1;
  font-size: 16px;
  color: #333;
}
.prod-detail .wrapper .block::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: all 0.5s;
  opacity: 0;
  background: -webkit-linear-gradient(top, #2a9964, #1a73ac);
}
.prod-detail .wrapper .block:hover::after {
  opacity: 1;
}
.prod-detail .wrapper .block:hover .icon img {
  filter: contrast(0) brightness(200%);
}
.prod-detail .wrapper .block:hover h4 {
  color: #fff;
}
.prod-detail .wrapper .block:hover .brief {
  color: #fff;
}
.company-profile {
  margin: 6.770833% 0 5.625%;
}
.company-profile .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.company-profile .container .lt {
  width: 54.408%;
}
.company-profile .container .lt .inner-title {
  margin-bottom: 2.4184%;
  text-align: left;
}
.company-profile .container .lt .inner-title h3::after {
  left: 0;
  transform: translate(0, -50%);
}
.company-profile .container .lt .name {
  margin-bottom: 4px;
}
.company-profile .container .lt .name h4 {
  display: inline-block;
  font-size: 20px;
  color: transparent;
  -webkit-background-clip: text;
  background-image: -webkit-linear-gradient(top, #2a9964, #1a73ac);
}
.company-profile .container .lt .brief {
  font-size: 16px;
  color: #333;
  text-align: justify;
}
.company-profile .container .rt {
  width: 41.1184211%;
}
.company-profile .container .rt .pic {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 64.48%;
  border: 2px solid transparent;
  border-image: linear-gradient(#2a9964, #1a73ac) 30;
}
.company-profile .container .rt .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-6px, -6px);
  transition: all .5s;
}
.company-profile .container .rt .pic:hover img {
  transform: scale(1.05);
}
.company-culture {
  background: url(../images/culture-bg.jpg) no-repeat;
  background-size: cover;
  padding: 5.833333% 0 5.520833%;
}
.company-culture .inner-title {
  text-align: left;
  margin-bottom: 3.684211%;
}
.company-culture .inner-title h3 {
  color: #fff;
}
.company-culture .inner-title h3::after {
  left: 0;
  transform: translate(0, -50%);
  -webkit-text-stroke-color: #fff;
}
.company-culture .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.company-culture .wrapper .block {
  width: 23.684211%;
  background-color: rgba(255, 255, 255, 0.89);
  margin-bottom: 1.77632%;
  padding: 3.2237% 2% 3.026316% 3.4211%;
  transition: all .5s;
}
.company-culture .wrapper .block:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.18);
}
.company-culture .wrapper .block .icon {
  width: 88px;
  height: 85px;
  line-height: 85px;
  text-align: center;
}
.company-culture .wrapper .block .icon img {
  max-height: 100%;
  object-fit: contain;
}
.company-culture .wrapper .block h4 {
  font-size: 26px;
  color: #333;
  margin-top: 4.46154em;
  margin-bottom: 0.654em;
}
.company-culture .wrapper .block .brief {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
}
.company-environment {
  margin: 6.9791667% 0 3.2291667%;
}
.company-environment .container {
  max-width: 1733px;
  width: 94%;
}
.company-environment .inner-title {
  margin-bottom: 2.30814%;
}
.company-environment .swiper .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 76.66667%;
}
.company-environment .swiper .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.company-environment .swiper .pic:hover img {
  transform: scale(1.05);
}
.company-environment .swiper p {
  font-size: 20px;
  color: #333;
  text-align: center;
  line-height: 1.5;
  margin-top: 1.5em;
  height: 3em;
}
.dev-history {
  position: relative;
  overflow: hidden;
  padding: 5.5208333% 0;
  background-color: #f5f7fa;
  margin-bottom: 6.1979167%;
}
.dev-history .inner-title {
  text-align: left;
  margin-bottom: 0.658%;
}
.dev-history .inner-title h3::after {
  left: 0;
  transform: translate(0, -50%);
}
.dev-history .block {
  background-color: #fff;
  font-size: 18px;
  color: #333;
  line-height: 1.67;
  padding: 1.27778em 0.75em 1.27778em 1.4444em;
}
.dev-history .block .title {
  position: relative;
  z-index: 1;
  font-size: 22px;
  color: #333;
  font-weight: 700;
  margin-bottom: 0.1364em;
  transition: all 0.5s;
}
.dev-history .block .brief {
  position: relative;
  z-index: 1;
  max-height: 5.01em;
  overflow: auto;
  padding-right: 0.25em;
}
.dev-history .block .brief::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
  border-radius: 2px;
  background-color: #f5f5f5;
}
.dev-history .block .brief::-webkit-scrollbar {
  width: 3px;
  background-color: #f5f5f5;
}
.dev-history .block .brief::-webkit-scrollbar-thumb {
  border-radius: 2px;
  -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1);
  background-color: #666;
}
.dev-history .swiper {
  position: relative;
}
.dev-history .swiper::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #1d7a9e;
  content: "";
  display: block;
}
.dev-history .swiper .swiper-slide {
  position: relative;
  width: 380px;
  height: 420px;
  max-width: 100%;
}
.dev-history .swiper .swiper-slide em {
  display: block;
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-image: -webkit-linear-gradient(top, #2a9964, #1a73ac);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.dev-history .swiper .swiper-slide em::after {
  position: absolute;
  display: block;
  content: "";
  width: 200%;
  height: 200%;
  border-radius: 50%;
  border: 1px dotted #2a9964;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.dev-history .swiper .swiper-slide .block {
  position: absolute;
  width: 380px;
  top: 60%;
}
.dev-history .swiper .swiper-slide .block::before {
  display: block;
  position: absolute;
  content: "";
  border: 13.5px solid transparent;
  border-bottom: 17px solid #fff;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
  transition: all 0.5s;
  box-sizing: border-box;
}
.dev-history .swiper .swiper-slide .block::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(top, #2a9964, #1a73ac);
  transition: all 0.5s;
  top: 0;
  left: 0;
  opacity: 0;
  box-sizing: border-box;
}
.dev-history .swiper .swiper-slide .block:hover {
  color: #fff;
}
.dev-history .swiper .swiper-slide .block:hover::after {
  opacity: 1;
}
.dev-history .swiper .swiper-slide .block:hover .title {
  color: #fff;
}
.dev-history .swiper .swiper-slide .block:hover::before {
  border-bottom-color: #2a9964;
}
.dev-history .swiper .swiper-slide:nth-child(even) {
  width: 30px;
  margin-right: 0 !important;
  z-index: 1;
}
.dev-history .swiper .swiper-slide:nth-child(even) em {
  left: 0;
}
.dev-history .swiper .swiper-slide:nth-child(even) .block {
  width: 350px;
  top: auto;
  bottom: 60%;
  transform: translate(-50%, 0);
}
.dev-history .swiper .swiper-slide:nth-child(even) .block::before {
  border: 13.5px solid transparent;
  border-top: 17px solid #fff;
  top: auto;
  bottom: 0.2px;
  transform: translate(-50%, 100%);
}
.dev-history .swiper .swiper-slide:nth-child(even) .block:hover::before {
  border-top-color: #1a73ac;
}
/*.dev-history .swiper .swiper-slide:last-child {*/
/*  width: 100%;*/
/*}*/
.join-us {
  margin-bottom: 4.6875%;
}
.join-us .container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.join-us .container .bg {
  display: block;
  width: 100%;
  object-fit: cover;
}
.join-us .container .text {
  position: absolute;
  padding: 0 8.3553%;
  width: 100%;
}
.join-us .container .text .inner-title {
  text-align: left;
  margin-bottom: 1.57895%;
}
.join-us .container .text .inner-title h3 {
  color: #fff;
}
.join-us .container .text .inner-title h3::after {
  -webkit-text-stroke-color: #fff;
  left: 0;
  transform: translate(0, -50%);
}
.join-us .container .text .brief {
  width: 614px;
  max-width: 100%;
  font-size: 18px;
  color: #fff;
  line-height: 1.889;
}
.join-us .container .text .send-email {
  margin-top: 2.63158%;
}
.join-us .container .text .send-email a {
  display: block;
  width: 156px;
  line-height: 43px;
  border-radius: 21.5px;
  text-align: center;
  background-color: #fff;
  color: #238982;
  font-size: 18px;
  transition: all 0.5s;
}
.join-us .container .text .send-email a:hover {
  box-shadow: inset -5px 3px 10px #238982;
  transform: translateY(-3px);
}
.recruit {
  margin-bottom: 1.5625%;
}
.recruit .title {
  padding: 0 5.9211% 0 5.526316%;
  border-radius: 18px 18px 0 0;
  background-color: #f5f7fa;
}
.recruit .title ul {
  height: 76px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.recruit .title ul li {
  font-size: 20px;
  color: #333;
  font-weight: 700;
  width: 20%;
  line-height: 1.5;
}
.recruit .title ul li:last-child {
  width: 70px;
}
.recruit .list {
  box-shadow: 0 13px 27px rgba(136, 136, 136, 0.13);
}
.recruit .row {
  padding: 0 5.9211% 0 5.526316%;
  border: 1px solid #ebeef3;
  border-top: 0;
}
.recruit .row ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
}
.recruit .row ul li {
  font-size: 18px;
  color: #333;
  width: 20%;
  line-height: 1.5;
}
.recruit .row ul li:last-child {
  width: 70px;
}
.recruit .row ul li a {
  transition: all 0.5s;
}
.recruit .row ul li a:hover {
  color: #279173;
}
.recruit .row ul li .close {
  display: none;
  color: #279173;
}
.recruit .row .content {
  display: none;
  font-size: 14px;
  color: #333;
  padding: 0.372024% 0 3.3482143%;
}
.recruit .row .content h4 {
  font-size: 21px;
  color: #333;
  margin-bottom: 0.381em;
}
.recruit .row .content .send {
  display: block;
  width: 153px;
  line-height: 38px;
  font-size: 14px;
  text-align: center;
  color: #fff;
  border-radius: 19px;
  background: -webkit-linear-gradient(top, #2a9964, #1a73ac);
  transition: all 0.5s;
  margin-top: 1.637%;
}
.recruit .row .content .send:hover {
  transform: translateY(-3px);
}
.anchor-fixed {
  position: relative;
  top: -100px;
  height: 0;
}
