@charset "UTF-8";
/**
 * @desc cx_style
 * @author Tven
 * @date 2023-04-03
 */
@font-face {
  font-family: 'Montserrat-Regular';
  src: url("../fonts/Montserrat-Regular.otf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat-light';
  src: url("../fonts/Montserrat-light.otf");
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: 'Montserrat-Regular';
}

/* header
---------------------------------------------------------------- */
.pc_xiala.active {
  opacity: 1;
}

.pc_xiala {
  width: 100%;
  height: 6.875rem;
  opacity: 0;
  transition: all 0.5s ease-out;
  position: fixed;
  z-index: 989;
  top: 0;
  left: 0;
  background-image: linear-gradient(to bottom, #051954, #1078e3);
  pointer-events: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5.625rem;
  z-index: 990;
  transition: all 0.5s ease-out;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.header.active {
  background: #00a0e9;
  box-shadow: 0 0 1rem rgba(0, 160, 233, 0.85);
}

.header.cur {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.header.cur .logo a img:first-child {
  display: none;
}

.header.cur .logo a img:last-child {
  display: block;
}

.header.cur .pc_nav > ul > li.active a {
  color: #00a0e9;
}

.header.cur .pc_nav > ul > li:hover a {
  color: #00a0e9;
}

.header.cur .pc_nav > ul > li > a {
  color: #020202;
}

.header.cur .pc_nav > ul > li > a::after {
  background: #00a0e9;
}

.header.cur .head_more_search > i {
  color: #020202;
}

.header.cur .head_more_search .search_box i {
  color: #fff;
}

.header.cur .head_more_search .search_box input {
  background: rgba(0, 0, 0, 0.5);
}

.logo {
  height: 100%;
  position: absolute;
  left: 15px;
  top: 0;
}

.logo.cur a img:first-child {
  display: none;
}

.logo.cur a img:last-child {
  display: block;
}

.logo a {
  height: 100%;
}

.logo a img {
  height: 1.8125rem;
}

.logo a img:last-child {
  display: none;
}

.pc_nav > ul > li {
  height: 5.625rem;
  margin-left: 5rem;
  position: relative;
}

.pc_nav > ul > li:last-child {
  padding-right: 0;
}

.pc_nav > ul > li.menu_show {
  display: flex;
  justify-content: start;
  align-items: center;
}

.pc_nav > ul > li.menu_show.cur ul {
  display: block;
}

.pc_nav > ul > li.menu_show.cur > i {
  transform: rotate(90deg);
}

.pc_nav > ul > li.menu_show > a {
  width: auto;
}

.pc_nav > ul > li.menu_show > i {
  display: none;
  color: #fff;
  margin-left: 1rem;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.pc_nav > ul > li > a {
  font-size: 1.125rem;
  color: #fff;
  white-space: nowrap;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
}

.pc_nav > ul > li > a::after {
  content: "";
  width: 100%;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: all 0.3s ease;
}

.pc_nav > ul > li.active > a::after {
  opacity: 1;
}

.pc_nav > ul > li:hover .erji {
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0.3s;
}

.pc_nav > ul > li ul {
  display: none;
  margin-top: .5rem;
}

.pc_nav > ul > li ul li a {
  color: #fff;
  font-size: 1.5rem;
  opacity: 0.75;
}

.pc_nav.cur > ul > li.active a {
  color: #00a0e9;
}

.pc_nav.cur > ul > li:hover a {
  color: #00a0e9;
}

.pc_nav.cur > ul > li > a {
  color: #020202;
}

.pc_nav.cur > ul > li > a::after {
  background: #00a0e9;
}

.head_more_search {
  position: relative;
  cursor: pointer;
  margin-left: 4.25rem;
}

.head_more_search.cur > i {
  color: #333;
}

.head_more_search i {
  font-size: 1.5rem;
  color: #fff;
}

.head_more_search .search_box {
  display: flex;
  position: absolute;
  top: 100%;
  right: 0;
  width: 18.75rem;
  height: 2.875rem;
  background: rgba(255, 255, 255, 0.3);
  border-radius: .5rem;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.head_more_search .search_box.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(1.75rem);
}

.head_more_search .search_box i {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
}

.head_more_search .search_box input {
  width: calc(100% - 6.25rem);
  height: 2.875rem;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: 1.125rem;
  padding-left: 3.5rem;
}

.head_more_search .search_box button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6.25rem;
  height: 2.875rem;
  background: #00a0e9;
  color: #fff;
  border: none;
  border-top-right-radius: .5rem;
  border-bottom-right-radius: .5rem;
  outline: none;
  font-size: 1.125rem;
}

.head_more_search .search_box button:focus {
  filter: brightness(0.9);
}

.menu {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  margin: 0 auto;
  padding-top: 5.625rem;
}

.menu.cur .container {
  opacity: 1;
}

.menu .container {
  position: relative;
  height: 0;
  opacity: 0;
  overflow: visible;
  transition: all 0.5s ease-out;
}

.menu .container::after {
  position: absolute;
  top: -5.625rem;
  left: -2.1875rem;
  z-index: -1;
  content: '';
  width: calc(100% + 4.375rem);
  height: calc(100% + 5.625rem);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(0.5rem);
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.2);
}

.menu .container::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -2.1875rem;
  width: calc(100% + 4.375rem);
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
}

.menu .menu_link {
  display: none;
  padding: 3.125rem 0;
  justify-content: space-between;
}

.menu .menu_link.active {
  display: block;
}

.menu .menu_link .flex {
  justify-content: space-between;
}

.menu .menu_link .flex ul {
  width: 18%;
}

.menu .menu_link .flex ul li {
  width: 100%;
}

.menu .menu_link .flex ul li a {
  position: relative;
  z-index: 2;
  display: block;
  padding: 1rem 0;
  font-size: 1.125rem;
  color: #333;
  transition: all 0.3s ease;
}

.menu .menu_link .flex ul li a::after {
  content: '';
  position: absolute;
  top: 0;
  left: -3.125rem;
  z-index: -1;
  width: calc(100% + 3.125rem);
  height: 100%;
  border-top-right-radius: 3.375rem;
  border-bottom-right-radius: 3.375rem;
  background: #00a0e9;
  transition: all 0.3s ease;
  opacity: 0;
}

.menu .menu_link .flex ul li a.active {
  color: #fff;
}

.menu .menu_link .flex ul li a.active::after {
  opacity: 1;
}

.menu .menu_link .flex .menu_content {
  width: 78%;
  padding-left: 3.125rem;
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.menu .menu_link .flex .menu_content .tab-content .tab-pane.active {
  display: flex;
  justify-content: space-between;
}

.menu .menu_link .flex .menu_content .tab-content .tab-pane .text {
  width: 60%;
  padding: .5rem 0;
  line-height: 2;
  font-size: 1rem;
  color: #333;
  text-align: justify;
  font-family: 'Montserrat-light';
}

.menu .menu_link .flex .menu_content .tab-content .tab-pane .img {
  width: 35%;
  padding-top: 20%;
}

.menu .menu_link .flex .menu_content .tab-content .tab-pane .img img {
  display: none;
  max-width: 100%;
}

/* banner
---------------------------------------------------------------- */
.banner {
  position: relative;
  height: 100%;
}

.banner .swiper {
  height: 100%;
}

.banner .swiper .swiper-slide .container {
  position: absolute;
  left: 0;
  right: 0;
  top: 35%;
  margin: 0 auto;
  color: #fff;
  text-transform: uppercase;
  padding-right: 25%;
}

.banner .swiper .swiper-slide .container strong {
  font-size: 4.375rem;
  display: block;
  margin-bottom: 1rem;
  line-height: 1;
}

.banner .swiper .swiper-slide .container p {
  font-size: 2.625rem;
  line-height: 1.2;
  font-family: 'Montserrat-light';
}

.banner .swiper .swiper-pagination {
  bottom: 3.75rem;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.banner .swiper .swiper-pagination .swiper-pagination-bullet {
  width: .75rem;
  height: .75rem;
  border-radius: .375rem;
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.banner .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff;
  width: 1.875rem;
  height: .5rem;
}

.banner .banner_numb {
  position: absolute;
  bottom: 3.75rem;
  left: 0;
  pointer-events: none;
  margin-right: auto;
  z-index: 2;
  color: #fff;
  width: 100%;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.banner .banner_numb strong {
  margin-right: .5rem;
  font-size: 2.125rem;
}

.banner .banner_numb span {
  margin-left: .5rem;
}

/* about 样式
---------------------------------------------------------------- */
.about {
  margin-top: -5rem;
}

.about .container > div {
  width: 45%;
}

.about_link {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.about_link a {
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  width: 33.33%;
  height: 15.375rem;
  color: #fff;
  text-align: center;
  transition: all 0.3s ease;
}

.about_link a:nth-child(1) {
  background: rgba(5, 61, 130, 0.87);
}

.about_link a:nth-child(1):hover {
  background: #053d82;
}

.about_link a:nth-child(2) {
  background: rgba(11, 106, 204, 0.72);
}

.about_link a:nth-child(2):hover {
  background: #0b6acc;
}

.about_link a:nth-child(3) {
  background: rgba(255, 255, 255, 0.46);
  color: rgba(0, 0, 0, 0.64);
}

.about_link a:nth-child(3):hover {
  background: white;
}

.about_link a:hover {
  height: 16.25rem;
  margin-top: -0.875rem;
}

.about_link a i {
  display: block;
  font-size: 3.75rem;
}

.about_link a span {
  display: block;
  font-size: 1.625rem;
  text-transform: capitalize;
  line-height: 1;
}

/* factory 样式
---------------------------------------------------------------- */
.factory .swiper .swiper-slide {
  display: flex;
  align-items: center;
}

.factory .swiper .factory_prev, .factory .swiper .factory_next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 4.375rem;
  height: 4.375rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all .3s ease;
  text-align: center;
}

.factory .swiper .factory_prev:hover, .factory .swiper .factory_next:hover {
  background: rgba(255, 255, 255, 0.1);
}

.factory .swiper .factory_prev i, .factory .swiper .factory_next i {
  font-size: 1.875rem;
  color: #fff;
}

.factory .swiper .factory_prev {
  left: 3%;
}

.factory .swiper .factory_next {
  right: 3%;
}

.factory .container > div {
  width: 45%;
}

/* product 样式
---------------------------------------------------------------- */
.product {
  height: 100%;
  width: 100%;
  display: flex;
}

.product .caption {
  width: 25%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.product .caption::after {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  transition: all 0.5s ease;
}

.product .caption:hover::after {
  background: transparent;
}

.product .caption:hover a .pro_a {
  opacity: 1;
  transform: translateY(0);
}

.product .caption a {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 2.5rem;
  padding-bottom: 30%;
  height: 100%;
  width: 100%;
  color: #fff;
}

.product .caption a h3 {
  margin-top: 50%;
  font-size: 2.125rem;
  text-transform: uppercase;
}

.product .caption a .pro_a {
  display: flex;
  align-items: center;
  margin: auto 0;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.5s ease;
  font-size: 1rem;
  text-transform: capitalize;
}

.product .caption a .pro_a i {
  font-size: 1.5rem;
  margin-right: .5rem;
}

.product .caption a .pro_en {
  position: absolute;
  bottom: 0;
  right: 90%;
  display: flex;
  align-items: center;
  transform-origin: right bottom;
  transform: rotate(90deg);
}

.product .caption a .pro_en:after {
  content: '';
  width: 8.75rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.product .caption a .pro_en span {
  font-size: .875rem;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: .25rem;
}

/* footer 样式
---------------------------------------------------------------- */
.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  width: 100%;
  height: 100%;
}

.footer > .container {
  margin: 0 auto;
  margin-top: 5rem;
}

.footer > .container .foot_left {
  width: 36%;
}

.footer > .container .foot_left .mod_title {
  margin-bottom: 3.75rem;
}

.footer > .container .foot_left .form-group {
  position: relative;
  margin-bottom: 2rem;
}

.footer > .container .foot_left .form-group:last-child {
  margin-top: 3.125rem;
  margin-bottom: 0;
}

.footer > .container .foot_left .form-group label {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  color: #fff;
  font-size: 1rem;
}

.footer > .container .foot_left .form-group input {
  width: 100%;
  padding-left: 5.625rem;
  background: none;
  border: none;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 1rem;
  height: 3.125rem;
  outline: none;
}

.footer > .container .foot_left .form-group button {
  width: 11.25rem;
  height: 3rem;
  background: #fff;
  border-radius: 1.5rem;
  color: #00a0e9;
  border: none;
  font-size: 1.125rem;
  font-weight: bold;
}

.footer > .container .foot_left .form-group button:hover {
  background: #00a0e9;
  color: #fff;
}

.footer > .container .foot_right {
  margin-left: 6%;
  width: 42%;
}

.footer > .container .foot_right .foot_search {
  width: 100%;
  position: relative;
  margin-bottom: 2.25rem;
}

.footer > .container .foot_right .foot_search input {
  width: 100%;
  border: 1px dashed #fff;
  border-radius: 1.5rem;
  height: 3rem;
  padding-left: 2rem;
  padding-right: 6rem;
  background: none;
  color: #fff;
  outline: none;
  font-size: 1rem;
}

.footer > .container .foot_right .foot_search input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer > .container .foot_right .foot_search button {
  position: absolute;
  right: 0;
  top: 0;
  height: 3rem;
  width: 6rem;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer > .container .foot_right .foot_search button i {
  font-size: 2.25rem;
  color: #fff;
}

.footer > .container .foot_right .h_auto {
  max-height: 28rem;
  margin-bottom: 2rem;
}

.footer > .container .foot_right .h_auto p {
  font-family: 'Montserrat-light';
}

.footer > .container .foot_right .h_auto .caption {
  margin-bottom: 2rem;
  color: #fff;
}

.footer > .container .foot_right .h_auto .caption:last-child {
  margin-bottom: 0;
}

.footer > .container .foot_right .h_auto .caption h4 {
  font-size: 1.125rem;
}

.footer > .container .foot_right .h_auto .caption p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.footer > .container .foot_right .share {
  display: flex;
  align-items: center;
}

.footer > .container .foot_right .share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 50%;
  color: #fff;
  margin-right: 1rem;
}

.footer > .container .foot_right .share a i {
  font-size: 1.125rem;
  line-height: 1;
}

.footer .foot_di {
  width: 100%;
  color: rgba(255, 255, 255, 0.5);
  padding: 1.5rem 0;
}

.footer .foot_di .container {
  padding: 0 5%;
}

.footer .foot_di .container span a {
  color: rgba(255, 255, 255, 0.5);
}

.foot_di {
  font-family: 'Montserrat-light';
}

/* zl_mod 通用样式
---------------------------------------------------------------- */
#fullpage .section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#fp-nav.right {
  right: 2.875rem;
  top: auto;
  bottom: 0;
  transform: translateY(0);
}

#fp-nav.right::after {
  content: '';
  width: 1px;
  background: rgba(255, 255, 255, 0.3);
  position: absolute;
  right: 7px;
  top: 7px;
  height: calc(100% - 7px);
}

#fp-nav ul li a span,
.fp-slidesNav ul li a span {
  background: #fff;
}

#fp-nav ul li, .fp-slidesNav ul li {
  width: 14px;
  height: 14px;
  margin: 0;
  margin-bottom: 2.5rem;
}

#fp-nav ul li:last-child, .fp-slidesNav ul li:last-child {
  margin-bottom: 3.75rem;
}

#fp-nav ul li a, .fp-slidesNav ul li a {
  border: 1px dashed #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

#fp-nav ul li a span, .fp-slidesNav ul li a span, #fp-nav ul li:hover a span, .fp-slidesNav ul li:hover a span {
  position: static;
  margin: 0;
  height: 6px;
  width: 6px;
  border-radius: 50%;
}

#fp-nav ul li a.active span, .fp-slidesNav ul li a.active span, #fp-nav ul li:hover a.active span, .fp-slidesNav ul li:hover a.active span {
  position: static;
  margin: 0;
  height: 6px;
  width: 6px;
  border-radius: 50%;
}

