@charset "UTF-8";
/*  =====  公共样式  ===== */
/* 自定义字体 */
@font-face {
  font-family: "DIN-Medium-2";
  src: url("../fonts/DIN-Medium-2.woff") format("woff");
}
/* 默认色彩样式*/
/* 页面块区尺寸间距默认参数 */
/* 默认页面内容容器宽度 */
.wrapper {
  width: 100%;
  max-width: 1920px;
  margin: auto;
  margin-top: 7.5rem;
  background: white;
}

.gapWarp {
  margin: 4rem 0;
}

.contWrap {
  max-width: 1600px;
  margin: auto;
  overflow: hidden;
}

.contBox {
  width: 100%;
  overflow: hidden;
}
.contBox * img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

body {
  font-family: "Arial", "Poppins", "sans-serif", "Microsoft YaHei", 微软雅黑, MicrosoftJhengHei, 华文细黑, STHeiti, MingLiu;
  background: white;
  font-weight: normal;
  font-style: normal;
  position: relative;
}

html * {
  margin: 0;
  padding: 0;
  font-size: 14px;
  color: rgb(45, 47, 50);
  box-sizing: border-box;
  cursor: default;
}

*, ::after, ::before {
  box-sizing: border-box;
}

ul, li {
  list-style: none;
  padding-inline-start: 0;
}

a {
  color: #2d2f32;
  outline: none;
  text-decoration: none;
}

img {
  display: block;
}

/* 按钮样式 */
.btn {
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
  border-radius: 0.2rem;
  border: transparent;
}

.btn_red {
  background: rgb(240, 90, 36);
}

.btn:hover {
  opacity: 0.9;
}

/* 公用排版样式 */
h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.17rem;
}

h4 {
  font-size: 1rem;
}

h5 {
  font-size: 0.83rem;
}

h6 {
  font-size: 0.63rem;
}

h1, h2, h3, h4, h5, h6 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  overflow: hidden;
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  font-weight: bold;
}

blockquote {
  margin: 0 0 1rem;
}

b, strong {
  font-size: inherit !important;
}

small, .small {
  font-size: 0.875em;
}

.divL {
  text-align: left;
}

.divR {
  text-align: right;
}

/* 一些宽度大小 */
.w1-1 {
  width: 100% !important;
}

.w1-2 {
  width: 47% !important;
}

.w1-3 {
  width: 28% !important;
}

/* 文本域 */
input, textarea, select {
  height: 40px;
  font-size: 14px;
  border: 1px solid rgba(150, 152, 155, 0.5);
  border-radius: 3px;
  outline: none;
  padding: 5px;
}

input {
  height: 44px;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: rgb(150, 155, 160);
  font-size: 1rem;
}

input:focus, textarea:focus {
  border: 1px solid rgb(240, 90, 36);
}

/* 页面内容区头部 */
.pageHeadWarp {
  border-bottom: 1px solid rgba(205, 210, 215, 0.5);
}
.pageHeadWarp .pageHeader {
  padding: 0; /* margin: 1rem 0; */
  border-bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pageHeadWarp .pageHeader * {
  font-size: 1rem;
}
.pageHeadWarp .pageHeader .itemBox {
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.pageHeadWarp .pageHeader .itemBox li {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pageHeadWarp .pageHeader .itemBox li a {
  height: 100%;
  padding: 0.2rem;
  border-bottom: 0.2rem solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pageHeadWarp .pageHeader .itemBox li a:hover, .pageHeadWarp .pageHeader .itemBox li.active a {
  color: rgb(240, 90, 36);
  font-weight: bold;
  border-bottom: 0.2rem solid rgb(240, 90, 36);
}
.pageHeadWarp .pageHeader p, .pageHeadWarp .pageHeader a {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pageHeadWarp .pageHeader p span, .pageHeadWarp .pageHeader a span {
  width: 1.3rem;
  height: 1.3rem;
  color: rgba(150, 152, 155, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}
.pageHeadWarp .pageHeader p span svg, .pageHeadWarp .pageHeader a span svg {
  fill: rgb(120, 125, 130);
}
.pageHeadWarp .pageHeader p a:hover, .pageHeadWarp .pageHeader a a:hover {
  color: rgb(240, 90, 36);
}
.pageHeadWarp .pageHeader p a:hover svg, .pageHeadWarp .pageHeader a a:hover svg {
  fill: rgb(240, 90, 36);
}
.pageHeadWarp .contHead {
  height: 5rem;
  margin-bottom: 0rem !important;
}
.pageHeadWarp .contHead > div {
  height: 100%;
}

/* 通用图片盒子 */
.imgBox {
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.imgBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: auto;
  overflow: hidden;
  transition: 1s;
  -moz-transition: 1s;
  -webkit-transition: 1s;
  -o-transition: 1s;
}

/*  =======  顶部导航 | Top Menu Navbar  ======= */
#header {
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 999;
  border: 1px solid rgba(150, 152, 155, 0.5);
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  background: linear-gradient(to bottom, rgb(255, 255, 255), rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.85));
}
#header .navbar {
  width: 100%;
  height: 7.5rem;
  display: flex;
  justify-content: center;
  position: relative;
}
#header .navbar > div {
  width: 1600px;
  max-width: 1600px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: visible;
}
#header .navbar > div .navbar-brand {
  width: auto;
  display: flex;
  justify-content: space-between;
}
#header .navbar > div .navbar-brand .logo {
  height: 2.5rem;
  margin-right: 0.5rem;
  display: flex;
  align-items: center;
}
#header .navbar > div .navbar-brand .logo > div {
  height: 100%;
}
#header .navbar > div .navbar-brand .logo .logo01 {
  margin-right: 0.5rem;
}
#header .navbar > div .navbar-brand .logo img, #header .navbar > div .navbar-brand #header .navbar > div .navbar-brand .logo svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#header .navbar > div .collapse {
  width: auto;
  height: 100%;
  display: flex;
}
#header .navbar > div .collapse ul {
  height: 100%;
  margin: auto;
  gap: 1.5rem;
  display: flex;
  justify-content: center;
  list-style: none;
}
#header .navbar > div .collapse ul li {
  height: 100%;
}
#header .navbar > div .collapse ul li a {
  height: 100%;
  min-width: 6rem;
  min-height: 2rem;
  font-size: 1.1rem;
  margin: auto 0.15rem;
  padding: 0.3rem 0.3rem;
  border-bottom: 0.2rem solid transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}
