@font-face {
  font-family: 'DIN-Medium';
  src: url('../fonts/DIN-Medium.otf');
}
:root {
  --Noto-Sans-SC: 'Noto Sans 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;
}
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;
}
.header-fixed {
  position: fixed;
  animation: top-bottom .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);
  }
}
.out-header {
  height: 144px;
  width: 100%;
}
.container {
  max-width: 1420px;
  width: 85%;
  margin: 0 auto;
}
.blank {
  margin: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  min-height: 0 !important;
  border: 0px !important;
}
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 99;
  transition: all 0.5s;
}
header .header-info {
  border-bottom: 1px solid #221e0c;
}
header .header-info .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 83px;
}
header .header-info .searchForm {
  position: relative;
  width: 100%;
  display: none;
  background-color: #fff;
  border-top: 1px solid #000;
  text-align: center;
  padding-top: 26px;
  height: 90px;
  overflow: hidden;
}
header .header-info .searchForm input {
  width: 250px;
  height: 44px;
  outline: none;
  border: 1px solid #ddd;
  color: #333;
  padding: 0 15px;
}
header .header-info .searchForm button {
  cursor: pointer;
  width: 44px;
  height: 44px;
  background-color: #eee;
  color: #000;
}
header .logo {
  width: 302px;
}
header .info {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
}
header .info p {
  font-size: 14px;
  color: #000;
  margin-left: 40px;
}
header nav {
  position: relative;
  background-color: #fecc00;
}
header nav .container {
  max-width: 1000px;
}
header .lv1 {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .lv1 > li {
  height: 100%;
  display: flex;
  align-items: center;
}
header .lv1 > li a {
  color: #000;
  font-size: 16px;
  transition: all 0.5s;
  font-weight: 700;
}
header .lv1 > li a:hover {
  opacity: 0.7;
}
header .lv1 > li .lv2 {
  position: absolute;
  width: 100vw;
  background-color: #fecc00;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 0) scaleY(0);
  transform-origin: top;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
  overflow: hidden;
  padding: 2.70833% 0 3.0208333%;
}
header .lv1 > li .lv2 .container {
  max-width: 1580px;
}
header .lv1 > li .lv2 h5 {
  font-size: 16px;
  color: #000;
}
header .lv1 > li .lv2 h5 a {
  display: inline-block;
  font-weight: normal;
}
header .lv1 > li .lv2 h5 a:hover {
  transform: translateX(5px);
}
header .lv1 > li .lv2 .lv2-wrapper {
  display: flex;
  flex-wrap: wrap;
}
header .lv1 > li .lv2 .block {
  width: 22%;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  margin: 1.266% 0 0 1.39241%;
  padding: 0 2.2785% 2.5%;
}
header .lv1 > li .lv2 .block h5 {
  margin-bottom: 10px;
}
header .lv1 > li .lv2 p {
  line-height: 1.6;
  padding: 0 0 0 16px;
  margin-bottom: 8px;
}
header .lv1 > li .lv2 p a {
  display: inline-block;
  font-size: 16px;
  color: #000;
  font-weight: normal;
}
header .lv1 > li .lv2 p a:hover {
  transform: translateX(5px);
}
header .lv1 > li:hover .lv2 {
  opacity: 1;
  top: 100%;
  visibility: visible;
  transform: translate(-50%, 0) scaleY(1);
}
header .lv1 > .active a {
  font-weight: 700;
}
header .search {
  font-size: 14px;
  color: #000;
  position: relative;
  cursor: pointer;
  margin-left: 40px;
}
header .search form {
  display: none;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-100%, -50%);
}
header .search form input {
  width: 150px;
  height: 40px;
  border-radius: 20px;
  outline: none;
  border: 1px solid #ccc;
  padding: 0 36px 0 21px;
  font-family: var(--Noto-Sans-SC);
  color: #333;
  font-size: 14px;
}
header .search form input::placeholder {
  color: #b2b2b2;
}
header .search form button {
  position: absolute;
  top: 50%;
  right: 10px;
  cursor: pointer;
  outline: none;
  background: transparent;
  border: 0;
  transform: translate(0, -50%);
}
header .lang {
  cursor: pointer;
  margin-left: 40px;
  font-size: 14px;
  color: #000;
  position: relative;
  z-index: 1;
}
header .lang i {
  font-size: 18px;
}
header .lang ul {
  position: absolute;
  background-color: #fff;
  box-shadow: 0 3px 10px rgba(0, 6, 26, 0.19);
  top: 150%;
  left: 50%;
  transform: translate(-50%, 0);
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
}
header .lang ul li {
  border-bottom: 1px solid #ccc;
  /* padding: 0 15px; */
  white-space: nowrap;
}
header .lang ul li a {
  display: block;
  padding: 0 15px;
  white-space: nowrap;
  width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
}
header .lang:hover ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.box {
  width: 100%;
  text-align: center;
  margin: 5.4785% 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: 18px;
  padding: 0 9.25px;
  line-height: 29px;
  border: 1px solid transparent;
  background-color: #f4f4f5;
  margin: 3px 5px;
  color: #c0c4cc;
  transition: all 0.5s;
}
.pagination .active a {
  color: #fff;
  background-color: #024a7d;
  border: 1px solid transparent;
}
.pagination .active a:hover {
  color: #fff;
}
.pagination li a:hover {
  color: #024a7d;
}
.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 {
  position: relative;
}
.index-banner > img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-banner .container {
  position: relative;
  z-index: 1;
  padding: 3.645833% 0 2.7604167%;
  display: flex;
  justify-content: center;
}
.index-banner .banner-text {
  background-color: rgba(206, 206, 206, 0.8);
  max-width: 540px;
  width: 100%;
  border-radius: 13px;
  text-align: center;
  padding: 3.661972% 3.3803% 2.887324%;
}
.index-banner .banner-text h2 {
  font-size: 40px;
  color: #000;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.7553%;
}
.index-banner .banner-text h3 {
  color: #000;
  font-size: 32px;
  font-weight: 700;
}
.index-banner .banner-text h4 {
  font-size: 28px;
  color: #000;
  font-weight: 700;
  line-height: 1.6;
}
.index-banner .banner-text h5 {
  font-size: 22px;
  color: #000;
  margin-bottom: 18px;
}
.index-banner .banner-text p {
  font-size: 16px;
  color: #000;
  line-height: 1.8;
  margin-top: 1.66163142%;
}
.inner-banner .banner-text {
  background-color: rgba(255, 255, 255, 0.8);
  max-width: none;
}
.inner-banner .banner-text p a {
  color: #daaf00;
}
.banner-bottom {
  line-height: 1;
}
.banner-bottom img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.index-link {
  display: inline-block;
  width: 128px;
  line-height: 38px;
  text-align: center;
  background-color: #6889aa;
  border-radius: 4px;
  font-size: 16px;
  color: #fff;
  border: 1px solid transparent;
  transition: all 0.5s;
}
.index-link:hover {
  color: #6889aa;
  border-color: #6889aa;
  background-color: #fff;
}
.index-tools {
  padding: 2.6041667% 0 3.020833%;
  background-color: #f0f1f1;
}
.index-tools .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.index-tools .container .block {
  width: 31.7606%;
  border: 1px solid #c9c9c9;
  box-shadow: 0 6px 13px rgba(16, 52, 88, 0.15);
  background-color: #fff;
}
.index-tools .container .block .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 51.225%;
}
.index-tools .container .block .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.index-tools .container .block:hover img {
  transform: scale(1.05);
  transition: all 0.8s;
}
.index-tools .container .block .title {
  padding: 3.547672% 11.308204% 6.651885% 7.538803%;
}
.index-tools .container .block .title h3 {
  font-size: 24px;
  color: #000;
  font-weight: 700;
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.index-tools .container .block .title p {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.index-tools .container .block .title .index-link {
  width: auto;
  padding: 0 20px;
  margin-right: 18px;
}
.index-tools .container .block .title .index-link:last-child {
  margin-right: 0;
}
.index-advise {
  background: url(../images/index-advise-bg.jpg) no-repeat;
  background-size: cover;
  background-attachment: fixed;
  overflow: hidden;
}
.index-advise .advise-wrapper {
  background-color: #fff;
  margin: 5.0520833% 0;
  padding: 2.2395833% 0 2.1354167%;
}
.index-advise .advise-wrapper .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index-advise .advise-wrapper .container .lt {
  width: 23.802817%;
}
.index-advise .advise-wrapper .container .lt .pic {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  border-radius: 50%;
  overflow: hidden;
}
.index-advise .advise-wrapper .container .lt .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-advise .advise-wrapper .container .rt {
  width: 71.47887324%;
}
.index-advise .advise-wrapper .container .rt h4 {
  font-size: 28px;
  color: #000;
  font-weight: 700;
  line-height: 1.8;
}
.index-advise .advise-wrapper .container .rt h5 {
  font-size: 20px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 1.674877%;
}
.index-advise .advise-wrapper .container .rt p {
  font-size: 16px;
  color: #333;
  text-align: justify;
  line-height: 1.8;
}
.index-advise .advise-wrapper .container .rt .index-link {
  margin-top: 2.4630542%;
}
.index-title h3 {
  font-size: 28px;
  color: #000;
  font-weight: 700;
  margin-bottom: 0.70423%;
}
.index-title .brief {
  font-size: 16px;
  color: #333;
  text-align: justify;
  margin: 0 auto;
  line-height: 1.8;
}
.index-prod {
  padding: 2.8125% 0 4.1145833%;
  background-color: #f0f1f1;
}
.index-prod .index-title {
  text-align: center;
}
.index-prod .index-title .brief {
  text-align: center;
  max-width: 1034px;
}
.index-prod .prod-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 2.5352113%;
}
.index-prod .prod-wrapper .block {
  width: 31.5493%;
  background-color: #fff;
  box-shadow: 0 6px 13px rgba(16, 52, 88, 0.15);
}
.index-prod .prod-wrapper .block .pic {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 66.9643%;
  overflow: hidden;
}
.index-prod .prod-wrapper .block .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .5s;
}
.index-prod .prod-wrapper .block:hover img {
  transition: all .8s;
  transform: scale(1.05);
}
.index-prod .prod-wrapper .block .title {
  padding: 3.125% 7.14286% 5.8036%;
  text-align: center;
  border: 1px solid #c9c9c9;
}
.index-prod .prod-wrapper .block .title h4 {
  font-size: 24px;
  color: #000;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.index-prod .prod-wrapper .block .title p {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.index-prod .prod-wrapper .block .title .index-link {
  margin-top: 3.3482143%;
}
.index-market {
  background-color: #fecc00;
  padding: 1.3541667% 0 1.9791667%;
}
.index-market .index-link {
  margin-top: 1.830986%;
}
.index-about {
  background-color: #f0f1f1;
  padding: 2.7604167% 0 3.125%;
}
.index-about .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index-about .container .lt {
  width: 35.986%;
}
.index-about .container .rt {
  width: 62.11268%;
}
.index-about .container .rt .index-link {
  margin-top: 2.60771%;
}
footer .footer-top {
  background-color: #999;
  padding: 3.645833%;
}
footer .footer-top .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer .footer-top .container em {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 15px;
}
footer .footer-top .container em img {
  max-width: 100%;
  max-height: 100%;
}
footer .footer-top .container h3 {
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 30px;
}
footer .footer-top .container h5 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 12px;
}
footer .footer-top .container .logo {
  display: flex;
  align-items: center;
  width: 29.859155%;
}
footer .footer-bt {
  background-color: #fecc00;
  padding: 1.1979167% 0;
}
footer .footer-bt .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
footer .footer-bt p {
  font-size: 14px;
  color: #000;
  text-align: center;
}
footer .footer-bt p a {
  color: #000;
  transition: all 0.5s;
}
footer .footer-bt p a:hover {
  opacity: 0.5;
}
.bread-crumb {
  margin: 3% 0 1.40625%;
}
.bread-crumb p {
  font-size: 20px;
  color: #000;
}
.bread-crumb p a {
  color: #000;
}
.bread-crumb p a:hover {
  opacity: 0.7;
}
.prod-lv1 {
  margin: 0 0 1.1971831%;
}
.prod-lv1 .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.prod-lv1 .container .block {
  width: 23.23944%;
  margin-bottom: 3%;
}
.prod-lv1 .container .block .pic {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 111.5152%;
  overflow: hidden;
}
.prod-lv1 .container .block .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.prod-lv1 .container .block .pic span {
  position: absolute;
  z-index: 1;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: auto;
  padding: 0 17px;
  max-width: 94%;
  min-width: 116px;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 13.0303%;
  border-radius: 6px;
}
.prod-lv1 .container .block:hover .pic img {
  opacity: 0.9;
  transform: scale(1.05);
}
.prod-lv2 {
  margin: 0 0 1.71875%;
}
.prod-lv2 .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.prod-lv2 .container .block {
  width: 32.1831%;
  margin-bottom: 1.126761%;
}
.prod-lv2 .container .block .pic {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 60.3938731%;
  overflow: hidden;
}
.prod-lv2 .container .block .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.prod-lv2 .container .block p {
  font-size: 18px;
  color: #000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2.1882%;
}
.prod-lv2 .container .block p a {
  color: #000;
}
.prod-lv2 .container .block:hover .pic img {
  transform: scale(1.05);
  opacity: 0.9;
}
.prod-lv2 .container .block:hover p a {
  opacity: 0.7;
}
.prod3-lv1 .container .block {
  width: 32.1831%;
  margin-bottom: 3%;
}
.prod3-lv1 .container .block .pic {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 60.3938731%;
  overflow: hidden;
}
.prod3-lv1 .container .block .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.prod3-lv1 .container .block:hover .pic img {
  transform: scale(1.05);
  opacity: 0.9;
}
.industry {
  margin: 0 0 2.96875%;
}
.industry-banner {
  text-align: center;
}
.industry .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.industry .container .block {
  width: 32.1831%;
  margin-bottom: 1.7605634%;
}
.industry .container .block .pic {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 66.520788%;
  overflow: hidden;
}
.industry .container .block .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.industry .container .block .pic span {
  position: absolute;
  z-index: 1;
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: auto;
  padding: 0 20px;
  max-width: 94%;
  min-width: 148px;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 9.8684211%;
  border-radius: 6px;
}
.industry .container .block:hover .pic img {
  transform: scale(1.05);
  opacity: 0.9;
}
.industry-intro {
  margin: 2.6041667% 0 0;
}
.industry-intro .container {
  font-size: 20px;
  color: #0d0d0d;
  text-align: justify;
  padding-bottom: 2.70833%;
  border-bottom: 1px solid #d1d6db;
}
.industry-list {
  margin: 2.70833% 0 3.125%;
}
.industry-list h3 {
  font-size: 28px;
  color: #000;
  font-weight: 700;
  margin-bottom: 1.7605634%;
}
.industry-list .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background-color: #f2f6fa;
  margin-bottom: 3.521127%;
}
.industry-list .row .lt {
  width: 540px;
  max-width: 55%;
  text-align: center;
}
.industry-list .row .lt h4 {
  max-width: 100%;
  font-size: 22px;
  color: #000;
  font-weight: 700;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-bottom: 1px solid #6889aa;
  padding-bottom: 4px;
  margin: 0 10px;
}
.industry-list .row .lt h4 a {
  color: #000;
}
.industry-list .row .rt {
  width: 20%;
}
.industry-list .row .rt .pic {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 58.27465%;
  overflow: hidden;
}
.industry-list .row .rt .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.industry-list .row:hover .lt h4 {
  padding-bottom: 0;
}
.industry-list .row:hover .lt h4 a {
  opacity: 0.7;
}
.industry-list .row:hover .rt .pic img {
  transform: scale(1.05);
  opacity: 0.9;
}
.calc-tab ul {
  display: flex;
  margin-bottom: 3.0986%;
}
.calc-tab ul li {
  position: relative;
  flex: 1;
  font-size: 20px;
  line-height: 50px;
  color: #ffc000;
  text-align: center;
  font-weight: 700;
  border: 2px solid #ffc000;
  border-left: 0;
}
.calc-tab ul li a {
  color: #ffc000;
}
.calc-tab ul li:first-child {
  border-left: 2px solid #ffc000;
}
.calc-tab ul .active {
  color: #fff;
  border: 2px solid transparent;
  background-color: #ffc000;
}
.calc-tab ul .active a {
  color: #fff;
}
.calc-tab ul .active::after {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: 20px solid transparent;
  border-top: 25px solid #ffc000;
}
.calc-info .container {
  font-size: 16px;
  color: #000;
  text-align: justify;
}
.calc-info .container p::before {
  position: relative;
  display: inline-block;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #626262;
  margin-right: 13px;
  vertical-align: middle;
}
.calc-wrapper {
  margin: 2.125% 0 2.33333%;
}
.calc-wrapper .container {
  background-color: #fafafa;
  border-radius: 73px;
  padding: 20px 50px;
}
.calc-wrapper .row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 6px;
}
.calc-wrapper .row .l {
  width: 54.09336%;
  font-size: 16px;
  color: #000;
  font-style: italic;
  text-align: right;
  line-height: 1.2;
}
.calc-wrapper .row .r {
  width: 40.610413%;
  display: flex;
}
.calc-wrapper .row .r input {
  max-width: 100%;
  width: 341px;
  height: 30px;
  border: 1px solid #d9d9d9;
  font-size: 16px;
  text-align: center;
  outline: none;
}
.calc-wrapper .row .r input::placeholder {
  color: #999;
  opacity: 0.6;
}
.calc-wrapper .row .r select {
  max-width: 100%;
  width: 341px;
  height: 30px;
  border: 1px solid #d9d9d9;
  font-size: 16px;
  text-align: center;
  outline: none;
  color: #999;
  opacity: 0.6;
}
.calc-wrapper .row .r select::placeholder {
  color: #999;
  opacity: 0.6;
}
.calc-wrapper .btn-row {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 1.52693%;
}
.calc-wrapper .btn-row button {
  width: 240px;
  height: 40px;
  outline: none;
  cursor: pointer;
  border: 0;
  border-radius: 8px;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  background-color: #ffc000;
}
.calc-wrapper .btn-row .reset-btn {
  color: #333;
  background-color: #fff;
}
.result-wrapper {
  margin: 2.3333% 0 3.0521%;
  display: none;
}
.result-wrapper .container {
  background-color: #fff2cc;
}
.result-wrapper .container h3 {
  font-size: 24px;
  color: #333;
  font-style: italic;
  margin-bottom: 3.0413%;
}
.result-wrapper .container .row .l {
  width: 49.28187%;
}
.result-wrapper .container .row .r {
  width: 44.165171%;
  display: flex;
  align-items: center;
}
.result-wrapper .container .row .r span {
  font-size: 18px;
  color: #333;
  font-style: italic;
  margin-left: 13px;
}
.result-wrapper .container .row .r input {
  width: 324px;
}
.calc-type3 .container {
  padding: 20px 50px;
}
.calc-type3 .container h2 {
  text-align: center;
  font-size: 24px;
  color: #000;
  margin-bottom: 1.16242%;
}
.calc-type3 .container h2 em {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #c8c8c8;
  border: 1px solid #a5a5a5;
  border-radius: 50%;
  margin-right: 21px;
  vertical-align: middle;
}
.calc-type3 .container h2 em::after {
  display: block;
  position: absolute;
  content: "";
  width: 140%;
  height: 140%;
  border-radius: 50%;
  border: 1px solid #a5a5a5;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.calc-type3 .container .row .l {
  width: 46.9745223%;
}
.calc-type3 .container .row .r {
  width: 49.76115%;
  flex-wrap: wrap;
  align-items: center;
}
.calc-type3 .container .row .r span {
  margin-left: 8px;
  color: #000;
  font-size: 16px;
}
.calc-type3 .container .row .r .addonFile {
  display: none;
}
.calc-type3 .container .row .r span em {
  display: inline-block;
  margin-right: 8px;
}
.calc-type3 .container .row .r span a {
  color: #000;
  border-bottom: 1px solid #000;
}
.calc-type3 .container .row .r span a:hover {
  color: #576a95;
  border-color: #576a95;
}
.result-type3 .container {
  padding: 20px 50px;
}
.result-type3 .container .row .l {
  width: 53.0255%;
}
.result-type3 .container .row .r {
  width: 44.0287%;
}
.inner-title h2 {
  font-size: 44px;
  color: #000;
  font-weight: 700;
}
.inner-title h5 {
  font-size: 20px;
  color: #000;
}
.wx {
  margin: 0.625% 0 4.4791667%;
}
.wx .container {
  text-align: center;
}
.wx .container .inner-title h2 {
  margin-bottom: 0.5634%;
}
.wx .container .inner-title h5 {
  margin-bottom: 3.87324%;
}
.wx .container img {
  display: block;
  margin: 0 auto;
  max-width: 60%;
}
.contact {
  margin: 0.625% 0 4.739583%;
}
/* .contact .container {
  display: flex;
  flex-wrap: wrap;
} */
.contact .container .block {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 2%;
  border-bottom: 1px dashed #ccc;
  margin-bottom: 3%;
}
.contact .container .block h2 {
  width: 100%;
  font-size: 24px;
  color: #000;
  font-weight: 700;
  margin-bottom: 1%;
}
.contact .container .block .lt {
  flex: 1;
}
.contact .container .block .rt a {
  display: block;
  width: 120px;
  line-height: 34px;
  background-color: #ffc000;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  font-family: Arial;
  text-align: center;
  transition: all .5s;
}
.contact .container .block .rt a:hover {
  transform: scale(1.1);
}