#fp-nav ul li .fp-tooltip {
  font-family: 'Montserrat-Regular';
  width: auto;
  right: calc(100% + 1rem);
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

#fp-nav a.active + .fp-tooltip {
  color: #00a0e9;
}

#fp-nav ul li a.active {
  border-color: #00a0e9;
}

#fp-nav ul li a.active span {
  background: #00a0e9;
}

#fp-nav.active ul li .fp-tooltip {
  color: rgba(0, 0, 0, 0.65);
}

#fp-nav.active ul li a {
  border: 1px dashed rgba(0, 0, 0, 0.3);
}

#fp-nav.active ul li a span,
.fp-slidesNav ul li a span {
  background: rgba(0, 0, 0, 0.3);
}

#fp-nav.active.right::after {
  background: rgba(0, 0, 0, 0.2);
}

#fp-nav.active a.active + .fp-tooltip {
  color: #00a0e9;
}

#fp-nav.active ul li a.active {
  border-color: #00a0e9;
}

#fp-nav.active ul li a.active span {
  background: #00a0e9;
}

.maodian {
  position: absolute;
  left: 0;
  top: -6.875rem;
}

.mod_title {
  font-size: 2.75rem;
  color: #fff;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 1;
  width: 100%;
}

.mod_title b {
  font-size: 3rem;
}