#header .navbar > div .collapse ul li a:hover {
  color: rgb(240, 90, 36);
}
#header .navbar > div .collapse ul li.active a {
  font-weight: bold;
  color: rgb(240, 90, 36);
  border-bottom: 0.2rem solid rgb(240, 90, 36);
}
#header .navbar > div .navbar-extBtn {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
#header .navbar > div .navbar-extBtn .hotline {
  display: flex;
}
#header .navbar > div .navbar-extBtn .hotline svg {
  width: 2rem;
  height: 1.5rem;
  margin-right: 0.3rem;
}
#header .navbar > div .navbar-extBtn .hotline svg path {
  fill: rgb(120, 125, 130);
}
#header .navbar > div .navbar-extBtn .hotline a {
  font-size: 1.2rem;
  color: rgb(120, 125, 130);
  margin: auto;
}
#header .navbar > div .navbar-extBtn .navbar-toggler {
  margin: auto 0rem 0rem 2rem;
  display: none;
  justify-content: center;
  align-items: center;
}
#header .navbar > div .navbar-extBtn .navbar-toggler span {
  width: 2.4rem;
  height: 2rem;
  margin: auto;
  border: 1px solid rgba(200, 200, 200, 0.5);
  border-radius: 0.3rem;
  background-color: #f6f6f6;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
}
#header .navbar > div .navbar-extBtn .navbar-toggler .menu-icon.pull::before {
  content: "≡";
  transform: scaleX(1.2);
}
#header .navbar > div .navbar-extBtn .navbar-toggler .menu-icon.fold::before {
  content: "×";
  transform: scaleX(1.2);
}
#header .navbar.sticky {
  height: 3rem;
  transition: height 1s;
  -moz-transition: height 1s; /* Firefox 4 */
  -webkit-transition: height 1s; /* Safari and Chrome */
  -o-transition: height 1s; /* Opera */
}

/*  =======  页脚导航 | footer  ======= */
#footer {
  border-top: 1px solid rgba(205, 210, 215, 0.5);
  background: rgba(205, 210, 215, 0.5);
}
#footer * h5 {
  font-size: 1.1rem;
  line-height: 2rem;
  margin-bottom: 0.5rem;
}
#footer * h6 {
  font-size: 1rem;
  line-height: 2rem;
  margin-bottom: 0.5rem;
}
#footer * a {
  color: rgb(120, 125, 130);
  line-height: 1.5rem;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
}
#footer * a:hover, #footer * a *:hover {
  color: rgb(240, 90, 36);
}
#footer * p {
  line-height: 1.2rem;
  margin-bottom: 0.3rem;
}
#footer .footbar1 {
  width: 100%;
}
#footer .footbar1 .contWrap > ul {
  max-width: 100%;
  margin: auto;
  padding: 2.5rem 0;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
#footer .footbar1 .contWrap > ul > li {
  width: auto;
  padding-right: 1.5rem;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
}
#footer .footbar1 .contWrap > ul > li > div {
  margin-bottom: 1rem;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
}
#footer .footbar1 .contact {
  padding: 0;
}
#footer .footbar1 .contact ul {
  width: 100%;
  display: flex;
  gap: 0.5rem;
}
#footer .footbar1 .contact ul li {
  display: flex;
  align-items: center;
}
#footer .footbar1 .contact ul li a {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  margin-right: 0.5rem;
  background: rgb(160, 165, 170);
  display: flex;
  justify-content: center;
  align-items: center;
}
#footer .footbar1 .contact ul li a svg, #footer .footbar1 .contact ul li a img {
  width: 60%;
  height: 60%;
}
#footer .footbar1 .contact ul li p {
  font-size: 1.1rem;
  display: flex;
  align-items: baseline;
}
#footer .footbar2 {
  width: 100%;
  padding: 1rem 0;
  border-top: 1px solid rgb(150, 155, 160);
  background: rgb(45, 47, 50);
}
#footer .footbar2 * {
  color: white;
}
#footer .footbar2 > div {
  max-width: 1600px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: auto;
}

