@charset "utf-8";
/* CSS Document */
@font-face {
  src: url(../fonts/SourceHanSansCN-Regular.otf);
  font-family: 'myfont';
}
@font-face {
  src: url(../fonts/impact.ttf);
  font-family: 'num';
}
@font-face {
  src: url(../fonts/Barlow-Regular.ttf);
  font-family: 'en';
}
@font-face {
  font-family: 'iconfont';
  src: url(../icons/iconfont.eot);
  src: url(../icons/iconfont.eot?#iefix) format('embedded-opentype'),
    url(../icons/iconfont.woff) format('woff'),
    url(../icons/iconfont.ttf) format('truetype'),
    url(../icons/iconfont.svg#iconfont) format('svg');
}
.iconfont {
  font-family: 'iconfont' !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke-width: 0.2px;
  -moz-osx-font-smoothing: grayscale;
}
* {
  padding: 0;
  margin: 0;
  border: none;
  outline: none;

  color: #666;
  list-style: none;
  font-family: 'myfont';
}

p {
  font-size: 1.6rem;
  line-height: 1.8;
  margin: 1rem 0;
  color: rgba(95, 105, 115, 1);
}
img {
  display: block;
}
.clear {
  clear: both;
}
a {
  text-decoration: none;
  color: #666;
}
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background-color: #f0f0f0;
}

::-webkit-scrollbar-thumb {
  background-color: #eb4b31;
  border-radius: 10px;
}
.w_all {
  width: 94%;
  margin: auto;
}
.w_all2 {
  width: 80%;
  margin: auto;
}
::selection {
  background-color: #eb4b31;
  color: white;
}
/*index*/
html,
body {
  width: 100%;
  position: relative;
  font-size: 62.5%;
}
header {
  width: 100%;
  position: fixed;
  left: 0%;
  top: 0;
  z-index: 9999;
  transition: all 0.5s ease;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.nav_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  height: 56px;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.logo img {
  display: block;
  height: 100%;
}
header.active .logo {
  height: 50px;
}
.navbox {
  display: flex;
  align-items: center;
}
.nav_box ul {
  display: flex;
}
.nav_box ul li {
  position: relative;
  padding: 0px 1.8vw;
  height: 90px;
  display: flex;
  align-items: center;
  transition: all ease 0.3s;
}
header.active .nav_box ul li {
  height: 76px;
}
.nav_box ul li h3 {
  font-size: 1.8rem;
  line-height: 1.5;
  position: relative;
  color: #fff;
  font-weight: normal;
  cursor: pointer;
  transition: all ease 0.3s;
  color: #333;
  z-index: 3;
  padding: 0 1.5rem;
}

.nav_box ul li:hover h3 {
  color: #eb4b31;
}
.nav_box ul li h3::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 137px;
  height: 78px;
  background: url(../images/line.png) no-repeat 90% 0%/20%;
  opacity: 0;
  transition: all ease 0.3s;
}
.nav_box ul li h3::after {
  content: '';
  position: absolute;
  left: 0%;
  bottom: 0%;
  width: 137px;
  height: 78px;
  background: url(../images/line2.png) no-repeat 10% 100%/20%;
  opacity: 0;
  transition: all ease 0.3s;
}
.nav_box ul li:hover h3:before {
  opacity: 1;
  background-position: 100% 0%;
}
.nav_box ul li:hover h3:after {
  opacity: 1;
  background-position: 0% 100%;
}
.n_right {
  position: relative;
}
.n_right .bb {
  display: flex;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1rem 2.5rem;
  border-radius: 40px;
  color: #333;
  font-size: 1.6rem;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.n_right i {
  color: #333;
  font-size: 2rem;
  margin-left: 1rem;
}
.n_right .language {
  border-radius: 30px 30px 0 0;
  position: absolute;
  top: 0;
  padding-top: 50px;
  color: #333;
  right: 0;
  width: 100%;
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  pointer-events: none;
  box-shadow: 0 10px 50px rgba(54, 56, 79, 0.11);
  background: #fff;
}
.n_right:hover .language {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.n_right .language a {
  font-size: 1.5rem;
  padding: 1rem 0;
  display: block;
  text-align: center;
  transition: all ease 0.3s;
}
.n_right .language a:hover {
  background: #eb4b31;
  color: #fff;
}

.s_menu {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  top: 100%;
  text-align: center;
  display: none;
  z-index: 999;
  background: #fff;
  padding: 1rem 3rem;
  box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%);
  width: max-content;
}
.s_menu dl dd {
  padding: 6px 0;
  font-size: 1.5rem;
  background: #fff;
  transition: all 0.3s linear;
  cursor: pointer;
}
.s_menu dl dd:hover {
  color: #eb4b31;
}
.navBtn {
  position: relative;
  z-index: 99999;
  cursor: pointer;
  display: none;
}
.navBtn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1a1a1a;
  margin: 5px auto;
}
.nav_btn_active {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.nav_btn_active span:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.nav_btn_active span:nth-of-type(2) {
  opacity: 0;
}
.nav_btn_active span:nth-of-type(3) {
  margin-top: -60%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.banner {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.banner .swiper-slide {
  width: 100%;
  height: 100vh;
  position: relative;
}
.banner b {
  width: 100%;
  height: 100%;
  display: block;
  transition: all ease 5.5s;
  transform: scale(1);
}
.banner .swiper-slide-active b {
  -webkit-transform: scale(1);
  transform: scale(1.1);
}

.banner .txt {
  position: absolute;
  left: 50%;
  top: 52%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.banner .txt h2 {
  font-size: 6.6rem;
  color: #fff;
  text-shadow: 0 2px 2px rgb(0 0 0 / 55%);
  font-weight: bold;
  transition: all ease 0.8s 0.3s;
  margin-bottom: 1.5rem;
  transform: translateY(30px);
  opacity: 0;
  letter-spacing: 2px;
}
.banner .txt p {
  width: 50%;
  font-size: 2rem;
  color: #fff;
  line-height: 2;
  text-shadow: 0 2px 2px rgb(0 0 0 / 55%);
  transition: all ease 0.8s 0.8s;
  transform: translateY(30px);
  opacity: 0;
}
.banner .swiper-slide-active .txt h2 {
  transform: translateY(0px);
  opacity: 1;
}
.banner .swiper-slide-active .txt p {
  transform: translateY(0px);
  opacity: 1;
}
.banner .more {
  transition: all ease 0.8s 1s;
  transform: translateY(30px);
  opacity: 0;
  margin-top: 6rem;
}
.banner .swiper-slide-active .more {
  transform: translateY(0px);
  opacity: 1;
}
.btn {
  position: absolute;
  right: 3rem;
  bottom: 3%;
  z-index: 99;
}
.btn .ll {
  border-radius: 50%;
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s linear;
  background: #eb4b31;
  margin: 1rem 0;
}
.btn i {
  display: block;
  font-size: 2rem;
  color: #fff;
  display: block;
}
.btn .llr i {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.btn .ll:hover i {
  color: #fff;
}
.banner .rr {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 3%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
}
.banner .swiper-pagination {
  position: static !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner .swiper-pagination span {
  margin: 0 5px !important;
  background: #fff;
  opacity: 0.6 !important;
  width: 40px !important;
  height: 4px !important;
  border-radius: 3px;
  transition: all ease 0.3s;
  display: block;
}
.banner .swiper-pagination span.swiper-pagination-bullet-active {
  background: #eb4b31;
  opacity: 1 !important;
}
.more {
  width: max-content;
  margin: 3rem 0 0;
  padding: 14px 30px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid #eb4b31;
}
.more::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: #eb4b31;
  transition: transform cubic-bezier(0.4, 0, 0.2, 1) 0.25s;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.more:hover::before {
  transform: none;
  transform-origin: 0% 50%;
}
.more::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-left: 2rem;
  background: #eb4b31;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}
.more span {
  color: #eb4b31;
  font-size: 1.6rem;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}
.more:hover span {
  color: #fff;
}
.more:hover::after {
  background: #fff;
}
.more i {
  color: #fff;
  margin-left: 15px;
  font-size: 2rem;
  display: block;
  position: relative;
  z-index: 2;
  transform: rotate(-180deg);
}
.more:hover i {
  animation: shuffle 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes shuffle {
  50% {
    transform: translateX(100%) rotate(-180deg);
  }

  50.01% {
    transform: translateX(-100%) rotate(-180deg);
  }
}
.index_bars {
  padding: 6% 0;
  position: relative;
}
.title {
  margin-bottom: 2%;
}
.title h3 {
  font-size: 4rem;
  color: #0074c8;
  line-height: 1.4;
}
.title h6 {
  color: #0074c8;
  line-height: 1;
  letter-spacing: 0px;
  font-size: 1.8rem;
  font-family: 'en';
}
.title .lines {
  display: flex;
  justify-content: center;
  margin: 1rem 0 2rem;
}
.index_pro .title {
  text-align: center;
}
.index_pro .btn {
  position: static;
  display: none;
}
.index_pro .btn .ll {
  background: rgba(0, 116, 200, 0.4);
}
.index_pro .contain {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.index_pro .box {
  width: 88%;
}
.index_pro .swiper-slide {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.index_pro b {
  display: block;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 55vh;
  border-radius: 10px;
}
.index_pro b img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.imgScale img {
  width: 100%;
  display: block;
  transition: all ease 0.3s;
  overflow: hidden;
}
.imgScale:hover img {
  transform: scale(0.9);
}
.imgScale2 img {
  width: 100%;
  display: block;
  transition: all ease 0.3s;
}
.imgScale2:hover img {
  transform: scale(1.08);
}
.index_pro .tt {
  padding: 3% 5%;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 6;
  width: 100%;
}
.index_pro .tt h4 {
  color: #fff;
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  transition: all ease 0.5s;
  overflow: hidden;
  text-align: center;
}
.index_pro .swiper-slide b::before {
  content: '';
  width: 100%;
  height: 50%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  transition: all ease 0.5s;
  opacity: 0;
}
.index_pro .swiper-slide:hover b::before {
  opacity: 1;
  height: 100%;
}
.index_about .contain0 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.index_about .contain0 .title {
  width: 46%;
  padding: 5% 0;
}
.index_about .contain0 .title h3 {
  color: #1a1a1a;
  margin-top: 1rem;
}
.index_about .title .tt {
  margin: 3rem auto;
}
.index_about .title p {
  color: #666;
  line-height: 2;
  text-align: justify;
}
.index_about .contain0 .rr {
  width: 46%;
  border-radius: 2rem;
}
.index_about dl {
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  margin-top: 5%;
}
.index_about dl dd {
  font-size: 2rem;
  color: #eb4b31;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  width: 20%;
}
.index_about dl dd strong {
  font-size: 5.6rem;
  color: #eb4b31;
  font-family: 'en';
  margin-right: 6px;
}
.index_about dl dd span {
  display: block;
  font-size: 1.8rem;
  font-style: normal;
  color: #333;
  margin-top: 2rem;
  font-weight: normal;
}
.index_case {
  position: relative;
  width: 100%;
  height: 75vh;
  overflow: hidden;
}
.index_case .imgs {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.index_case .imgs .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: none;
}
.index_case .imgs .bg:nth-of-type(1) {
  display: block;
}
.index_case .txt {
  position: absolute;
  left: 50%;
  top: 10%;
  transform: translateX(-50%);
  z-index: 6;
}
.index_case .txt .title {
  text-align: left;
}
.index_case .txt .title h3 {
  color: #fff;
}
.index_case .txt .title p {
  color: #fff;
  letter-spacing: 1px;
  width: 50%;
  margin: 1.5rem 0 4rem;
}
.index_case ul {
  display: flex;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 7%;
}
.index_case ul li {
  width: 30rem;
  margin-right: 3rem;
  display: block;
  border-radius: 20px;
  background: rgba(107, 107, 107, 0.6);
  backdrop-filter: blur(10px);
  padding: 30px;
  height: 180px;
  transition: all 0.5s;
  cursor: pointer;
  box-sizing: border-box;
}
.index_case ul li:hover,
.index_case ul li.active {
  background: rgba(255, 255, 255, 0.8);
}
.index_case ul li h6 {
  display: flex;
  font-size: 1.6rem;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  line-height: 1;
  font-weight: normal;
  transition: all 0.3s linear;
}
.index_case ul li h6 img {
  height: 5rem;
  filter: grayscale(100%) brightness(1000%);
}
.index_case ul li:hover h6 img,
.index_case ul li.active h6 img {
  filter: none;
}
.index_case ul li h4 {
  color: #fff;
  font-size: 2rem;
  margin: 2.5rem 0 0;
  transition: all 0.3s linear;
  letter-spacing: 1px;
}
.index_case ul li:hover h4,
.index_case ul li:hover h6 {
  color: #eb4b31;
}
.index_case ul li.active h4,
.index_case ul li.active h6 {
  color: #eb4b31;
}
.message {
  background: #f6f6f6;
}
.message .contain {
  display: flex;
  justify-content: space-between;
}
.message .contain .title {
  width: 46%;
}
.message .contain .title p {
  font-size: 2.2rem;
  margin-top: 3rem;
  color: #333;
}
.message .contain .online {
  width: 50%;
}
.message .online .inps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.message .online .inps p.pp1 {
  width: 32%;
}
.message .online .inps p.pp2 {
  width: 48%;
}
.message .online .inps p.pp3 {
  width: 100%;
}
.message .online .inps p {
  border: 1px solid #e2e2e2;
  background: #eee;
  border-radius: 8px;
  padding: 1.5rem 1.5rem;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  margin: 0 0 2rem;
}
.message .online .inps p img {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
}
.message .online .inputs {
  font-size: 1.6rem;
  background: none;
  display: block;
  line-height: 1.4;
  padding: 0;
  color: #333;
  width: 100%;
  box-shadow: none;
  border: none;
  box-sizing: border-box;
}
.message ::placeholder {
  color: #777;
}
.message .online textarea {
  min-height: 14vh;
}
.message .submit {
  display: flex;
  justify-content: center;
}
.message .submit button {
  display: block;
  background: none;
  display: inline-block;
  line-height: 40px;
  width: 100%;
  padding: 8px 0;
  margin: 1rem auto 0;
  background: #eb4b31;
  color: #fff;
  font-size: 1.6rem;
  border: none;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  cursor: pointer;
  border-radius: 1rem;
  letter-spacing: 1px;
}
.message .submit button:hover {
  background: #0374c2;
}
.footer {
  position: relative;
  z-index: 9;
  color: #fff;
}
.footer .contain {
  display: flex;
  padding: 4% 0 0;
  justify-content: space-between;
}

.footer .rr {
  width: 24%;
}
.footer .logo2 img {
  height: 6rem;
  margin-bottom: 4rem;
}
.footer .rr p {
  font-size: 1.4rem;
  color: #fff;
  display: flex;
  align-items: center;
  margin: 2rem 0;
  line-height: 1;
}
.footer .rr p i {
  margin-right: 1rem;
  color: #fff;
  font-size: 2rem;
}

.footer dl dt {
  margin: 0 0 2rem;
  color: #fff;
  font-size: 1.8rem;
}
.footer dl dd {
  margin: 1.5rem 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.4rem;
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
}
.footer dl dd:hover {
  color: #fff;
}

.footer .copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3rem 0;
}
.footer .links {
  position: relative;
  display: flex;
}
.footer .links .ewm {
  height: 10rem;
  margin-right: 2rem;
  text-align: center;
  color: #fff;
  font-size: 1.4rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 120%;
  transition: all 0.5s ease;
  opacity: 0;
}
.footer .ew {
  margin-right: 1.8rem;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.footer .ew img:first-of-type {
  height: 2.4rem;
  border-radius: 50%;
  padding: 0.6rem;
}
.footer .links .ew:hover {
  overflow: inherit;
}
.footer .links .ew:hover img:first-of-type {
  background: #eb4b31;
  transition: all 0.5s ease;
}
.footer .links .ew:hover .ewm {
  opacity: 1;
  bottom: 100%;
}
.footer .copyright .box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer .copyright p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.4rem;
  margin-left: 3rem;
}
.footer .copyright a {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s linear;
  margin-left: 3rem;
}
.footer .copyright a:hover {
  color: #fff;
}
.all_back {
  position: absolute;
  right: 2%;
  bottom: 3rem;
  background: #eb4b31;
  cursor: pointer;
  padding: 0.9rem 1.1rem;
  transition: all 0.3s linear;
  border-radius: 50%;
}
.all_back i {
  color: #fff;
  font-size: 2rem;
  display: block;
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
  transition: all 0.3s linear;
}
.all_back:hover {
  background: #0074c8;
}
.all_back:hover i {
  color: #fff;
}
.o_ban {
  height: 35vw;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
}
.o_ban img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.o_ban .txt {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
}
.o_ban .txt h2 {
  font-size: 5.4rem;
  color: #fff;
  font-weight: bold;
  margin-top: 90px;
  letter-spacing: 5px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
}
.o_ban .txt p {
  font-size: 2rem;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
}
main {
  margin-top: 35vw;
  position: relative;
  z-index: 9;
  background: #fff;
}
.all_nav {
  background: #f6f6f6;
  position: relative;
  z-index: 999;
  width: 100%;
  padding: 2.5rem 0;
}
.all_nav ul {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.all_nav ul .ll {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.all_nav ul li {
  color: #333;
  font-size: 1.6rem;
  float: left;
  background: #fff;
  padding: 10px 35px;
  border-radius: 8px;
  margin-right: 5rem;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.all_nav ul li.active,
.all_nav ul li:hover {
  background: #eb4b31;
  color: #fff;
}
.all_nav ul .right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0.8;
  font-size: 1.4rem;
  color: #888;
}
.all_nav ul .right img {
  width: 1.8rem;
  margin-right: 5px;
  margin-top: -2px;
}
.all_nav ul .right span {
  font-size: 1.4rem;
  margin: 0 10px;
  color: #333;
}
.all_nav ul .right a {
  font-size: 1.4rem;
  margin: 0 10px;
  color: #888;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  display: flex;
  align-items: center;
}
.all_nav ul .right a:hover {
  color: #eb4b31;
}
.title2 {
  margin-bottom: 3rem;
}
.title2 h1 {
  font-size: 3.4rem;
  color: #0078c9;
  text-transform: uppercase;
}
.title2 h3 {
  font-size: 1.8rem;
  font-weight: bold;
  color: rgb(6, 49, 129);
  margin-top: 0.8rem;
}

.pages {
  text-align: center;
  padding-top: 2rem;
}
.pages a {
  margin: 3px;
  background: #eee;
  font-size: 1.3rem;
  color: #333;
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.5s ease;
  border: 1px rgba(0, 0, 0, 0.4) solid;
}
.pages a.active,
.pages a:hover {
  background: #eb4b31;
  color: #fff;
  border-color: transparent;
}
.title3 h3 {
  font-family: 'num';
  color: rgba(32, 32, 32, 1);
  font-size: 4.8rem;
}
.title3 h2 {
  font-size: 1.6rem;
  color: #333;
  margin-top: 0.5rem;
}
.contact .contain {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.contact .contain .ll {
  width: 46%;
}
.contact h4 {
  color: #333;
  margin-bottom: 2rem;
  font-size: 3.6rem;
  color: #0076d3;
}
.contact ul li {
  padding: 2rem 0;
  box-sizing: border-box;
  font-size: 1.6rem;
  color: rgba(3, 3, 3, 0.3);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.contact ul li p {
  font-size: 1.6rem;
  color: #333;
  margin: 5px 0 0;
  transition: all 0.5s ease;
  line-height: 1.4;
}
.contact ul li p:hover {
  color: #eb4b31;
  text-decoration: underline;
}
.contact ul li .links {
  position: relative;
  display: flex;
}
.contact ul li .links .ewm {
  height: 10rem;
  margin-right: 2rem;
  text-align: center;
  color: #fff;
  font-size: 1.4rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 120%;
  transition: all 0.5s ease;
  opacity: 0;
}
.contact ul li .ew {
  margin-right: 1.8rem;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  margin-top: 2rem;
}
.contact ul li .ew img:first-of-type {
  height: 2.4rem;
  border-radius: 50%;
  padding: 0.6rem;
  background: rgba(0, 0, 0, 0.28);
}
.contact ul li .links .ew:hover {
  overflow: inherit;
}
.contact ul li .links .ew:hover img:first-of-type {
  background: #eb4b31;
  transition: all 0.5s ease;
}
.contact ul li .links .ew:hover .ewm {
  opacity: 1;
  bottom: 100%;
}
.contact .contain .rr {
  width: 40%;
}
.contact .contain .rr .title2 p {
  font-size: 1.8rem;
  color: #333;
}
.contact .contain .rr p span {
  font-size: 1.8rem;
  color: #eb4b31;
}
.contact .contain .rr .inps p {
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  font-size: 1.6rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.contact .contain .rr .inps p img {
  width: 2.5rem;
  opacity: 0.5;
}
.contact .contain .rr p .inputs {
  font-size: 1.6rem;
  color: #666;
  width: 100%;
  line-height: 80px;
}
.contact .contain .rr select {
  width: 100%;
  display: block;
  font-size: 1.6rem;
  color: #666;
  height: 80px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.contact .contain .rr select option {
  font-size: 1.6rem;
  color: #666;
}
.contact .contain .rr .submit button {
  background: #0076d3;
  color: #fff;
  font-size: 1.6rem;
  padding: 14px 7rem;
  border-radius: 40px;
  cursor: pointer;
  margin-top: 4rem;
  transition: all 0.5s ease;
}
.contact .contain .rr .submit button:hover {
  background: #eb4b31;
}
/* 案例 */
.cases .title2 h1 {
  color: #fff;
  text-align: center;
}
.cases ul {
  display: flex;
  flex-wrap: wrap;
}
.cases ul li {
  width: 31.3%;
  margin-right: 3%;
  margin-top: 3%;
  border-radius: 2rem;
  background: #fff;
  overflow: hidden;
}
.cases ul li:nth-of-type(3n) {
  margin-right: 0;
}
.cases ul li img {
  width: 100%;
}
.cases ul li .txt {
  padding: 3rem;
  text-align: center;
}
.cases ul li .txt h6 {
  font-size: 1.9rem;
  color: #1a1a1a;
  font-weight: normal;
}
.contact_case .title2 {
  text-align: center;
}
.contact_case .contain .rr {
  width: 100%;
}
.contact_case .contain .inps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.contact_case .contain .pp {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0 2rem;
  margin: 2rem 0;
  border-radius: 1.5rem;
}
.contact_case .contain .pp2 {
  width: 48.5%;
}
.contact_case .contain .rr p .inputs {
  line-height: 70px;
}
.contact_case .contain .rr select {
  width: 48%;
  height: 70px;
}
.contact_case .bottom {
  display: flex;
  justify-content: center;
}
.contact_case .bottom .submit {
  margin: 0 1.5rem;
}
.contact_case .bottom .reset button {
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: none !important;
  color: #666 !important;
}
.contact_case .bottom .reset:hover button {
  background: #eb4b31 !important;
  color: #fff !important;
  border-color: transparent;
}
.about .contain0 .title {
  padding: 0;
}
.about dl dd strong {
  font-size: 5rem;
}
.about dl dd span {
  margin-top: 0.5rem;
  font-size: 1.4rem;
}
.culture .title2 h1 {
  text-align: center;
}
.culture ul {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 70vh;
}
.culture ul li {
  width: 33.3%;
  height: 100%;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  box-sizing: border-box;
  text-align: center;
  position: relative;
  color: #fff;
  overflow: hidden;
}
.culture ul li h3 {
  color: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  font-size: 2.2rem;
  padding: 4rem;
  letter-spacing: 1px;
  font-weight: normal;
}
.culture ul li .txt {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 100%;
  transform: scaleY(0);
  background: #eb4b31;
  padding: 8%;
  box-sizing: border-box;
  transform-origin: 100% 100%;
  transition: all 0.3s linear;
}
.culture ul li b {
  height: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.culture ul li b img {
  width: 5.5rem;
}
.culture ul li .tt {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.3s linear 0.4s;
}
.culture ul li h6 {
  color: #fff;
  font-size: 2.2rem;
  letter-spacing: 1px;
  font-weight: normal;
  margin-bottom: 2rem;
}
.culture ul li p {
  color: #fff;
  opacity: 0.7;
}
.culture ul li:hover h3 {
  opacity: 0;
}
.culture ul li:hover .txt {
  transform: scaleY(1);
}
.culture ul li:hover .tt {
  opacity: 1;
  transform: translateY(0px);
}

.about2 {
  background: #f6f6f6;
}
.about2 .title2 {
  text-align: center;
}
.about2 .contain {
  position: relative;
}
.about2 .swiper-container {
  width: 90%;
  margin: auto;
  position: relative;
  z-index: 3;
}
.about2 .swiper-slide {
  text-align: center;
  font-size: 1.7rem;
  display: block;
  color: #333;
  transition: all 0.3s linear;
}
.about2 .swiper-slide:hover {
  color: #eb4b31;
}
.about2 b {
  width: 100%;
  display: block;
  overflow: hidden;
  margin: 0 0 2rem;
  border-radius: 2rem;
  border: 5px solid #ddd;
  box-sizing: border-box;
}
.about2 b img {
  width: 100%;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  position: relative;
}
.about2 .swiper-slide:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  z-index: 6;
}
.about2 .btn {
  width: 100%;
  right: inherit;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.about2 .btn .ll {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.about2 .btn .lll {
  left: initial;
  right: 0;
}
.about2 .swiper-pagination {
  display: flex;
  justify-content: center;
  width: 100%;
}
.about2 .swiper-pagination span {
  margin: 3rem 6px 0;
}
.about2 .swiper-pagination span.swiper-pagination-bullet-active {
  background: #eb4b31;
}
.factory .title2 {
  text-align: center;
}
.factory ul {
  display: flex;
  flex-wrap: wrap;
}
.factory ul li {
  width: 31.3%;
  margin: 1% 3% 2% 0;
  text-align: center;
}
.factory ul li:nth-of-type(3n) {
  margin-right: 0;
}
.factory ul li b {
  width: 100%;
  overflow: hidden;
  border-radius: 2rem;
  display: block;
}
.factory ul li img {
  width: 100%;
  transition: all 0.4s ease;
}
.factory ul li:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.factory ul li h3 {
  font-size: 2rem;
  font-weight: normal;
  margin-top: 2rem;
  color: #1a1a1a;
  transition: all 0.3s linear;
}
.factory ul li:hover h3 {
  color: #eb4b31;
}
.info .title2 h1 {
  text-align: center;
}
.info .title2 .tt {
  margin: 3% 0 0;
}
.info .title2 .tt p {
  line-height: 2;
  margin: 2rem 0;
  text-align: justify;
  text-indent: 2em;
}
.info .title2 .tt p strong {
  font-size: 1.6rem;
  color: #eb4b31;
  margin-bottom: -1.5rem;
  display: block;
}
.pross .contain {
  display: flex;
  justify-content: space-between;
}
.pross .ll {
  position: relative;
  width: 240px;
  box-sizing: border-box;
  height: 100%;
}
.pross .ss {
  position: relative;
  width: 100%;
  border-bottom: 2px solid #eee;

  padding: 2rem 0;
}
.pross .ss a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.6rem;
  color: #1a1a1a;
  transition: all 0.5s ease;
}
.pross .ss a img {
  width: 2rem;
  filter: grayscale(100%);
}
.pross .ss.active a,
.pross .ss:hover a {
  color: #eb4b31;
}
.pross .ss.active a img,
.pross .ss:hover img {
  filter: grayscale(0%);
}
.pross .rr {
  width: calc(100% - 300px);
  height: 100%;
}
.pro .rr ul {
  display: flex;
  flex-wrap: wrap;
}
.pro .rr ul li {
  width: 31.3%;
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.04);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  text-align: center;
  margin-right: 3%;
  margin-bottom: 3%;
}
.pro .rr ul li:nth-of-type(3n) {
  margin-right: 0;
}
.pro .rr ul li b {
  overflow: hidden;
  width: 100%;
  display: block;
}
.pro .rr ul li b img {
  width: 100%;
  transition: all 0.3s linear;
}
.pro .rr ul li:hover b img {
  transform: scale(1.1);
}
.pro .rr ul li .txt {
  padding: 4rem 0 2rem;
}
.pro .rr ul li h3 {
  font-size: 2rem;
  color: #0075c5;
  transition: all 0.3s linear;
}
.pro .rr ul li:hover h3 {
  color: #eb4b31;
}
.pro .mores {
  background: #eb4b31;
  padding: 2rem;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  transform: scale(0);
  transform-origin: 50% 50%;
  transition: all 0.3s ease-in-out;
  z-index: 9;
}
.pro .mores img {
  width: 2.5rem;
  filter: grayscale(100%) brightness(1000%);
}
.pro .rr ul li:hover .mores {
  transform: scale(1) translate(-50%, -50%);
}
.pro .more span {
  font-size: 1.3rem;
}
.all_navp {
  margin-top: 90px;
}
.prod {
  width: 100%;
  overflow: hidden;
}
.prod .pbar1 {
  display: flex;
  justify-content: space-between;
}
.prod .rr .imgs {
  width: 49.5%;
}

.prod .rr .imgs img {
  width: 100%;
  border-radius: 1rem;
}
.prod .rr .imgs .swiper-container {
  width: 85%;
  margin: 2% auto 0;
  position: relative;
  z-index: 100;
}
.prod .rr .imgs .bot {
  position: relative;
}
.prod .rr .imgs .swiper-slide {
  border: 2px solid transparent;
  transition: all 0.5s ease;
  cursor: pointer;
  border-radius: 1rem;
}
.prod .rr .imgs .swiper-slide-active {
  border-color: #eb4b31;
}
.prod .rr .imgs .btn {
  right: inherit;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  height: 100%;
  align-items: center;
}
.prod .rr .imgs .ll {
  width: 4rem;
  height: 4rem;
  padding: 0;
  background: none;
}
.prod .rr .imgs .ll i {
  color: #333;
}
.prod .rr .pbar1 .txt {
  width: 48%;
  padding: 3% 3%;
  box-sizing: border-box;
}
.prod .rr .pbar1 h3 {
  font-size: 2.8rem;
  color: #0074c7;
  margin-bottom: 2rem;
}
.prod .rr .pbar1 p {
  line-height: 1.8;
  font-size: 1.6rem;
}
.prod .rr .pbar1 .tt0 p {
  margin: 3px 0;
  color: #333;
}
.prod .rr .pbar1 .tts {
  margin-top: 1rem;
}
.prod .rr .pbar1 table {
  width: 100%;
}
.prod .rr .pbar1 table tr td {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1.8rem 0;
  font-size: 1.5rem;
  line-height: 1.8;
  color: #666;
}
.prod .rr .pbar1 table tr td:first-of-type {
  color: #1a1a1a;
}
.big_box {
  position: fixed;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 9999999999;
  display: none;
}
.big_imgss {
  position: absolute;
  height: 85%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.big_imgss.active {
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}
.big_box .big_imgss img {
  display: block;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.big_box .righttop {
  position: fixed;
  right: 0px;
  top: 0px;
  z-index: 9;
  padding: 15px;
}
.big_box .righttop div {
  float: right;
}
.big_box .righttop img {
  margin: 0;
  height: 4rem;
  cursor: pointer;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.big_box .righttop img:hover {
  opacity: 0.6 !important;
}
html[lang='en'] * {
  letter-spacing: 0 !important;
}
html[lang='en'] body,
html {
  font-size: 58.5%;
}