.mod_title.color {
  color: #00a0e9;
}

.mod_title p {
  margin-top: 1.5rem;
  font-size: 1rem;
  text-transform: none;
  font-family: 'Montserrat-light';
  line-height: 1.6;
  font-weight: normal;
}

.mod_more {
  margin-top: 1.875rem;
  width: 100%;
}

.mod_more.color a {
  margin: 0 auto;
  border: 1px dashed #00a0e9;
  color: #999;
}

.mod_more.color a:hover {
  background: #00a0e9;
  border-color: #00a0e9;
  color: #fff;
}

.mod_more a {
  width: 11.25rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid #fff;
  font-size: 1rem;
  text-transform: uppercase;
  border-radius: 1.5rem;
  transition: all 0.3s ease;
}

.mod_more a:hover {
  background: #00a0e9;
  border-color: #00a0e9;
  color: #fff;
}

.mod_bgc {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.mod_zhong {
  padding: 5.625rem 0;
}

/* 内页通用样式
---------------------------------------------------------------- */
.mod_banner {
  min-height: 5.625rem;
}

.product_banner {
  height: 100vh;
}

.product_banner .swiper {
  height: 100%;
}

.product_banner .swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product_banner .swiper .swiper-slide div {
  width: 60%;
  color: #fff;
}

.product_banner .swiper .swiper-slide div.text-left strong::after {
  left: 0;
  transform: translateX(0);
}

.product_banner .swiper .swiper-slide div.text-right strong::after {
  left: auto;
  right: 0;
  transform: translateX(0);
}

.product_banner .swiper .swiper-slide div strong {
  font-size: 5.25rem;
  display: inline-block;
  position: relative;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  font-weight: normal;
}

.product_banner .swiper .swiper-slide div strong::after {
  content: '';
  width: 7rem;
  height: .375rem;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.product_banner .swiper .swiper-slide div p {
  font-size: 1.125rem;
  line-height: 1.6;
}

.product_banner .swiper .product_prev, .product_banner .swiper .product_next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.product_banner .swiper .product_prev:hover, .product_banner .swiper .product_next:hover {
  color: white;
}

.product_banner .swiper .product_prev.product_prev, .product_banner .swiper .product_next.product_prev {
  left: 11.875rem;
}

.product_banner .swiper .product_prev.product_prev i, .product_banner .swiper .product_next.product_prev i {
  transform: rotateY(180deg);
}

.product_banner .swiper .product_prev.product_next, .product_banner .swiper .product_next.product_next {
  right: 11.875rem;
}

.product_banner .swiper .product_prev i, .product_banner .swiper .product_next i {
  display: inline-block;
  font-size: 5rem;
}

.product_banner .container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 2;
}

.product_banner .container ul {
  height: 7.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
}

.product_banner .container ul li a {
  font-size: 1.625rem;
  font-weight: bold;
  text-transform: capitalize;
  color: #fff;
}

.ny_footer {
  background: #474747;
  border-top: .3125rem solid #00a0e9;
  padding-top: 5rem;
}

.ny_footer .foot_logo {
  width: 19.5%;
}

.ny_footer .foot_logo img {
  max-width: 100%;
}

.ny_footer .foot_nav {
  width: 79%;
}

.ny_footer .foot_nav ul {
  padding-right: 1rem;
}

.ny_footer .foot_nav ul:last-child li a {
  white-space: nowrap;
}

.ny_footer .foot_nav ul li {
  margin-bottom: .625rem;
  font-family: 'Montserrat-light';
}

.ny_footer .foot_nav ul li:first-child {
  margin-bottom: 1.875rem;
  font-family: 'Montserrat-Regular';
}

.ny_footer .foot_nav ul li:first-child a {
  font-size: 1.125rem;
  text-transform: uppercase;
  color: #fff;
}

.ny_footer .foot_nav ul li img {
  max-width: 10rem;
}

.ny_footer .foot_nav ul li a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  text-transform: capitalize;
  transition: all 0.3s ease;
}