/* 页码模块 */
.page {
  padding: 2rem 0 3rem;
}
.page .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: auto;
}
.page .pagination li a {
  width: 2rem;
  height: 2rem;
  margin: 0.3rem;
  color: rgb(160, 165, 170);
  border: 1px solid rgba(150, 152, 155, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}
.page .pagination li input {
  width: 3rem;
  height: 2rem;
  margin: 0.3rem;
  color: rgb(160, 165, 170);
  border: 1px solid rgba(150, 152, 155, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  outline: none;
}
.page .pagination li.active a {
  color: white;
  background: rgb(240, 90, 36);
  border-color: rgb(240, 90, 36);
}
.page .pagination li:hover a {
  color: rgb(240, 90, 36);
  border-color: rgb(240, 90, 36);
}
.page .pagination li.active:hover a {
  background: white;
}

/* ==========  文章排版样式（通用）   ========== */
/* (关于我们、产品详情、方案详情、新闻文章版块通用) */
.articleWarp > .gapWarp:first-child {
  padding: 3rem 0;
  margin: 0;
  background: rgba(240, 242, 245, 0.5);
}
.articleWarp > .contWrap {
  padding: 3rem 0;
}
.articleWarp .mainTitle {
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
  text-align: left;
  border-bottom: 1px solid rgba(205, 210, 215, 0.5);
  gap: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-flow: column;
}
.articleWarp .mainTitle h1 {
  font-size: 2rem;
  font-weight: normal;
}
.articleWarp .mainTitle .post_info {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.articleWarp .mainTitle .post_info p {
  color: rgb(160, 165, 170);
  white-space: nowrap;
}
.articleWarp .mainTitle .post_info .pageView i {
  color: rgb(240, 90, 36);
  font-style: normal;
}
.articleWarp h2 {
  margin-bottom: 0.75rem;
}
.articleWarp ul, .articleWarp ol {
  margin-left: 1rem;
}
.articleWarp ul li, .articleWarp ol li {
  line-height: 1.2rem;
  margin-bottom: 0.3rem;
  color: rgb(100, 105, 110);
}
.articleWarp ul li {
  list-style-type: disc;
}
.articleWarp ol li {
  list-style-type: decimal;
}
.articleWarp .summary_mediaText {
  width: 100%; /* max-height: 25rem; */
  display: flex;
  justify-content: space-between;
  flex-flow: inherit;
}
.articleWarp .summary_mediaText .mediaBox {
  width: 40%;
  border: 1px solid rgba(205, 210, 215, 0.5);
  background: white;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
}
.articleWarp .summary_mediaText .imgBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: auto;
}
.articleWarp .summary_mediaText .videoBox .video-player video {
  width: 100%;
}
.articleWarp .summary_mediaText .videoBox .video-player .playerState.active {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  display: flex;
}
.articleWarp .summary_mediaText .videoBox .video-player .playerState.active > span {
  height: 20%;
  margin: auto;
  overflow: hidden;
  display: none;
  align-items: center;
  justify-content: center;
}
.articleWarp .summary_mediaText .videoBox .video-player .playerState.active > span svg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.articleWarp .summary_mediaText .videoBox .video-player .playerState.active > span.active {
  display: flex;
}
.articleWarp .summary_mediaText .videoBox .video-player .playerState {
  display: none;
}
.articleWarp .summary_mediaText .textBox {
  width: 55%;
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
}
.articleWarp .summary_mediaText .textBox h2 {
  font-size: 2.6rem;
  margin: 0 0 1rem;
  font-weight: normal;
}
.articleWarp .summary_mediaText .textBox .text {
  width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.articleWarp .summary_mediaText .textBox .text ul li {
  color: rgb(100, 105, 110);
  list-style-type: disc;
  margin-bottom: 0.5rem;
}
.articleWarp .summary_mediaText .textBox .text p {
  line-height: 1.4rem;
  margin-bottom: 0.5rem;
  text-indent: 2em;
  color: rgb(100, 105, 110);
  text-align: justify;
}
.articleWarp .summary_mediaText .textBox .btnBox {
  width: 100%;
  padding: 2rem 0;
  gap: 2rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.articleWarp .summary_mediaText .textBox .btnBox .btn {
  padding: 0.5rem 2rem;
}
.articleWarp .summary_mediaText.videoText {
  height: 18rem;
}
.articleWarp .mainText {
  width: 100%;
  margin-bottom: 3rem;
  gap: 1rem;
  display: flex;
  justify-content: space-between;
  flex-flow: column;
}
.articleWarp .mainText p {
  line-height: 1.4rem;
  color: rgb(100, 105, 110);
}
.articleWarp .mainText h5 {
  font-size: 1rem;
  margin: 0.5rem 0;
}
.articleWarp .mainText .imgBox {
  width: 100%;
  margin: 2rem 0;
  display: flex;
  justify-content: space-around;
}
.articleWarp .mainText .imgBox > div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  overflow: hidden;
}
.articleWarp .mainText .imgBox > div p {
  margin-bottom: 0;
}
.articleWarp .mainText .imgBox > div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.articleWarp .mainText.para_cn p {
  text-indent: 2em;
  text-align: justify;
}
.articleWarp .tableBox {
  width: 100%;
  margin-bottom: 3rem;
  display: flex;
  justify-content: space-between;
  flex-flow: column;
  overflow-x: auto;
}
.articleWarp .tableBox table {
  width: 100%;
  margin-top: 15px;
  border-collapse: collapse;
  border: 1px solid rgba(150, 152, 155, 0.5);
}
.articleWarp .tableBox table tr {
  height: 3rem;
  border: 1px solid rgba(205, 210, 215, 0.5);
}
.articleWarp .tableBox table th, .articleWarp .tableBox table td {
  color: rgb(100, 105, 110);
  padding: 0 0.2rem;
  text-align: center;
  white-space: nowrap;
  border: 1px solid rgba(205, 210, 215, 0.5);
}
.articleWarp .tableBox table tr:nth-child(even) {
  background: rgba(240, 242, 245, 0.5);
}

/*  =======  首页 | homepage  ======= */
/* 首页公共样式 */
.contHead {
  /* margin-bottom: 2rem; */
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contHead .title1 h1 {
  font-size: 1.5rem;
}
.contHead .title1 p {
  font-size: 1.3rem;
  color: rgba(150, 152, 155, 0.5);
  text-transform: uppercase;
}
.contHead .title2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contHead .title2 h2 {
  font-size: 1.6rem;
  margin-right: 1rem;
  position: relative;
  transform-style: preserve-3d;
}
.contHead .title2 h2::after {
  content: "";
  width: 100%;
  height: 30%;
  background: rgb(255, 220, 120);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  transform: translateZ(-1px);
}
.contHead .title2 ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
}
.contHead .title2 ul li a {
  font-size: 1rem;
}
.contHead .title2 ul li a:hover {
  color: rgb(255, 150, 50);
}
.contHead .title2 .pageUp {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contHead .title2 .pageUp span {
  width: 3rem;
  height: 3rem;
  font-size: 2.2rem;
  color: rgb(160, 165, 170);
  background: rgba(205, 210, 215, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.contHead .title2 .pageUp span img {
  width: 30%;
  height: 30%;
}
.contHead .title2 .pageUp span:hover {
  background: rgb(240, 90, 36);
}
.contHead .title2 .pageUp span:hover img {
  filter: drop-shadow(white 2rem 0);
  transform: translateX(-2rem);
}
.contHead .title2 .more a {
  font-size: 1.1rem;
}

.homeWrap .contHead {
  margin-bottom: 2rem;
}

.contList .text p {
  font-size: 1rem;
  -webkit-line-clamp: 1;
  text-align: justify;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}

/* banner */
.banner .contText {
  width: 80%;
  height: 50%;
  position: absolute;
  top: 0%;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 2;
  margin: auto;
  display: flex;
  justify-content: flex-start;
}
.banner .contText .text {
  width: 100%;
  margin: auto;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
.banner .contText .text * {
  color: white;
  text-align: center;
}
.banner .contText .text h3 {
  font-size: 2rem;
  font-weight: lighter;
}
.banner .contText .text div {
  -moz-text-align-last: justify;
       text-align-last: justify;
}
.banner .contText .text div h1 {
  font-size: 2.8rem;
  font-weight: lighter;
  width: -moz-fit-content;
  width: fit-content;
}
.banner .contText .text div span {
  width: 5rem;
  height: 0.15rem;
  background: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.8rem;
  display: block;
}
.banner .contText .text div p {
  max-width: 100%;
  font-size: 1.1rem;
  line-height: 2rem;
}
.banner .swiper-wrapper img {
  width: 100%;
}
.banner .swiper-pagination .swiper-pagination-bullet {
  width: 2.8rem;
  height: 0.2rem;
  margin: 0.5rem;
  border-radius: 0;
  background: white;
}
.banner .swiper-pagination .swiper-pagination-bullet-active {
  width: 2.8rem;
  height: 0.2rem;
}
.banner .swiper-button-next, .banner .swiper-button-prev {
  color: rgba(255, 255, 255, 0.5);
}

/* 首页banner */
.homeBanner .contText {
  top: 0 !important;
}
.homeBanner .contText .text h1 {
  font-size: 3.8rem !important;
}

/* banner-pClass 产品类目横幅图  */
.banner-pClass {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}
.banner-pClass .contText {
  height: 90%;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-flow: column;
  z-index: 2;
}
.banner-pClass .contText * {
  color: white;
}
.banner-pClass .contText .aText {
  height: 100%;
  color: white;
  display: flex;
  flex-flow: column;
  justify-content: space-around;
  overflow-y: auto;
}
.banner-pClass .contText .aText a {
  gap: 2rem;
  display: flex;
  align-items: center;
}
.banner-pClass .contText .aText a span {
  width: 1.5rem;
  height: 1.5rem;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.banner-pClass .contText .aText li.active a span {
  border: 1px solid white;
}
.banner-pClass .imgliBox {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}
.banner-pClass .imgliBox li {
  display: none;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}
.banner-pClass .imgliBox li img {
  width: 100%;
}
.banner-pClass .imgliBox li.active {
  display: block;
}

.listSwiper .swiper {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}
.listSwiper .swiper .swiper-wrapper .swiper-slide {
  text-align: center;
  font-size: 18px;
  height: auto; /* height: calc((100% - 30px) / 2); */
  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
}
.listSwiper .swiper .swiper-wrapper .swiper-slide a {
  width: 100%;
  border: 1px solid rgba(205, 210, 215, 0.5);
}
.listSwiper .swiper .swiper-pagination {
  margin: 1rem 0 2rem;
  position: initial;
}

/* 我们的产品 */
.contList {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 24%);
  row-gap: 1.5rem;
  justify-content: space-between;
}
.contList li a {
  text-align: center;
  display: flex;
  flex-flow: column;
}
.contList li a .imgBox {
  margin-bottom: 0.2rem;
  border: 1px solid rgba(205, 210, 215, 0.5);
  background: rgba(205, 210, 215, 0.5);
}
.contList li a .text {
  padding: 0.3rem 0;
  display: flex;
  justify-content: center;
}
.contList li a .text p {
  font-size: 1rem;
}
.contList li:hover a .imgBox {
  border-color: rgb(255, 150, 50);
}
.contList li:hover a .imgBox img {
  transform: scale(1.1);
}

/* 首页新闻中心 */
.news.listSwiper li a .imgBox {
  height: 14rem;
  background: white;
}
.news.listSwiper li a .text {
  text-align: left;
  padding: 1rem;
  display: flex;
  flex-flow: column;
  gap: 0.5rem;
}
.news.listSwiper li a .text h4 {
  font-size: 1.2rem;
  line-height: 2rem;
  font-weight: normal;
}
.news.listSwiper li a .text span {
  color: rgb(160, 165, 170);
}
.news.listSwiper li a .text p {
  color: rgb(120, 125, 130);
  font-size: 0.8rem;
  line-height: 1.4rem;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}
.news.listSwiper li:hover a {
  border-color: rgb(255, 150, 50) !important;
}
.news.listSwiper li:hover a .imgBox img {
  transform: scale(1.1);
}

/* 关于我们 */
.about {
  padding: 4rem 0;
  background: rgba(240, 242, 245, 0.5);
  gap: 3rem;
  display: flex;
  flex-flow: column;
}
.about .contWrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.about .contWrap .textBox {
  width: 48%;
  gap: 1rem;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
}
.about .contWrap .textBox > div, .about .contWrap .textBox > ul {
  display: flex;
  flex-flow: column;
  gap: 0.5rem;
}
.about .contWrap .textBox .text p { /* text-indent: 2em; */
  line-height: 1.5rem;
  -webkit-line-clamp: 3;
  text-align: justify;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}
.about .contWrap .textBox .btnBox .btn {
  width: 10rem;
  height: 2.5rem;
  color: white;
  border-radius: 0.2rem;
  background: rgb(240, 90, 36);
  display: flex;
  justify-content: center;
  align-items: center;
}
.about .contWrap ul.ourAdv {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 50%);
  gap: 1rem;
}
.about .contWrap ul.ourAdv li {
  display: flex;
  flex-flow: column;
}
.about .contWrap ul.ourAdv li span {
  font-size: 3.3rem;
  font-weight: bold;
  margin-right: -0.85rem;
  display: flex;
  justify-content: center;
}
.about .contWrap ul.ourAdv li span sup {
  font-size: 1.6rem;
  font-weight: normal;
}
.about .contWrap ul.ourAdv li p {
  font-size: 0.8rem;
  color: rgb(150, 155, 160);
  display: flex;
  align-items: baseline;
}
.about .contWrap .imgBox {
  width: 48%;
}

.ourCret {
  padding: 2rem 0;
  background: rgba(240, 242, 245, 0.5);
}
.ourCret .contHead {
  margin-bottom: 2rem;
}
.ourCret .contList .imgBox {
  background: white;
}

/* 联系我们 */
.contact {
  padding: 4rem 0;
  margin-bottom: 0;
}
.contact .contWrap {
  background: white;
  padding: 0.1rem;
  display: flex;
  justify-content: space-between;
}
.contact .contWrap .textBox {
  padding: 0 2rem;
  display: flex;
  flex-flow: column;
  justify-content: space-evenly;
  align-items: flex-start;
}
.contact .contWrap .textBox > div, .contact .contWrap .textBox > ul {
  margin-bottom: 2rem;
}
.contact .contWrap .textBox .contHead .title1 h2 {
  font-size: 1.8rem;
  font-weight: normal;
}
.contact .contWrap .textBox .text p {
  text-indent: 2em;
  line-height: 1.5rem;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}
.contact .contWrap .textBox ul {
  width: 100%;
  display: flex;
  flex-flow: column;
  gap: 0.5rem;
}
.contact .contWrap .textBox ul li {
  display: flex;
  align-items: center;
}
.contact .contWrap .textBox ul li span {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  margin-right: 0.5rem;
  background: rgb(40, 100, 215);
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact .contWrap .textBox ul li span svg, .contact .contWrap .textBox ul li span img {
  width: -moz-fit-content;
  width: fit-content;
  height: 60%;
}
.contact .contWrap .textBox ul li p {
  font-size: 1rem;
  color: rgb(120, 125, 130);
  text-wrap: nowrap;
  display: flex;
  align-items: baseline;
}
.contact .contWrap .contBox {
  height: 26.5rem;
  border: 0.85rem solid white;
  box-shadow: 0 0 0.3rem rgb(150, 155, 160);
}

.contactD {
  padding: 0;
  background: white;
}
.contactD .contWrap .textBox {
  justify-content: center;
}
.contactD .contWrap .textBox ul li span {
  background: rgb(240, 90, 36);
}

/*  =======  关于 | about  ======= */
.aboutD {
  padding: 0;
  background: white;
}
.aboutD .contWrap .textBox .contHead {
  height: 20%;
  max-height: 4.5rem;
}
.aboutD .contWrap .textBox .contHead .title1 h1 {
  font-size: 1.5rem;
}
.aboutD .contWrap .textBox .text { /*  height: 80%;  */
  overflow-y: scroll;
  margin: auto;
  display: block;
}
.aboutD .contWrap .textBox .text p {
  line-height: 1.5rem !important;
  margin: 1rem auto;
  -webkit-line-clamp: initial;
  text-align: justify; /* display: -webkit-box; */
  overflow: initial;
  text-overflow: initial;
  -webkit-box-orient: initial;
}
.aboutD .contWrap ul.ourAdv {
  grid-template-columns: repeat(4, 25%);
}
.aboutD .contWrap ul.ourAdv li span, .aboutD .contWrap ul.ourAdv li sup {
  color: rgb(45, 47, 50) !important;
}

.devProc {
  position: relative;
}
.devProc .contWrap {
  height: 65%;
  position: absolute;
  z-index: 99;
  width: 100%;
  top: 18%;
  left: 0;
  right: 0;
}
.devProc .contWrap .contHead * {
  color: white;
}
.devProc .contWrap .contHead .title1 h1 {
  font-size: 1.5rem;
}
.devProc .contWrap .contHead .title1 p {
  color: rgba(255, 255, 255, 0.35);
}
.devProc .contWrap .contHead .title2 .pageUp span {
  background: rgba(255, 255, 255, 0.35);
}
.devProc .contWrap .contHead .title2 .pageUp span img, .devProc .contWrap .contHead .title2 .pageUp span svg {
  filter: saturate(1);
}
.devProc .contWrap .contHead .title2 .pageUp span:hover {
  background: rgb(40, 100, 215);
}
.devProc .textBox {
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.devProc .textBox ul {
  width: 100%;
  height: 80%;
  display: flex;
  gap: 3rem;
  justify-content: space-around;
}
.devProc .textBox ul li {
  display: block;
}
.devProc .textBox ul li > div {
  padding: 0 1rem 6rem;
  border-left: 0.1rem solid white;
}
.devProc .textBox ul li > div * {
  color: white;
}
.devProc .textBox ul li > div h2 {
  font-size: 2rem;
}
.devProc .textBox ul li > div p {
  max-width: 8rem;
}

.ourCret .contWrap .contHead .title1 h1 {
  font-size: 1.5rem;
}

/*  =======  产品中心 | productCenter  ======= */
.productWrap {
  padding-bottom: 5rem;
  background: rgba(240, 242, 245, 0.5);
}
.productWrap .pageHeader {
  margin-bottom: 0;
  border: none;
}
.productWrap .pageHeader .itemBox {
  margin: 2rem 0;
  gap: 2rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.productWrap .pageHeader .itemBox li a {
  font-size: 1rem;
  text-wrap: nowrap;
  width: auto;
  background: none;
}
.productWrap .pageHeader .itemBox li.active a {
  color: rgb(240, 90, 36);
  border-bottom: 0.2rem solid rgb(240, 90, 36);
  font-weight: bold;
}
.productWrap .imgWrap {
  padding-bottom: 2rem;
}
.productWrap .imgWrap img {
  width: 100%;
}

.tableWrap {
  overflow-y: auto;
}
.tableWrap table {
  width: 100%;
  border-radius: 0.5rem;
  border-collapse: collapse;
  border-spacing: 0;
  background: white;
  overflow: hidden;
}
.tableWrap table thead th {
  color: white;
  background: rgb(120, 150, 220);
}
.tableWrap table tr {
  width: 100%;
  height: 100%;
  border-bottom: 1px solid rgba(205, 210, 215, 0.5);
}
.tableWrap table tr th, .tableWrap table tr td {
  padding: 0.6rem 1rem;
  text-align: left;
  text-wrap: nowrap;
}
.tableWrap table tr a:hover {
  color: rgb(40, 100, 215);
}

/*  =======  新闻 | news  ======= */
.newsListBox {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 32%);
  row-gap: 2rem;
  justify-content: space-between;
}
.newsListBox li a {
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  gap: 1rem;
}
.newsListBox li a .imgBox {
  width: 100%;
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(205, 210, 215, 0.5);
}
.newsListBox li a .imgBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: auto;
}
.newsListBox li a .text {
  gap: 0.5rem;
  display: flex;
  flex-flow: column;
}
.newsListBox li a .text h6 {
  font-size: 1rem;
  font-weight: normal;
  margin-bottom: 0.5rem;
}
.newsListBox li a .text p {
  color: rgb(160, 165, 170);
  -webkit-line-clamp: 3;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.newsListBox li:hover a {
  border-color: rgb(255, 150, 50);
}
.newsListBox li:hover a .imgBox img {
  transform: scale(1.1);
}

/*  =======  解决方案 | solnList  ======= */
.solnList li a .text p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.solnList li a .text p span {
  width: 2rem;
  height: 2rem;
  padding: 0.3rem;
  font-size: 2.2rem;
  color: rgba(150, 152, 155, 0.5);
  background: rgba(150, 152, 155, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.solnList li a .text p span svg {
  width: 100%;
  height: 100%;
}
.solnList li a .text p span svg path {
  fill: white;
}
.solnList li a:hover .text span {
  background: rgb(240, 90, 36);
}
.solnList li a:hover .text span svg path {
  fill: white;
}

.homeWrap .ourProduct .solnList {
  grid-template-columns: repeat(3, 32%);
}
.homeWrap .ourProduct .solnList li a {
  height: 100%;
  display: flex;
  border: 1px solid rgba(205, 210, 215, 0.5);
  background: rgba(240, 242, 245, 0.5);
  justify-content: space-between;
  flex-flow: nowrap;
}
.homeWrap .ourProduct .solnList li a > div {
  width: 50%;
}
.homeWrap .ourProduct .solnList li a .text {
  height: 100%;
  padding: 2.5rem 1.5rem;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
  flex-flow: column;
}
.homeWrap .ourProduct .solnList li a .text > div {
  gap: 0.5rem;
  display: flex;
  flex-flow: column;
}
.homeWrap .ourProduct .solnList li a .text > div * {
  text-align: left;
  font-weight: normal;
}
.homeWrap .ourProduct .solnList li a .text h5 {
  font-size: 1.3rem;
}
.homeWrap .ourProduct .solnList li a .text h6 {
  font-size: 1.2rem;
  color: rgba(150, 152, 155, 0.5);
  text-transform: uppercase;
  -webkit-line-clamp: 2;
}
.homeWrap .ourProduct .solnList li a .text p span {
  color: white;
}
.homeWrap .ourProduct .solnList li a .text p span > div {
  height: 70%;
}
.homeWrap .ourProduct .solnList li a .text p span > p {
  height: 30%;
}
.homeWrap .ourProduct .solnList li a .imgBox {
  border: none;
  background: none;
}
.homeWrap .ourProduct .solnList li a .imgBox img {
  width: 70%;
  height: 70%;
}

/*  =======  联系我们 | contactUs  ======= */
#navMap {
  width: 100%;
  height: 100%;
  margin: 0 auto 2rem;
  border: 1px solid rgba(150, 152, 155, 0.5);
}

#markerTip {
  margin: auto;
}
#markerTip .tipBox {
  max-width: 28rem;
  margin: auto;
  box-shadow: 0 0 0.5rem 0.1rem rgba(0, 0, 0, 0.5);
  position: relative;
  word-break: break-word;
}
#markerTip .tipBox .tipCont {
  width: 100%;
  height: 100%;
  padding: 0.5rem;
  margin: auto;
  display: flex;
  align-items: center;
  background: white;
  position: relative;
  word-break: break-word;
}
#markerTip .tipBox .tipCont > div:nth-child(2) {
  padding: 0 0.5rem;
}
#markerTip .tipBox .tipCont h6 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
#markerTip .tipBox .tipCont * p {
  line-height: 1.2rem;
  font-size: 0.8rem;
  color: rgb(100, 105, 110);
}
#markerTip .tipBox .bubbleHorn {
  left: 48%;
  right: 48%;
  height: 1rem;
  width: 1rem;
  position: absolute;
  overflow: hidden;
  bottom: -0.5rem;
  background: white;
  transform: rotate(45deg);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}
#markerTip .marker-logo {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
  margin: auto;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 0.5rem 0.1rem rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#markerTip .marker-logo img, #markerTip .marker-logo svg {
  height: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.formWarp {
  padding: 4rem 0;
  margin-bottom: 0;
  background: rgba(240, 242, 245, 0.5);
}
.formWarp .contactUsBox {
  width: 100%;
  padding: 0 0 2rem;
  margin: auto;
  display: flex;
  flex-direction: column;
}
.formWarp .contactUsBox h1 {
  width: 100%;
  height: 3rem;
  line-height: 3rem;
  font-weight: normal;
  text-align: left;
  color: rgb(45, 47, 50);
}
.formWarp .contactUsBox ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.formWarp .contactUsBox ul p {
  line-height: 1.5rem;
}
.formWarp .contactUsBox.formSub textarea {
  width: 100%;
  height: 10rem;
  margin: 0.5rem 0;
}
.formWarp .contactUsBox.formSub button {
  width: 24rem;
  height: 3rem;
  font-size: 1rem;
  margin: 0.5rem 0;
}
.formWarp .contactUsBox.formSub li {
  width: 30%;
}
.formWarp .contactUsBox.formSub li input {
  width: 100%;
  height: 3rem;
  margin: 0.5rem 0;
}

/*  =======  产品详情 | productDetails  ======= */
.prodDetail .summary_mediaText .textBox .title {
  width: 100%;
  margin: 0 0 2rem;
  border-bottom: 1px solid rgba(205, 210, 215, 0.5);
  padding-bottom: 2rem;
}
.prodDetail .summary_mediaText .textBox .title h2 {
  height: auto;
  margin: 0 auto 0.75rem;
}
.prodDetail .summary_mediaText .textBox .text .param {
  width: 100%;
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  background: white;
}
.prodDetail .summary_mediaText .textBox .text .param li {
  list-style: none;
  margin-right: 0;
}
.prodDetail .summary_mediaText .textBox .text .param li dd, .prodDetail .summary_mediaText .textBox .text .param li dt {
  display: inline-block;
}
.prodDetail .summary_mediaText .textBox .text .overview {
  width: 100%;
  margin-bottom: 1rem;
}
.prodDetail .summary_mediaText .textBox .text .overview h6 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.prodDetail .summary_mediaText .textBox .text .overview p {
  margin-bottom: auto;
}
.prodDetail .mainText > div {
  border-bottom: 1px solid rgba(205, 210, 215, 0.5);
  padding-bottom: 2rem;
}
.prodDetail .ourProduct ul {
  margin: 0;
}
.prodDetail .ourProduct ul li {
  list-style: none;
}

/*  =======  新闻详情 | newsDetails  ======= */
.newsDetail > .gapWarp:first-child {
  padding: 0;
  margin: 0;
}
.newsDetail > .gapWarp:first-child .mainTitle {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

/* +++++++++======== 移动端适配 =========++++++++ */
/* `xxl` applies to x-large devices (large desktops, less than 1400px) */
/* `xxl`适用于x-大型设备（大型台式机，小于1400px） */
@media (max-width: 1600px) {
  #header .navbar {
    width: 100%;
    height: 5rem;
  }
  .wrapper {
    margin-top: 5rem;
  }
  .contWrap {
    padding: 0 1.5rem;
  }
}
@media (max-width: 1399.98px) {
  .pageHeadWarp .contHead {
    height: 3rem;
  }
}
/* `xl` applies to large devices (desktops, less than 1200px) */
/* 'xl'适用于大型设备（台式机，小于1200px） */
@media (max-width: 1200px) {
  .banner .contText .text h3 {
    font-size: 1.5rem;
  }
  .banner .contText .text div h1 {
    font-size: 2.2rem;
  }
  .homeWrap .ourProduct .solnList li a .text h6 {
    font-size: 1rem;
  }
}
/* `lg` applies to medium devices (tablets, less than 992px) */
/* `lg` 适用于中型设备（平板电脑，小于992px） */
@media (max-width: 992px) {
  #header .navbar {
    height: 4rem;
  }
  .wrapper {
    margin-top: 4rem;
  }
  .gapWarp {
    margin: 2rem 0;
  }
  .contWrap {
    padding: 0 1rem;
  }
  #header .navbar > div .navbar-brand .logo {
    height: 2rem;
  }
  #header .navbar > div .collapse ul li a {
    min-width: 5rem;
    font-size: 0.9rem;
  }
  #header .navbar > div .navbar-extBtn .hotline svg {
    width: 1.5rem;
    height: 1.2rem;
  }
  #header .navbar > div .navbar-extBtn .hotline a {
    font-size: 1rem;
  }
  #footer .footbar1 .contWrap > ul {
    padding: 1rem 0;
  }
  #footer * h5 {
    font-size: 0.9rem;
    line-height: 1.5rem;
  }
  /* banner */
  .homeBanner .contText {
    height: 80%;
  }
  .homeBanner .contText .text h1 {
    font-size: 2rem !important;
  }
  .homeBanner .contText .text h3 {
    font-size: 1.5rem;
  }
  .homeBanner .contText .text span {
    margin-bottom: 1.2rem;
  }
  .homeBanner .swiper-horizontal > .swiper-pagination-bullets,
  .homeBanner .swiper-pagination-bullets.swiper-pagination-horizontal,
  .homeBanner .swiper-pagination-custom, .homeBanner .swiper-pagination-fraction {
    bottom: 0.3rem;
  }
  .homeBanner .banner .swiper-pagination .swiper-pagination-bullet-active {
    width: 0.8rem;
  }
  /*  =======  首页 | homepage  ======= */
  .contHead .title1 h1 {
    font-size: 1.5rem;
  }
  .contHead .title1 p {
    font-size: 0.8rem;
  }
  .contHead .title2 .pageUp span {
    width: 2.4rem;
    height: 2.4rem;
  }
  .pageHeadWarp .pageHeader * {
    font-size: 0.9rem;
  }
  .homeWrap .ourProduct .solnList li a .text h5 {
    font-size: 1rem;
  }
  .homeWrap .ourProduct .solnList li a .text h6 {
    font-size: 0.8rem;
  }
  .about .contWrap ul.ourAdv li span {
    font-size: 2.5rem;
  }
  .ourProduct .contHead {
    margin-bottom: 1rem;
  }
  .productWrap .pageHeader .itemBox li a {
    font-size: 0.9rem;
  }
  .contList li a .text p {
    font-size: 0.8rem;
  }
  .contact {
    padding: 2rem 0;
    margin-bottom: 0;
  }
  .newsListBox {
    gap: 1rem 0;
  }
  .newsListBox li a {
    gap: 0.5rem 0;
  }
  .newsListBox li a .text h6 {
    font-size: 0.9rem;
  }
  .newsListBox li a .text p {
    line-height: 1.2rem;
  }
  .contact .contWrap .textBox .contHead .title1 h2 {
    font-size: 1.4rem;
  }
  .contact .contWrap .textBox ul li p {
    font-size: 0.8rem;
  }
  .contact .contWrap .textBox ul li span {
    width: 1.4rem;
    height: 1.4rem;
  }
  .formWarp .contactUsBox h1 {
    font-size: 1.4rem;
  }
  .newsDetail > .gapWarp:first-child .mainTitle {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .aboutD .contWrap .textBox .text p {
    line-height: 1.4rem !important;
  }
  .aboutD .contWrap .textBox {
    height: 16rem;
  }
  .articleWarp .mainText {
    margin-bottom: 2rem;
  }
  .articleWarp .mainText .imgBox {
    margin: 0.5rem 0;
  }
  .articleWarp .mainTitle h1 {
    font-size: 1.5rem;
  }
  .articleWarp h2 {
    font-size: 1rem;
  }
  #markerTip .tipBox .tipCont * p {
    font-size: 0.8rem;
  }
  .formWarp {
    margin-bottom: 0;
  }
}
/* `md` applies to small devices (landscape phones, less than 768px) */
/* `md`适用于小型设备（横向电话，小于768px） */
@media (max-width: 768px) {
  #header .navbar {
    height: 4rem;
  }
  .wrapper {
    margin-top: 4rem;
  }
  /* 顶部导航栏 */
  #header .navbar {
    height: 4rem;
  }
  #header .navbar > div {
    height: auto;
  }
  #header .navbar > div .navbar-brand .logo {
    height: 2.2rem;
  }
  #header .navbar > div .collapse {
    display: none;
    width: 100%;
    height: auto;
    position: absolute;
    top: 4rem;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
  }
  #header .navbar > div .collapse ul {
    width: 100%;
    justify-content: space-around;
  }
  #header .navbar > div .collapse ul li a {
    color: white;
    line-height: 3rem;
    padding: 0 1rem;
    border-bottom: 1px solid rgba(100, 100, 100, 0.5);
  }
  #header .navbar > div .collapse ul li.active a {
    border-radius: 0rem;
  }
  #header .navbar > div .collapse.active {
    display: flex;
  }
  #header .navbar > div .navbar-extBtn .navbar-toggler {
    display: flex;
  }
  #header .navbar.sticky {
    height: 3rem;
  }
  #header .navbar.sticky .collapse {
    top: 2.5rem;
  }
  /* 文章*/
  /* banner */
  .banner .contText .text h3 {
    font-size: 1.5rem;
  }
  .banner .contText .text div h1 {
    font-size: 2rem;
  }
  .homeBanner .contText {
    height: 80%;
  }
  .homeBanner .contText .text h1 {
    font-size: 3rem;
  }
  .homeBanner .contText .text span {
    margin-bottom: 1.2rem;
  }
  .homeBanner .swiper-horizontal > .swiper-pagination-bullets,
  .homeBanner .swiper-pagination-bullets.swiper-pagination-horizontal,
  .homeBanner .swiper-pagination-custom, .homeBanner .swiper-pagination-fraction {
    bottom: 0;
  }
  /* customers */
  .customers.listSwiper .swiper-wrapper {
    height: 16rem;
  }
  /*  =======  联系我们 | contactUs  ======= */
  .contactUsBox.contactInfo ul {
    display: grid;
    grid-template-columns: repeat(2, 45%);
    gap: 1rem;
  }
  .contact > div {
    flex-flow: column;
  }
  .contact .contWrap .textBox {
    margin: 1rem 0;
  }
  .contact .contWrap .textBox ul {
    margin: auto;
  }
}
/* `sm` applies to x-small devices (portrait phones, less than 576px) */
/* `sm` 适用于x-small设备（竖屏手机，小于576px） */
@media (max-width: 576px) {
  .wrapper {
    margin-top: 3rem;
  }
  .gapWarp {
    padding: 1.5rem 0;
  }
  .contWrap {
    padding: 0 0.5rem;
  }
  #header .navbar {
    height: 3rem;
  }
  #header .navbar > div .collapse {
    top: 3rem;
  }
  #header .navbar > div .collapse ul {
    flex-flow: column;
  }
  #header .navbar > div .navbar-brand .logo .logo02 {
    display: none;
  }
  #header .navbar > div .navbar-extBtn .hotline svg {
    width: 1rem;
  }
  #header .navbar > div .navbar-extBtn .hotline a {
    font-size: 1rem;
  }
  #header .navbar > div .navbar-extBtn .navbar-toggler {
    margin: auto 0rem 0rem 1rem;
  }
  /* 公共排版 */
  .articleWarp .mainText p {
    line-height: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .articleWarp .mainText {
    margin-bottom: 2rem;
  }
  .homeBanner .contText {
    height: 80%;
  }
  .homeBanner .contText .text h1 {
    font-size: 2.5rem;
  }
  .homeBanner .contText .text span {
    margin-bottom: 1rem;
  }
  .homeBanner .contText .text p {
    line-height: 1.5rem;
    margin: 0.3rem auto 0.5rem;
  }
  /* ==========  文章排版样式（通用）   ========== */
  .articleWarp > div {
    padding: 0.5rem 0;
  }
  .articleWarp > .title h1 {
    font-size: 1.5rem;
    margin: 0 0 0.5rem;
  }
  .articleWarp .summary_mediaText {
    width: 100%;
    flex-flow: column;
    height: auto;
    max-height: none;
  }
  .articleWarp .summary_mediaText .mediaBox {
    width: 100%;
  }
  .articleWarp .summary_mediaText .textBox {
    width: 100%;
    padding: 1.5rem 0;
  }
  .articleWarp .summary_mediaText .textBox h2 {
    font-size: 1.8rem;
    margin: 1rem auto;
    height: auto;
  }
  .articleWarp > .gapWarp:first-child {
    padding-bottom: 0;
  }
  /*  =======  首页 | homepage  ======= */
  .banner-pClass {
    display: none;
  }
  /* ourProduct */
  .ourProduct .contHead .title1 h1 {
    font-size: 1.8rem;
  }
  .ourProduct .contHead .title2 h2 {
    font-size: 1.2rem;
    min-width: 3rem;
  }
  .ourProduct .contHead .title2 ul {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.3rem 0.5rem;
  }
  .ourProduct .contHead .title2 ul li a {
    font-size: 1rem;
  }
  .homeWrap .ourProduct .solnList li a .text {
    padding: 0.5rem;
  }
  .homeWrap .ourProduct .solnList {
    grid-template-columns: repeat(2, 49%);
  }
  .contList {
    row-gap: 1.5rem;
  }
  /* about */
  .about {
    gap: 1.5rem;
  }
  .about .contWrap .imgBox {
    display: none;
  }
  .about .contWrap .textBox {
    width: 100%;
  }
  /* ourAdv */
  .ourAdv {
    padding: 1rem 0;
  }
  .ourAdv .contWrap {
    grid-template-columns: repeat(auto-fill, 48%);
  }
  .ourAdv .contWrap > div > div {
    width: 5rem;
    height: 5rem;
    margin-bottom: 0.5rem;
    padding: 1rem;
  }
  /*  =======  关于 | about  ======= */
  .aboutD {
    padding: 0;
    margin-bottom: 0;
  }
  .devProc .textBox ul {
    gap: 1rem;
  }
  .devProc .contWrap .contHead {
    margin-bottom: 0.5rem;
  }
  .devProc .contWrap .contHead .title1 h1 {
    font-size: 1.2rem;
  }
  .devProc .contWrap .contHead .title1 p {
    font-size: 0.5rem;
  }
  .contHead .title2 .pageUp span {
    width: 2rem;
    height: 2rem;
  }
  .devProc .textBox ul li > div h2 {
    font-size: 1.2rem;
  }
  .contList {
    grid-template-columns: repeat(2, 49%);
  }
  /*  =======  产品中心 | productCenter  ======= */
  .productWrap .pageHeader .itemBox {
    gap: 1rem;
  }
  .productWrap .pageHeader .itemBox li {
    gap: 1rem;
  }
  .productWrap .pageHeader .itemBox li a {
    height: 2rem;
  }
  /*  =======  新闻 | news  ======= */
  .newsList.gapWarp {
    padding: 0;
    margin: 1rem 0;
  }
  .newsListBox {
    grid-template-columns: repeat(1, 100%);
  }
  .newsListBox li a .text {
    gap: 0rem;
  }
  /*  =======  合作伙伴 | partner  ======= */
  .partnerWrap .contList {
    grid-template-columns: repeat(3, 31%);
    row-gap: 1rem;
  }
  #footer {
    display: none;
  }
}
@media (max-width: 480px) {
  /* 页码模块 */
  .page .pagination li a {
    width: 1.5rem;
    height: 1.5rem;
    margin: 0.2rem;
  }
  /* banner */
  .banner .contText .text div h1 {
    font-size: 1.5rem;
  }
  .banner .contText .text div h3 {
    font-size: 1rem;
  }
  .homeBanner .contText {
    width: 70%;
  }
  .homeBanner .contText .text h1 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .homeBanner .contText .text span {
    width: 2.5rem;
    height: 0.1rem;
    margin-bottom: 0.5rem;
  }
  .homeBanner .contText .text p {
    line-height: 1.2rem;
    font-size: 0.8rem;
  }
  /*  =======  首页 | homepage  ======= */
  .ourProduct .contHead {
    margin-bottom: 1.5rem;
  }
  .ourProduct .contHead .title2 ul li a {
    font-size: 0.8rem;
  }
  .pageHeadWarp {
    display: none;
  }
  .contList {
    row-gap: 1rem;
  }
  .productWrap .pageHeader .itemBox {
    margin: 1.5rem 0;
  }
  .pageHeadWarp .contHead .divL {
    display: none;
  }
  .articleWarp .mainTitle h1 {
    font-size: 1rem;
  }
  .banner .contText .text div h1 {
    font-size: 1rem;
  }
  .homeWrap .ourProduct .solnList li a .text h5 {
    font-size: 0.8rem;
  }
  .homeWrap .ourProduct .solnList li a .text h6 {
    font-size: 0.6rem;
  }
  .contList li a .text p {
    display: none;
  }
  .news.listSwiper li a .text h4 {
    font-size: 0.8rem;
  }
  /* customers */
  .customers.listSwiper .swiper-wrapper {
    height: 14rem;
  }
  /*  =======  合作伙伴 | partner  ======= */
  .partnerWrap .contList {
    row-gap: 0.5rem;
  }
  /*  =======  联系我们 | contactUs  ======= */
  .contactUsBox.contactInfo ul {
    gap: 0.5rem;
  }
  .contactUsBox.formSub ul {
    flex-flow: column;
  }
  .formWarp .contactUsBox.formSub li {
    width: 100%;
  }
  .contactD {
    margin: 0rem;
  }
  .aboutD .contWrap ul.ourAdv {
    grid-template-columns: repeat(2, 48%);
  }
}
@media (max-width: 320px) {
  .wrapper {
    margin-top: 3rem;
  }
  .contWrap {
    padding: 0 0.5rem;
  }
  /*  =======  顶部导航 | Top Menu Navbar  ======= */
  #header .navbar {
    height: 3rem;
  }
  #header .navbar > div .navbar-brand {
    width: 30%;
  }
  #header .navbar > div .navbar-brand .logo {
    height: 2rem;
  }
  #header .navbar > div .navbar-brand .logo .logo02 {
    display: none;
  }
  #header .navbar > div .navbar-extBtn .navbar-toggler {
    margin: auto 0rem 0rem 0.5rem;
  }
  #header .navbar > div .collapse {
    top: 3rem;
  }
  #header .navbar > div .collapse ul li a {
    line-height: 2rem;
  }
  #header .navbar.sticky {
    height: 2.5rem;
  }
  #header .navbar.sticky .collapse {
    top: 3rem;
  }
  /* 页码模块 */
  .page {
    padding: 1rem 0 1.5rem;
  }
  .page .pagination li a {
    width: 1.2rem;
    height: 1.2rem;
    margin: 0.1rem;
  }
  /* 页面内容区头部 */
  .pageHeader * {
    font-size: 0.8rem;
  }
  .pageHeader .itemBox {
    gap: 0.3rem;
  }
  .pageHeader .itemBox li a {
    width: auto;
    min-width: auto;
    height: 2rem;
  }
  /* banner */
  .homeBanner .contText {
    width: 70%;
  }
  .homeBanner .contText .text h1 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
  }
  .homeBanner .contText .text span {
    width: 2.5rem;
    height: 0.05rem;
    margin-bottom: 0.3rem;
  }
  .homeBanner .contText .text p {
    line-height: 1rem;
    font-size: 0.5rem;
  }
  .homeBanner .swiper-button-next:after, .homeBanner .swiper-button-prev:after {
    font-size: 2rem;
  }
  .banner .contText .text h3 {
    font-size: 0.8rem;
  }
  .banner .contText .text h1 {
    font-size: 1rem;
  }
  .banner .contText .text .div h1 {
    font-size: 1rem;
  }
  /* product */
  .homeWrap .ourProduct .solnList {
    grid-template-columns: repeat(1, 100%);
  }
  /* about */
  .about .contWrap .textBox > div, .about .contWrap .textBox > ul {
    margin-bottom: 1rem;
  }
  .about .contWrap .textBox .bizoverview {
    grid-template-columns: repeat(2, 48%);
    gap: 0.5rem;
  }
  /* ourAdv */
  .ourAdv .contWrap {
    grid-template-columns: repeat(auto-fill, 100%);
  }
  .ourAdv .contWrap > div {
    padding: 1rem 0.5rem;
  }
  .ourAdv .contWrap > div > div {
    width: 4rem;
    height: 4rem;
    margin-bottom: 0.2rem;
    padding: 0.8rem;
  }
  .ourAdv .contWrap > div span {
    line-height: 2rem;
  }
  /* customers */
  .customers.listSwiper .swiper-wrapper {
    height: 10rem;
  }
  /*  =======  关于 | about  ======= */
  /*  =======  新闻 | news  ======= */
  .newsListBox li a {
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0.8rem;
  }
  .newsListBox li a .imgBox {
    width: 100%;
    order: 1;
  }
  .newsListBox li a .text {
    width: 100%;
    order: 3;
  }
  .newsListBox li a .text h6 {
    margin-bottom: 0.5rem;
  }
  .newsListBox li a .text p {
    line-height: 1.2rem;
  }
  .newsListBox li a .date {
    order: 2;
  }
  /*  =======  合作伙伴 | partner  ======= */
  .partnerWrap .contList {
    grid-template-columns: repeat(2, 48%);
    row-gap: 0.3rem;
  }
}/*# sourceMappingURL=style.css.map */