.contact .container .inner-title {
  width: 100%;
  text-align: center;
  margin-bottom: 3.803%;
}
.contact .container .lt {
  width: 31.90141%;
  display: flex;
  flex-direction: column;
}
.contact .container .lt .row {
  display: flex;
  align-items: center;
  flex: 1;
  /* box-shadow: 0 0 27px rgba(0, 0, 0, 0.13);
  padding: 3% 10px 3% 7.28477%; */
  background-color: #fff;
  margin-bottom: 1%;
}
.contact .container .lt .row em {
  display: block;
  width: 44px;
  height: 47px;
  margin-right: 15px;
}
.contact .container .lt .row em img {
  max-width: 100%;
  max-height: 100%;
}
.contact .container .lt .row .info h5 {
  font-size: 18px;
  color: #333;
  font-family: Arial;
}
.contact .container .lt .row .info h4 {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  word-break: break-all;
  font-family: Arial;
}
/* .contact .container .rt {
  width: 68.09859%;
} */
.contact .container .rt .map {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 61.92%;
  border: 1px solid #6889aa;
  overflow: hidden;
}
.contact .container .rt .map iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}
.company-info .container .block .pic span {
  font-weight: 700;
  width: 145px;
}
.about-us {
  margin: 0 0 1.927083%;
}
.about-us .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.about-us .container .block {
  width: 23.59155%;
  margin-bottom: 3%;
}
.about-us .container .block .pic {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 76.119403%;
  overflow: hidden;
}
.about-us .container .block .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.about-us .container .block .title {
  width: 100%;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 700;
  color: #000;
  font-size: 20px;
  border: 1px solid #aaa;
  line-height: 2.5;
}
.about-us .container .block .title a {
  color: #000;
}
.about-us .container .block:hover .pic img {
  transform: scale(1.05);
  opacity: 0.9;
}
.about-us .container .block:hover .title a {
  color: #6889aa;
}
.privacy-policy {
  margin-bottom: 3.75%;
}
.privacy-policy .container {
  font-size: 16px;
  color: #0d0d0d;
}
.privacy-policy h3 {
  font-size: 28px;
  color: #000;
  font-weight: 700;
}
.privacy-policy h4 {
  font-size: 22px;
  color: #0d0d0d;
}
.privacy-policy h5 {
  font-size: 20px;
  color: #000;
}
.privacy-policy p {
  font-size: 16px;
  color: #0d0d0d;
}
.privacy-policy hr {
  border: none;
  border-top: 1px solid #c5ccd2;
  margin: 1.1268% 0 1.5493%;
}
.privacy-policy ul {
  margin: 1.33803% 0 1.1972%;
}
.privacy-policy ul li {
  padding-left: 15px;
}
.privacy-policy ul li::before {
  content: "";
  width: 12px;
  height: 12px;
  display: inline-block;
  vertical-align: middle;
  background: url(../images/ul-icon.png) no-repeat;
  background-size: contain;
  margin-right: 5px;
}
.production-site {
  margin: 2.8125% 0 5.46875%;
}
.production-site .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.production-site .container .lt {
  width: 42.5352113%;
}
.production-site .container .lt .pic {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 68.211921%;
  overflow: hidden;
}
.production-site .container .lt .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.production-site .container .lt .swiper-button-next,
.production-site .container .lt .swiper-button-prev {
  width: 43px;
  height: 43px;
  background-color: #6889aa;
}
.production-site .container .lt .swiper-button-next::after,
.production-site .container .lt .swiper-button-prev::after {
  color: #fff;
  font-size: 24px;
}
.production-site .container .lt .swiper-button-next {
  right: 16px;
}
.production-site .container .lt .swiper-button-prev {
  left: 16px;
}
.production-site .container .rt {
  width: 52.11268%;
}
.production-site .container .rt .title {
  line-height: 1.6;
  margin-bottom: 6.4865%;
}
.production-site .container .rt .title h3 {
  font-size: 35px;
  color: #000;
  font-weight: 700;
}
.production-site .container .rt .title h4 {
  font-size: 30px;
  color: #000;
  font-weight: 700;
}
.production-site .container .rt .brief {
  width: 83.783784%;
  font-size: 18px;
  color: #000;
  line-height: 1.8;
}
.production-site .container .rt .brief p {
  margin-bottom: 2.581%;
}
.tech-research .container .lt .pic {
  padding-bottom: 79.801325%;
}
.tech-research .container .rt {
  width: 52.95775%;
}
.tech-research .container .rt .brief {
  width: 100%;
  font-size: 16px;
}
.tech-research .container .rt .brief p {
  margin-bottom: 1.59575%;
}
.prod-lv3 {
  margin: 2.8125% 0 0;
}
.prod-lv3 .prod-intro {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 2.887324%;
}
.prod-lv3 .prod-intro .lt {
  width: 49.5775%;
}
.prod-lv3 .prod-intro .lt .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 59.51705%;
}
.prod-lv3 .prod-intro .lt .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prod-lv3 .prod-intro .rt {
  width: 47.1831%;
  text-align: justify;
  padding-top: 1.4085%;
}
.prod-lv3 .prod-intro .rt h3 {
  font-size: 36px;
  color: #000;
  font-weight: 700;
  line-height: 1.7;
}
.prod-lv3 .prod-intro .rt h4 {
  font-size: 22px;
  color: #000;
  font-weight: 700;
  line-height: 1.8;
}
.prod-lv3 .prod-intro .rt h5 {
  font-size: 20px;
  color: #000;
  line-height: 1.8;
  margin-bottom: 6.26866%;
}
.prod-lv3 .prod-intro .rt p {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
}
.prod-lv3 .prod-tools {
  background-color: #f0f1f1;
  padding: 2.39437% 2.4648% 3.803%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 4.2254%;
}
.prod-lv3 .prod-tools h4 {
  font-size: 28px;
  color: #000;
  font-weight: 700;
  line-height: 1.7;
}
.prod-lv3 .prod-tools p {
  font-size: 20px;
  color: #333;
}
.prod-lv3 .prod-tools div {
  width: 45.03704%;
}
.prod-lv3 .prod-tools ul {
  margin-top: 3.2895%;
}
.prod-lv3 .prod-tools ul li {
  margin-bottom: 5px;
}
.prod-lv3 .prod-tools ul li a {
  min-width: 260px;
  max-width: 100%;
  display: inline-block;
  line-height: 40px;
  color: #fff;
  font-size: 18px;
  background-color: #6889aa;
  border-radius: 6px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 15px;
}
.prod-lv3 .prod-detail .prod-detail-tab {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 2.958%;
}
.prod-lv3 .prod-detail .prod-detail-tab li {
  width: 22.4648%;
  font-size: 18px;
  font-weight: 700;
  color: #000;
  border-bottom: 2px solid #c5ccd2;
  padding-bottom: 0.42254%;
  transition: all 0.5s;
  cursor: pointer;
}
.prod-lv3 .prod-detail .prod-detail-tab .active {
  border-color: #6889aa;
  color: #4f7ca9;
}
.prod-lv3 .prod-detail .prod-detail-content {
  position: relative;
  overflow: hidden;
  margin-bottom: 9.15493%;
}
.prod-lv3 .prod-detail .prod-detail-content .prod-detail-wrapper {
  position: absolute;
  transition: all 0.5s;
  width: 100%;
  top: 100%;
  opacity: 0;
  visibility: hidden;
}
.prod-lv3 .prod-detail .prod-detail-content .prod-detail-wrapper .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  border-bottom: 1px solid #6889aa;
  color: #4f7ca9;
  padding-bottom: 1.26761%;
  margin-bottom: 1.126761%;
}
.prod-lv3 .prod-detail .prod-detail-content .prod-detail-wrapper .row .lt {
  width: 80%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.prod-lv3 .prod-detail .prod-detail-content .prod-detail-wrapper .row .rt {
  width: 11.61972%;
  min-width: 75px;
  text-align: center;
}
.prod-lv3 .prod-detail .prod-detail-content .prod-detail-wrapper .row-title {
  padding-bottom: 0.6338%;
}
.prod-lv3 .prod-detail .prod-detail-content .prod-detail-wrapper .row-title .rt {
  color: #000;
}
.prod-lv3 .prod-detail .prod-detail-content .prod-detail-wrapper h4 {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  margin-bottom: 6px;
}
.prod-lv3 .prod-detail .prod-detail-content .prod-detail-wrapper h5 {
  font-size: 18px;
  color: #4f7ca9;
  margin-bottom: 5px;
}
.prod-lv3 .prod-detail .prod-detail-content .prod-detail-wrapper ul li {
  font-size: 16px;
  color: #000;
  margin-bottom: 2px;
  display: flex;
}
.prod-lv3 .prod-detail .prod-detail-content .prod-detail-wrapper ul li::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 6px;
  height: 6px;
  min-width: 6px;
  background-color: #6889aa;
  border-radius: 50%;
  margin-right: 11px;
  margin-top: 14px;
}
.prod-lv3 .prod-detail .prod-detail-content .show {
  opacity: 1;
  visibility: visible;
  top: 0;
  position: relative;
  z-index: 1;
}
.prod-lv3 .prod-detail .solution {
  margin-bottom: 2.6761%;
}
.prod-lv3 .prod-detail .solution .title {
  text-align: center;
  margin-bottom: 4.3662%;
}
.prod-lv3 .prod-detail .solution .title h3 {
  display: inline-block;
  position: relative;
  font-size: 28px;
  color: #000;
  font-weight: 700;
  padding-bottom: 1.26761%;
}
.prod-lv3 .prod-detail .solution .title h3::after {
  position: absolute;
  content: "";
  display: block;
  width: 178px;
  height: 4px;
  background-color: #c5ccd2;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
}
.prod-lv3 .prod-detail .solution .solution-wrapper {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.prod-lv3 .prod-detail .solution .solution-wrapper .block {
  width: 23.23944%;
  margin-bottom: 3%;
}
.prod-lv3 .prod-detail .solution .solution-wrapper .block .pic {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 72.42424%;
  overflow: hidden;
}
.prod-lv3 .prod-detail .solution .solution-wrapper .block .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.prod-lv3 .prod-detail .solution .solution-wrapper .block .pic span {
  position: absolute;
  display: inline-block;
  min-width: 116px;
  padding: 0 17px;
  max-width: 94%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  left: 50%;
  bottom: 13.80753%;
  transform: translate(-50%, 0);
  font-size: 14px;
  color: #000;
  background-color: #fff;
  border-radius: 6px;
  line-height: 40px;
  transition: all 0.5s;
  transform-origin: center;
}
.prod-lv3 .prod-detail .solution .solution-wrapper .block:hover .pic img {
  transform: scale(1.05);
  opacity: 0.9;
}
.prod-lv3 .prod-detail .solution .solution-wrapper .block:hover .pic span {
  transform: translate(-50%, 0) scale(1.1);
}
.faq {
  margin: 4.0104167% 0 4.427083%;
}
.faq table {
  width: 100%;
}
.faq table tr td {
  padding: 2.39437% 3.52113%;
  font-size: 16px;
  color: #000;
  line-height: 1.6;
  border: 1px solid #b3b3b3;
}
.faq table tr td:first-child {
  width: 20.141%;
}
.faq table tr:first-child td {
  border: 1px solid transparent;
  background-color: #6889aa;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  padding: 0 3.52113%;
  height: 60px;
}
.faq .tips {
  color: #6889aa;
  font-size: 20px;
  font-weight: 700;
  margin-top: 2.5352113%;
}

.jxz-con .jxz-items .jxz-content .jxz-tj >div {
  flex: 1;
}

.msg {
  padding: 25vh 0 35vh;
  text-align: center;

}
.msg h3 {
  font-size: 32px;
}
.msg h3 span {
  color: #fecc00;
}