.ny_footer .foot_nav ul li a:hover {
  color: #fff;
}

.ny_footer .foot_di {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2.5rem;
  padding: 1.5rem 0;
  color: rgba(255, 255, 255, 0.35);
  font-size: 14px;
}

.ny_footer .foot_di span a {
  color: currentColor;
}

/* n-about
---------------------------------------------------------------- */
.banner_about:after {
  position: absolute;
  left: 2%;
  top: 0;
  content: '';
  width: 50%;
  height: 100%;
  background: rgba(0, 160, 233, 0.9);
  transform: skewX(-15deg);
}

.banner_about .container {
  position: relative;
  z-index: 2;
  padding-right: 43%;
}

.banner_about .container .mod_content {
  color: #fff;
}

.why {
  height: 100%;
}

.why .why_left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 11.875rem;
  padding-right: 1.5rem;
  width: 28.6%;
  height: 100%;
  color: #020202;
}

.why .why_left .mod_title {
  color: currentColor;
}

.why .why_left ul li {
  margin-top: 2.5rem;
}

.why .why_left ul li a {
  display: block;
  color: currentColor;
  font-size: 14px;
  text-transform: capitalize;
  line-height: 1;
  position: relative;
  padding-left: 1rem;
}

.why .why_left ul li a:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.25rem;
  height: 2.25rem;
  background: #00a0e9;
}

.why .why_left ul li a.active {
  color: #00a0e9;
}

.why .why_left ul li a.active span {
  opacity: 1;
}

.why .why_left ul li a strong {
  display: block;
  font-size: 1.875rem;
}

.why .why_left ul li a span {
  opacity: .54;
  line-height: 1.6;
  font-family: 'Montserrat-light';
}

.why .why_center {
  width: 31.25%;
  background: #f4f1f2;
  display: flex;
  align-items: center;
  padding: 0 2.875rem;
  color: #020202;
  font-family: 'Montserrat-light';
}

.why .why_center h3 {
  font-size: 1.625rem;
  color: currentColor;
}

.why .why_center p {
  margin: 0;
  margin-top: 2.5rem;
  font-size: 1rem;
  line-height: 1.6;
  color: currentColor;
  position: relative;
  padding-left: 1rem;
}

.why .why_center p::after {
  content: '';
  position: absolute;
  left: 0;
  top: .5rem;
  width: .375rem;
  height: .375rem;
  border-radius: 50%;
  background: #00a0e9;
}

.why .why_right {
  width: 40.15%;
}

.history {
  text-align: center;
  color: #fff;
  margin-top: -15%;
}

.history .swiper1 .swiper-slide.swiper-slide-active span {
  transform: scale(1);
}

.history .swiper1 .swiper-slide span {
  display: inline-block;
  font-size: 5.5rem;
  transform: scale(0.6);
  transition: all 0.6s ease;
}

.history .swiper2 {
  margin-top: 1.875rem;
}

.history .swiper2 p {
  font-size: 1.625rem;
}

.certification {
  margin-top: 5.625rem;
}

.certification .mod_title {
  margin-bottom: 3.125rem;
}

.certification .container {
  position: relative;
}

.certification .container .cert_next {
  right: -3.75rem;
}

.certification .container .cert_prev {
  left: -3.75rem;
}

.certification .container .cert_prev i {
  transform: rotateY(180deg);
}

.certification .container .cert_next, .certification .container .cert_prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3.375rem;
  height: 3.375rem;
  border-radius: 50%;
  border: 2px solid #00a0e9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00a0e9;
}

.certification .swiper {
  margin: 0 5%;
}

.certification .swiper a {
  display: block;
  padding: 1rem;
  background: #f1f1f1;
  transition: all 0.3s ease;
}

.certification .swiper a:hover {
  background: #00a0e9;
}

.certification .swiper a:hover span {
  color: #fff;
}

.certification .swiper a .mod_bgc {
  padding-top: 140%;
}

.certification .swiper a span {
  display: block;
  text-align: center;
  margin-top: 1rem;
  font-size: 1.5rem;
  color: #020202;
  transition: all 0.3s ease;
  font-weight: bold;
}

.quality .mod_title {
  margin-bottom: 3.125rem;
}

.quality .container {
  position: relative;
}

.quality .container .quality_next {
  right: -3.75rem;
}

.quality .container .quality_prev {
  left: -3.75rem;
}

.quality .container .quality_prev i {
  transform: rotateY(180deg);
}

.quality .container .quality_next, .quality .container .quality_prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3.375rem;
  height: 3.375rem;
  border-radius: 50%;
  border: 2px solid #00a0e9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00a0e9;
}

.quality .container .swiper .swiper-slide {
  height: calc((100% - 60px)/2);
}

.quality .container .swiper .swiper-slide a {
  display: block;
  padding: .5rem;
  background: #f1f1f1;
  transition: all 0.3s ease;
}

.quality .container .swiper .swiper-slide a:hover {
  background: #00a0e9;
}

.quality .container .swiper .swiper-slide a:hover span {
  color: #fff;
}

.quality .container .swiper .swiper-slide a .mod_bgc {
  padding-top: 65.3%;
}

.quality .container .swiper .swiper-slide a span {
  display: block;
  text-align: center;
  margin-top: .5rem;
  font-size: 1.25rem;
  color: #020202;
  transition: all 0.3s ease;
}

/* n-product
---------------------------------------------------------------- */
.product_list .item {
  width: 100%;
  overflow: hidden;
  margin-bottom: 3.375rem;
}

.product_list .item:nth-child(2n-1) .text {
  padding-left: 3.625rem;
  padding-right: 11.875rem;
}

.product_list .item:nth-child(2n) .text {
  padding-right: 3.625rem;
  padding-left: 11.875rem;
}

.product_list .item .img {
  width: 58%;
}

.product_list .item .img .mod_bgc {
  padding-top: 51.75%;
}

.product_list .item .text {
  width: 42%;
}

.product_list .item .text > strong {
  display: flex;
  font-size: 2.875rem;
  color: #00a0e9;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}

/* n-factory
---------------------------------------------------------------- */
.factory_list .mod_title {
  margin-bottom: 2.5rem;
}

.factory_list .mod_title p {
  color: #020202;
  line-height: 1.6;
}

.factory_list .items {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.factory_list .items .item {
  margin-right: 1.875rem;
  margin-bottom: 1.875rem;
  width: calc((100% - 3.75rem)/3);
}

.factory_list .items .item:nth-child(3n) {
  margin-right: 0;
}

.factory_list .items .item a {
  display: block;
  padding: 1rem;
  background: #f1f1f1;
  transition: all 0.3s ease;
}

.factory_list .items .item a:hover {
  background: #00a0e9;
}

.factory_list .items .item a:hover span {
  color: #fff;
}

.factory_list .items .item a .mod_bgc {
  height: 17.5rem;
}

.factory_list .items .item a span {
  display: block;
  text-align: center;
  margin-top: 1rem;
  font-size: 1.5rem;
  color: #020202;
  transition: all 0.3s ease;
  text-transform: capitalize;
}

.factory_list .swiper {
  height: 50rem;
}

.factory_list .swiper .swiper-slide {
  height: 22.5rem;
}

.factory_list .swiper .swiper-slide a {
  display: block;
  padding: 1rem;
  background: #f1f1f1;
  transition: all 0.3s ease;
}

.factory_list .swiper .swiper-slide a:hover {
  background: #00a0e9;
}

.factory_list .swiper .swiper-slide a:hover span {
  color: #fff;
}

.factory_list .swiper .swiper-slide a .mod_bgc {
  height: 17.5rem;
}

.factory_list .swiper .swiper-slide a span {
  display: block;
  text-align: center;
  margin-top: 1rem;
  font-size: 1.5rem;
  color: #020202;
  transition: all 0.3s ease;
  text-transform: capitalize;
}

.factory_list .factory_next, .factory_list .factory_prev {
  width: 3.375rem;
  height: 3.375rem;
  border-radius: 50%;
  border: 2px solid #00a0e9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00a0e9;
}

.factory_list .factory_prev {
  margin-right: 2.5rem;
}

.factory_list .factory_prev i {
  transform: rotateY(180deg);
}

/* n-service
---------------------------------------------------------------- */
.service_banner {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service_banner .wz {
  width: 60%;
  color: #fff;
}

.service_banner .wz.text-left strong::after {
  left: 0;
  transform: translateX(0);
}

.service_banner .wz.text-right strong::after {
  left: auto;
  right: 0;
  transform: translateX(0);
}

.service_banner .wz strong {
  font-size: 5.25rem;
  display: inline-block;
  position: relative;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  font-weight: normal;
}

.service_banner .wz strong::after {
  content: '';
  width: 7rem;
  height: .375rem;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.service_banner .wz p {
  font-size: 1.125rem;
  line-height: 1.6;
  font-family: 'Montserrat-light';
}

.service_banner .container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 2;
}

.service_banner .container ul {
  height: 7.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
}

.service_banner .container ul li a {
  font-size: 1.625rem;
  font-weight: bold;
  text-transform: capitalize;
  color: #fff;
}

.service_list .items {
  width: 100%;
  overflow: hidden;
}

.service_list .items .item {
  position: relative;
  margin-bottom: 3.375rem;
}

.service_list .items .item:nth-child(2n-1) .text {
  padding-left: 3.625rem;
  padding-right: 11.875rem;
}

.service_list .items .item:nth-child(2n) .text {
  padding-right: 3.625rem;
  padding-left: 11.875rem;
}

.service_list .items .item .img {
  width: 44.8%;
}

.service_list .items .item .img .mod_bgc {
  padding-top: 66.7%;
}

.service_list .items .item .text {
  width: 55.2%;
}

.service_list .items .item .text > strong {
  display: flex;
  font-size: 2.875rem;
  color: #00a0e9;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

/* n-contact
---------------------------------------------------------------- */
.conatct_banner {
  position: relative;
  height: 100vh;
}

.conatct_banner .container {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
}

.conatct_banner .container form {
  margin-top: 5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.conatct_banner .container form .form-group {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  margin-bottom: 4.375rem;
  color: #fff;
  font-size: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.conatct_banner .container form .form-group:nth-child(-n+3) {
  width: 30%;
}

.conatct_banner .container form .form-group:last-child {
  border-bottom: none;
}

.conatct_banner .container form .form-group label {
  margin: 0;
  margin-right: 1rem;
  white-space: nowrap;
}

.conatct_banner .container form .form-group input {
  width: 100%;
  height: 2.875rem;
  border: none;
  background: none;
  outline: none;
  color: #fff;
}

.conatct_banner .container form .form-group textarea {
  padding: 0;
  padding-top: .5rem;
  width: 100%;
  height: 2.875rem;
  border: none;
  background: none;
  outline: none;
  color: #fff;
}

.conatct_banner .container form .form-group button {
  display: block;
  margin: 0 auto;
  border: none;
  width: 14.125rem;
  height: 3rem;
  background: #fff;
  color: #00a0e9;
  font-weight: bold;
  border-radius: 1.5rem;
}

.conatct_banner .container form .form-group button:hover {
  background: #00a0e9;
  color: #fff;
}

.contact .contact_left {
  width: 50%;
  padding-left: 11.875rem;
}

.contact .contact_left .mod_content p {
  margin-top: 2rem;
}

.contact .contact_left .mod_content p strong {
  display: block;
}

.contact .contact_right {
  width: 50%;
}

.mod_content {
  font-family: 'Montserrat-light';
}

/* 媒体查询
---------------------------------------------------------------- */
@media (max-width: 991px) {
  .flex {
    flex-wrap: wrap;
  }
  .header .menu-link i,
  .header .menu-link span:before,
  .header .menu-link span::after {
    background: #fff;
  }
  .header.cur .menu-link i,
  .header.cur .menu-link span:before,
  .header.cur .menu-link span::after {
    background: #333;
  }
  .header.cur .menu-link.active span i {
    background: transparent;
  }
  .menu-link {
    margin-left: 2rem;
    display: block;
    transition: all 0.3s ease;
  }
  .header > .container {
    height: 100%;
  }
  .header.cur .pc_nav {
    background: rgba(255, 255, 255, 0.35);
    border-left: 1px solid #fff;
    box-shadow: -2px 0px 4px rgba(0, 0, 0, 0.1);
  }
  .header.cur .pc_nav > ul > li > a {
    color: #333;
  }
  .pc_xiala {
    display: none !important;
  }
  .pc_nav {
    position: absolute;
    width: 60vw;
    height: 100vh;
    top: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    padding: 1.25rem 15px;
    padding-top: 10rem;
    display: block;
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
  }
  .pc_nav.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }
  .pc_nav > ul {
    height: auto;
    flex-wrap: wrap;
  }
  .pc_nav > ul > li {
    width: 100%;
    margin-top: 0;
    text-align: left;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    height: auto;
    padding: 1rem 0;
    padding-left: 2rem;
    align-items: center;
    position: static;
  }
  .pc_nav > ul > li > a {
    width: 100%;
    height: auto;
    font-size: 1.625rem;
    font-weight: bold;
    color: #fff;
  }
  .pc_nav > ul > li > a:after {
    display: none;
  }
  .header.active .pc_nav > ul > li > a, .header.ny .pc_nav > ul > li > a {
    color: #fff;
  }
  .pc_nav > ul > li.menu_show > i {
    display: block;
  }
  .menu {
    display: none;
  }
  .mod_more a {
    width: 10rem;
  }
  .banner .swiper .swiper-slide {
    background-position: 40% 0 !important;
  }
  .banner .swiper .swiper-slide .container {
    top: 20%;
  }
  .banner .swiper .swiper-slide .container strong {
    font-size: 2.5rem;
  }
  .banner .swiper .swiper-slide .container p {
    padding-right: 0;
    font-size: 1.5rem;
  }
  .about {
    margin-top: -40%;
  }
  .about .container > div {
    width: 60%;
  }
  .about .container > div .mod_content {
    height: 30rem;
    overflow-y: auto;
  }
  #fp-nav.right {
    right: 5px;
  }
  #fp-nav ul li .fp-tooltip {
    display: none;
  }
  .factory .container > div {
    width: 100%;
  }
  .product {
    flex-wrap: wrap;
  }
  .product .caption {
    width: 50%;
    height: 50%;
  }
  .product .caption:hover::after {
    background: rgba(0, 0, 0, 0.7);
  }
  .product .caption a h3 {
    margin-top: 0;
  }
  .product .caption a .pro_a {
    display: none;
  }
  .product .caption a .pro_en:after {
    width: 6rem;
  }
  .footer > .container .foot_left {
    width: 100%;
  }
  .footer > .container .foot_left .form-group input, .footer > .container .foot_left .form-group label, .footer > .container .foot_left .form-group button {
    font-size: 1.625rem;
  }
  .footer > .container .foot_right {
    display: none;
  }
  .footer .foot_di .container {
    flex-wrap: wrap;
  }
  .footer .foot_di .container span {
    width: 100%;
  }
  .banner_about .container {
    padding-left: 14%;
    padding-right: 16%;
  }
  .banner_about .container .mod_content {
    max-height: 27rem;
  }
  .banner_about:after {
    width: 95%;
  }
  .why {
    margin-top: 5.625rem;
    height: auto;
    flex-wrap: wrap;
  }
  .why .why_left {
    width: 100%;
    padding: 0;
  }
  .why .why_left .mod_title {
    margin-left: 15px;
  }
  .why .why_left ul {
    padding: 0 15px;
  }
  .why .why_left ul li {
    margin-top: 0;
    margin-bottom: 1rem;
  }
  .why .why_center {
    width: 100%;
    padding: 15px;
    height: calc(50vh - 5.625rem);
    overflow-y: auto;
    align-items: flex-start;
    background: none;
  }
  .why .why_center p {
    margin-top: 1rem;
  }
  .why .why_right {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    padding: 0;
    height: 100vh;
    background-position: bottom center;
  }
  .why .why_right::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    background: rgba(255, 255, 255, 0.75);
  }
  .history {
    margin-top: -30vh;
  }
  .certification {
    margin-top: 3.125rem;
  }
  .ny_footer {
    padding-top: 3rem;
  }
  .ny_footer .container {
    flex-wrap: wrap;
  }
  .ny_footer .container .foot_logo {
    width: 100%;
  }
  .ny_footer .container .foot_nav {
    flex-wrap: wrap;
    width: 100%;
    display: none;
  }
  .ny_footer .container .foot_nav ul {
    width: 50%;
    margin-top: 2.5rem;
  }
  .ny_footer .container .foot_nav ul li {
    margin: 0;
  }
  .ny_footer .container .foot_nav ul li:first-child {
    margin-bottom: 1rem;
  }
  .ny_footer .foot_di {
    flex-wrap: wrap;
    width: 100%;
  }
  .conatct_banner .container form .form-group {
    font-size: 1.625rem;
  }
  .conatct_banner .container form .form-group:nth-child(-n+3) {
    width: 100%;
  }
  .conatct_banner .container form .form-group button {
    font-size: 1.875rem;
  }
  .contact {
    flex-wrap: wrap;
  }
  .contact .contact_left {
    width: 100%;
    padding-left: 0;
    padding: 0 15px;
  }
  .contact .contact_right {
    width: 100%;
  }
  .contact .contact_right .my-map {
    height: 22.5rem;
  }
  .service_banner .wz {
    width: 90%;
  }
  .service_banner .wz strong {
    font-size: 3.125rem;
  }
  .service_banner .wz p {
    font-size: 1.5rem;
  }
  .product_banner .swiper .swiper-slide div {
    margin-top: -20%;
  }
  .product_banner .swiper .swiper-slide div {
    width: 90%;
  }
  .product_banner .swiper .swiper-slide div strong {
    font-size: 3.125rem;
  }
  .product_banner .swiper .swiper-slide div p {
    font-size: 1.5rem;
  }
  .product_banner .swiper .product_prev, .product_banner .swiper .product_next {
    top: 70%;
  }
  .product_banner .swiper .product_prev i, .product_banner .swiper .product_next i {
    font-size: 3rem;
  }
  .product_list .item {
    flex-wrap: wrap;
  }
  .product_list .item:nth-child(2n-1) .text {
    padding: 2rem 15px;
  }
  .product_list .item:nth-child(2n) .text {
    padding: 2rem 15px;
    order: 2;
  }
  .product_list .item:nth-child(2n) .img {
    order: 1;
  }
  .product_list .item .img {
    width: 100%;
  }
  .product_list .item .text {
    width: 100%;
    padding: 2rem 15px;
  }
  .service_list .items .item {
    flex-wrap: wrap;
  }
  .service_list .items .item:nth-child(2n-1) .text {
    padding: 2rem 15px;
  }
  .service_list .items .item:nth-child(2n) .text {
    padding: 2rem 15px;
    order: 2;
  }
  .service_list .items .item:nth-child(2n) .img {
    order: 1;
  }
  .service_list .items .item .img {
    width: 100%;
  }
  .service_list .items .item .text {
    width: 100%;
  }
  .factory_list .items .item {
    width: 100%;
    margin-right: 0;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .product_list .item .img {
    width: 30%;
  }
  .product_list .item .text {
    width: 70%;
  }
}

@media (max-width: 1440px) {
  .mod_content,
  .why .why_center p,
  .ny_footer .foot_nav ul li a,
  .mod_title p,
  .footer > .container .foot_right .h_auto .caption p,
  .footer > .container .foot_right .foot_search input,
  .footer > .container .foot_left .form-group input,
  .product .caption a .pro_a {
    font-size: 14px;
  }
  .ny_footer .foot_nav ul li:first-child a {
    font-size: 16px;
  }
}

@media (min-width: 1201px) {
  .container {
    max-width: calc(100% - 21.875rem);
    width: calc(100% - 21.875rem) !important;
    padding: 0 15px;
  }
}

@media (min-width: 1921px) {
  .container {
    max-width: calc(100% - 21.875rem);
    width: calc(100% - 21.875rem) !important;
    padding: 0 15px;
  }
}
