@import '../css/reset.css';
.w {
  width: 15rem;
  margin: 0 auto;
}
/*  隐藏滚动条 */
.hide-scrollbar {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.hide-scrollbar::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}
.select-arrow {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: url('../img/icon/down.png') 90% center no-repeat #fff;
}
.pagination {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination ul {
  display: flex;
}
.pagination ul li {
  text-align: center;
  cursor: pointer;
  border: 1px solid #aaaaaa;
  margin: 0 0.05rem;
  font-size: 0.14rem;
}
.pagination ul li a {
  display: block;
  color: #000;
  padding: 0.06rem 0.12rem;
}
.pagination ul li a:hover {
  background-color: #38813a;
  color: #fff;
}
.pagination ul li a.active {
  color: #fff;
  background-color: #38813a;
}
.pagination .prev a,
.pagination .nexts a {
  font-size: 0.14rem;
  border: 1px solid #aaaaaa;
  display: block;
  padding: 0.06rem 0.1rem;
}
.pagination .prev a:hover,
.pagination .nexts a:hover {
  background-color: #7fbf42;
  color: #fff;
}
.pagination .prev {
  margin-right: 0.05rem;
}
.pagination .nexts {
  margin-left: 0.05rem;
}
.pagination .text {
  color: #333;
  font-size: 0.14rem;
  margin-left: 0.2rem;
}
.model {
  padding: 0.8rem 0 1rem;
}
.model_title {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.model_title h3 {
  font-size: 0.48rem;
  font-weight: 700;
  text-transform: uppercase;
}
.section {
  background: #f5f5f7;
  box-sizing: border-box;
}
.section .view {
  margin-top: 1rem;
}
.banner {
  width: 100%;
  height: fit-content;
  position: relative;
  margin-top: 0.8rem;
}
.banner .swiper {
  width: 100%;
  height: calc(100vh - 0.8rem);
}
.banner .swiper .swiper-slide {
  height: 100%;
  width: 100%;
}
.banner .swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner .swiper .swiper-horizontal > .swiper-pagination-bullets,
.banner .swiper .swiper-pagination-bullets.swiper-pagination-horizontal,
.banner .swiper .swiper-pagination-custom,
.banner .swiper .swiper-pagination-fraction {
  width: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  left: 75%;
  bottom: 6%;
}
.banner .swiper .swiper-pagination .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
}
.banner .swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #38813a;
  width: 0.36rem;
  border-radius: 10px;
}
.rightfixed {
  position: fixed;
  right: 0.2rem;
  bottom: 0.8rem;
  width: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  height: fit-content;
  background-color: #fff;
  border-radius: 0.4rem;
  padding: 0.12rem 0.1rem;
  z-index: 88;
  box-shadow: 0 0 0.1rem #ccc;
}
.rightfixed .item {
  margin: 0.1rem 0;
}
.rightfixed .item a {
  padding: 0.1rem 0;
  border-bottom: 1px solid #eeeeee;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.rightfixed .item a img {
  width: 0.2rem;
  height: 0.2rem;
  object-fit: contain;
}
.rightfixed .item a span {
  font-size: 0.12rem;
  color: #323232;
}
.rightfixed .item:last-child {
  border: none;
}
.rightfixed .item:last-child a {
  border-bottom: none;
}
.rightfixed .wx {
  position: relative;
}
.rightfixed .wx .wechat {
  display: none;
  position: absolute;
  left: -1.5rem;
  top: -0.2rem;
  transition: all 0.3s;
}
.rightfixed .wx .wechat img {
  width: 1.3rem;
  height: 1.3rem;
}
.rightfixed .wx.active .wechat {
  display: block;
  opacity: 1;
}
.ts-box {
  position: relative;
  width: 100%;
}
.ts-box .source-conter {
  position: relative;
}
.ts-box .source-conter .swiper {
  width: 100%;
  box-sizing: border-box;
}
.ts-box .source-conter .swiper .swiper-slide {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.23rem;
  width: 100%;
}
.ts-box .source-conter .swiper .swiper-slide .item {
  width: 100%;
  height: auto;
  border-radius: 0.2rem;
  background: #fff;
}
.ts-box .source-conter .swiper .swiper-slide .item .imgs {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.2rem;
}
.ts-box .source-conter .swiper .swiper-slide .item .imgs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1);
  transition: transform 0.8s;
  display: block;
}
.ts-box .source-conter .swiper .swiper-slide .item .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.16rem 0.2rem;
}
.ts-box .source-conter .swiper .swiper-slide .item .inner .text {
  font-size: 0.18rem;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  white-space: normal !important;
  text-overflow: ellipsis;
  word-wrap: break-word;
}
.ts-box .source-conter .swiper .swiper-slide .item:hover .imgs {
  overflow: hidden;
  position: relative;
  transition: transform 0.5s;
}
.ts-box .source-conter .swiper .swiper-slide .item:hover .imgs img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s;
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(1.05);
}
.ts-box .source-conter .swiper-button-prev::after,
.ts-box .source-conter .swiper-button-next::after {
  border: none;
  font-size: 0.3rem;
  color: #b7b7b7;
  font-weight: bold;
  transition: all 0.3s;
}
.ts-box .source-conter .swiper-button-prev:hover::after,
.ts-box .source-conter .swiper-button-next:hover::after {
  color: #000;
}
.ts-box .source-conter .swiper-button-prev {
  top: 45%;
  left: 2%;
}
.ts-box .source-conter .swiper-button-next {
  top: 45%;
}
.section-1 .view {
  width: 100%;
  display: flex;
}
.section-1 .view .left {
  flex-shrink: 0;
  background: #fff;
  width: 2.4rem;
  border-radius: 0.25rem;
}
.section-1 .view .left .title {
  padding: 0.22rem 0;
  background: #e1e1e1;
  border-radius: 0.25rem 0.25rem 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.18rem;
}
.section-1 .view .left .tabs {
  width: 100%;
}
.section-1 .view .left .tabs .tab {
  border-bottom: 1px solid #e1e1e1;
}
.section-1 .view .left .tabs .tab a {
  display: block;
  padding: 0.2rem 0.26rem;
  font-size: 0.18rem;
}
.section-1 .view .left .tabs .tab:last-child {
  border-bottom: none;
}
.section-1 .view .ts-box {
  width: calc(100% - 2.4rem);
}
.section-1 .view .ts-box .source-conter .swiper {
  width: 85%;
}
.section-1 .view .ts-box .source-conter .swiper .swiper-slide {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.3rem;
  width: 100%;
}
.section-1 .view .ts-box .source-conter .swiper .swiper-slide .item {
  height: 3.38rem;
}
.section-1 .view .ts-box .source-conter .swiper .swiper-slide .item .imgs {
  height: 2.2rem;
}
.section-2 .ts-box .source-conter .swiper {
  width: 85%;
}
.section-2 .ts-box .source-conter .swiper .swiper-slide {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.23rem;
  width: 100%;
}
.section-2 .ts-box .source-conter .swiper .swiper-slide .item {
  padding: 0.2rem;
  height: 5.2rem;
  box-sizing: border-box;
}
.section-2 .ts-box .source-conter .swiper .swiper-slide .item .imgs {
  height: 3.6rem;
}
.section-3 .w {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  height: 6.7rem;
  box-sizing: border-box;
}
.section-3 .w .left {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section-3 .w .left .model_title {
  align-items: flex-start;
}
.section-3 .w .left p {
  font-size: 0.25rem;
  line-height: 0.48rem;
  margin: 0.6rem 0;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  white-space: normal !important;
  text-overflow: ellipsis;
  word-wrap: break-word;
}
.section-3 .w .left .more a {
  color: #009944;
}
.section-3 .w .right {
  width: 100%;
  height: 100%;
  border-radius: 25px;
}
.section-3 .w .right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
}
.section-4 .us-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.2rem;
  width: 90%;
  margin: 0 auto;
}
.section-4 .us-box .inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-4 .us-box .inner .icons {
  width: 0.6rem;
  height: 0.6rem;
}
.section-4 .us-box .inner .icons img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.section-4 .us-box .inner .data {
  display: flex;
  align-items: baseline;
  font-size: 0.7rem;
  font-weight: bold;
  color: #1d1d1f;
  margin-top: 0.2rem;
}
.section-4 .us-box .inner .text {
  font-size: 0.2rem;
  text-transform: uppercase;
  font-weight: bold;
  color: #1d1d1f;
  text-align: center;
}
.section-5 .inner {
  margin-top: 0.8rem;
  width: 100%;
  height: 7.2rem;
  overflow: hidden;
  position: relative;
}
.section-5 .inner .slide-info {
  font-size: 0.42rem;
  color: #6e6e73;
  position: absolute;
}
.section-5 .inner .slide-info span {
  display: inline-block;
  margin: 0 0.1rem;
}
.section-5 .swiper {
  width: 100%;
  height: 100%;
}
.section-5 .swiper .swiper-slide {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
}
.section-5 .swiper .swiper-slide .top {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-5 .swiper .swiper-slide .top a {
  display: block;
  width: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  padding: 0.2rem 0.69rem;
  border-radius: 0.5rem;
  font-size: 0.36rem;
  border: 1px solid #000;
}
.section-5 .swiper .swiper-slide .top .line {
  height: 0.8rem;
  width: 1px;
  border: 1px dashed #626263;
}
.section-5 .swiper .swiper-slide .content {
  margin-top: 0.15rem;
  width: 100%;
  height: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 0 0.2rem 0.5rem;
}
.section-5 .swiper .swiper-slide .content .text {
  font-size: 0.42rem;
  color: #1d1d1f;
}
.section-5 .swiper .swiper-slide .content .text span {
  font-size: 0.8rem;
  font-weight: bold;
}
.section-5 .swiper .swiper-pagination-vertical.swiper-pagination-bullets,
.section-5 .swiper .swiper-vertical > .swiper-pagination-bullets {
  right: 4% !important;
  top: 80% !important;
}
.section-5 .swiper .swiper-pagination-bullet {
  width: 0.2rem;
  height: 0.2rem;
  background: #d8d8d8;
}
.section-5 .swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #000;
}
.section-5 .swiper .swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.section-5 .swiper .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0.1rem 0;
}
.section-6 .text {
  font-size: 0.26rem;
  text-align: center;
  margin-top: 0.8rem;
}
.section-6 .zy-Slide {
  font-size: 0.2rem;
  position: relative;
  width: 100%;
  height: 4.5rem;
  margin: 1rem auto 0;
}
.section-6 .zy-Slide ul {
  position: relative;
  width: 70%;
  height: 4.5rem;
  margin: 0 auto;
}
.section-6 .zy-Slide li {
  position: absolute;
  list-style: none;
  background: #000;
  width: 0;
  height: 0;
  top: 3.1rem;
  left: 4.5rem;
  z-index: 0;
  cursor: pointer;
  border-radius: 3px;
  margin: 0;
  padding: 0;
}
.section-6 .zy-Slide li img {
  width: 100%;
  height: 100%;
  vertical-align: middle;
}
.section-6 .zy-Slide section {
  position: absolute;
  top: 50%;
  cursor: pointer;
  transform: translateY(-55%);
}
.section-6 .zy-Slide section i {
  font-weight: bold;
  font-size: 0.6rem;
}
.section-6 .zy-Slide section:nth-child(1) {
  left: 1rem;
}
.section-6 .zy-Slide section:nth-child(2) {
  right: 1rem;
}
.section-7 .tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1.2rem;
}
.section-7 .tabs .tab {
  margin-right: 1rem;
  font-size: 0.36rem;
}
.section-7 .tabs .tab a {
  color: #6e6e73;
}
.section-7 .tabs .tab:last-child {
  margin-right: 0;
}
.section-7 .tabs .tab.active a {
  color: #000;
}
.section-7 p {
  font-size: 0.28rem;
}
.section-7 .list {
  margin-top: 1rem;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 0.3rem;
  row-gap: 0.6rem;
}
.section-7 .list .inner {
  position: relative;
  width: 100%;
  height: 4rem;
}
.section-7 .list .inner .imgs {
  width: 100%;
  height: 100%;
}
.section-7 .list .inner .imgs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-7 .list .inner .mask {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  width: 100%;
  height: 30%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.83797269) 14%, rgba(255, 255, 255, 0) 79%);
  opacity: 0.8;
  padding: 0.1rem 0.28rem;
  border-radius: 0.2rem;
}
.section-7 .list .inner .mask .box {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.section-7 .list .inner .mask .box .title {
  font-size: 0.24rem;
  font-weight: bold;
}
.section-7 .list .inner .mask .box .text {
  font-size: 0.18rem;
  color: rgba(255, 255, 255, 0.8);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  white-space: normal !important;
  text-overflow: ellipsis;
  word-wrap: break-word;
}
.banner2 {
  margin-top: 0.8rem;
  width: 100%;
  height: 4.5rem;
  position: relative;
}
.banner2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner2 .dog {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 0.52rem;
  text-transform: uppercase;
}
.breadBox {
  background: #f5f5f7;
  padding: 0.2rem 0;
}
.breadBox .tabs {
  display: flex;
}
.breadBox .tabs .tab {
  margin-right: 0.4rem;
}
.breadBox .tabs .tab:last-child {
  margin-right: 0;
}
.breadBox .tabs .tab a {
  font-size: 0.18rem;
}
.breadBox .tabs .tab a::after {
  content: '';
  display: block;
  width: 0%;
  height: 2px;
  background: #000;
  transition: all 0.3s;
}
.breadBox .tabs .tab:hover a::after {
  width: 100%;
}
.breadBox .tabs .tab.active a::after {
  width: 100%;
}
.breadBox .inner {
  margin-top: 0.47rem;
  display: flex;
  align-items: center;
  padding-bottom: 0.2rem;
}
.breadBox .inner .item {
  margin-right: 0.4rem;
}
.breadBox .inner .item:last-child {
  margin-right: 0;
}
.breadBox .inner .item a {
  display: block;
  width: 1.6rem;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.breadBox .inner .item img {
  width: 100%;
  height: 0.82rem;
  display: block;
  border-radius: 0.2rem;
}
.breadBox .inner .item .title {
  font-size: 0.16rem;
  margin-top: 0.1rem;
}
.breadBox .inner .item.active {
  border: 1px solid #333;
}
.proPage {
  background: #fff;
}
.pro-model {
  padding: 1rem 0 0.4rem;
}
.pro-model h4 {
  font-size: 0.48rem;
  padding-bottom: 0.5rem;
}
.pro-model .pro-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.3rem;
  width: 100%;
}
.pro-model .pro-list .inner {
  background: #f5f5f7;
  box-sizing: border-box;
  border-radius: 0.2rem;
  height: 4.6rem;
}
.pro-model .pro-list .inner .imgs {
  width: 100%;
  height: 3.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.pro-model .pro-list .inner .imgs img {
  width: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  max-width: 100%;
  height: fit-content;
  max-height: 100%;
  object-fit: contain;
}
.pro-model .pro-list .inner .title {
  margin: 0.3rem 0.35rem;
  font-size: 0.22rem;
  text-align: center;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  white-space: normal !important;
  text-overflow: ellipsis;
  word-wrap: break-word;
}
.searchBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.searchBox .search {
  width: 4.6rem;
  background: #f5f5f7;
  height: 0.4rem;
  display: flex;
  align-items: center;
  border-radius: 0.4rem;
  padding: 0 0.1rem;
  box-sizing: border-box;
}
.searchBox i {
  font-size: 0.25rem;
  color: #979797;
}
.searchBox input {
  display: block;
  font-size: 0.15rem;
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  padding: 0 0.1rem;
}
.techPage {
  padding: 1rem 0;
}
.techPage h2 {
  font-size: 0.48rem;
  text-align: center;
  margin-bottom: 0.3rem;
}
.techPage .ftitle {
  font-size: 0.24rem;
  color: #666;
  max-width: 9.3rem;
  text-align: center;
  margin: auto;
}
.techPage .techList {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.3rem;
}
.techPage .techList .inner {
  width: 100%;
  padding: 0.37rem 0.3rem;
  background: #f5f5f7;
  border-radius: 0.3rem;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
}
.techPage .techList .inner .left {
  width: 100%;
}
.techPage .techList .inner .left .title {
  font-size: 0.28rem;
  font-weight: bold;
}
.techPage .techList .inner .left .tips {
  color: #666;
  font-size: 0.18rem;
  display: flex;
  margin: 0.16rem 0 0.1rem;
  align-items: center;
}
.techPage .techList .inner .left .tips .ite {
  margin-right: 0.5rem;
}
.techPage .techList .inner .left .tips .ite:last-child {
  margin-right: 0;
}
.techPage .techList .inner .left .date {
  color: #666;
  font-size: 0.18rem;
}
.techPage .techList .inner .dwon a,
.techPage .techList .inner .dwon button {
  display: block;
  padding: 0.16rem 0.44rem;
  height: fit-content;
  background: #fff;
  border-radius: 0.5rem;
  font-size: 0.18rem;
  border: none;
}
.techPage .fapBox {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 5.2rem 1fr;
  width: 100%;
  gap: 0.4rem;
}
.techPage .fapBox .left {
  border-right: 1px solid #eeeeee;
  width: 100%;
}
.techPage .fapBox .left .tabs {
  width: 100%;
  padding: 0 0 0 0.3rem;
}
.techPage .fapBox .left .tabs .tab {
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
.techPage .fapBox .left .tabs .tab::after {
  content: '';
  display: none;
  width: 0.02rem;
  height: 0.4rem;
  background: #38813a;
  position: absolute;
  right: 0;
}
.techPage .fapBox .left .tabs .tab a {
  display: block;
  padding: 0.15rem 0;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  white-space: normal !important;
  text-overflow: ellipsis;
  word-wrap: break-word;
}
.techPage .fapBox .left .tabs .tab:hover a {
  color: #38813a;
}
.techPage .fapBox .left .tabs .tab.active::after {
  display: block;
}
.techPage .videoBox {
  margin-top: 1rem;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.3rem;
}
.techPage .videoBox .inner {
  width: 100%;
  height: 3.2rem;
  position: relative;
  border-radius: 0.2rem;
}
.techPage .videoBox .inner .imgs {
  width: 100%;
  height: 100%;
  border-radius: 0.2rem;
}
.techPage .videoBox .inner .imgs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.2rem;
}
.techPage .videoBox .inner .mask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 0.2rem;
  padding: 0 0.7rem;
}
.techPage .videoBox .inner .mask .icons {
  width: 0.66rem;
  height: 0.66rem;
}
.techPage .videoBox .inner .mask .text {
  color: #fff;
  font-size: 0.24rem;
  margin-top: 0.2rem;
  text-align: center;
}
.techPage .afterBox .head {
  margin-top: 0.8rem;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.3rem;
}
.techPage .afterBox .head .inner {
  width: 100%;
  background: #f5f5f7;
  border-radius: 0.25rem;
  height: 5rem;
  padding: 0.5rem 0.14rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.techPage .afterBox .head .inner .icons {
  width: 0.76rem;
  height: 0.76rem;
}
.techPage .afterBox .head .inner h4 {
  font-size: 0.24rem;
  text-align: center;
  margin: 0.1rem 0;
  max-width: 80%;
  height: 0.7rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.techPage .afterBox .head .inner .text {
  margin-top: 0.1rem;
  font-size: 0.18rem;
  color: #333;
  line-height: 1.6;
}
.techPage .afterBox .after-1 .title {
  margin-top: 1.4rem;
  font-size: 0.48rem;
  font-weight: bold;
  max-width: 9.5rem;
}
.techPage .afterBox .after-1 .tip {
  font-size: 0.24rem;
  margin-top: 0.4rem;
}
.techPage .afterBox .after-1 .tipList {
  margin-top: 0.6rem;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.3rem;
}
.techPage .afterBox .after-1 .tipList .item {
  width: 100%;
  height: 3.8rem;
  background: #f5f5f7;
  border-radius: 0.2rem;
  padding: 0.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.18rem;
  text-align: center;
  justify-content: space-around;
}
.techPage .afterBox .after-1 .tipList .item .icons {
  width: 0.88rem;
  height: 0.88rem;
}
.techPage .afterBox .after-2 .title {
  margin-bottom: 0.3rem;
}
.techPage .afterBox .after-2 .olList,
.techPage .afterBox .after-2 li {
  font-size: 0.2rem;
}
.techPage .afterBox .after-2 .olList {
  margin-top: 0.2rem;
}
.techPage .afterBox .after-2 li {
  margin: 0.1rem 0;
}
.techPage .afterBox .after-2 p {
  width: 100%;
  line-height: 1.6;
  word-break: break-word;
  font-size: 0.2rem;
}
.faqList .inner {
  display: flex;
  margin-bottom: 0.6rem;
}
.faqList .inner .icons {
  flex-shrink: 0;
  margin-right: 0.1rem;
  width: 0.3rem;
  height: 0.3rem;
}
.faqList .inner .content .answer {
  font-size: 0.16rem;
  font-weight: bold;
}
.faqList .inner .content .question {
  color: #6e6e73;
  font-size: 0.14rem;
  margin-top: 0.2rem;
}
.applocaBox {
  padding: 1rem 0;
}
.applocaBox .title {
  font-size: 0.48rem;
}
.applocaBox p {
  font-size: 0.18rem;
  color: #86868b;
  margin: 0.2rem 0;
}
.applocaBox img {
  max-width: 100%;
  width: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  margin: auto;
  height: fit-content;
  display: block;
}
.appcenter {
  background: #f5f5f7;
  padding: 1rem 0;
}
.appcenter .title {
  font-size: 0.48rem;
  text-align: center;
  font-weight: bold;
}
.appcenter .box {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.3rem;
  box-sizing: border-box;
  margin-top: 0.7rem;
}
.appcenter .box .inner {
  height: 4.16rem;
  width: 100%;
  background: #fff;
  border-radius: 0.2rem;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  font-size: 0.36rem;
}
.appcenter .box .inner .icons {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  margin-bottom: 0.25rem;
}
.otherapp {
  background: #fff;
  padding: 1rem 0;
}
.otherapp .title {
  font-size: 0.48rem;
  text-align: center;
  font-weight: bold;
}
.otherapp .swiper {
  margin-top: 1rem;
  width: 100%;
  padding-bottom: 1rem;
}
.otherapp .swiper .swiper-slide {
  height: 6.1rem;
  padding: 0 0.4rem;
  border-radius: 0.2rem;
  border: 1px solid #eeecec;
  box-sizing: border-box;
}
.otherapp .swiper .swiper-slide .inner {
  width: 100%;
  height: 100%;
}
.otherapp .swiper .swiper-slide .inner .imgs {
  width: 100%;
  height: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.otherapp .swiper .swiper-slide .inner .imgs img {
  max-width: 100%;
  max-height: 100%;
  width: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  height: fit-content;
  object-fit: contain;
}
.otherapp .swiper .swiper-slide .inner .content {
  height: calc(100% - 4rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 0.3rem 0;
}
.otherapp .swiper .swiper-slide .inner .content .text {
  font-size: 0.24rem;
  text-align: center;
}
.otherapp .swiper .swiper-slide .inner .content .more a {
  color: #38813a;
  font-size: 0.14rem;
}
.otherapp .swiper .swiper-button-prev,
.otherapp .swiper .swiper-button-next {
  top: 95%;
}
.otherapp .swiper .swiper-button-prev::after,
.otherapp .swiper .swiper-button-next::after {
  font-size: 0.2rem;
  padding: 0.1rem 0.15rem;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-weight: bold;
}
.otherapp .swiper .swiper-button-prev {
  left: 85%;
}
.otherapp .swiper .swiper-button-next {
  right: 10%;
}
.aboutBox p {
  font-size: 0.28rem;
  color: #1d1d1f;
  line-height: 1.6;
  margin: 0.3rem 0;
}
.aboutBox .box h3 {
  font-size: 0.48rem;
  font-weight: bold;
  text-align: center;
  margin: 1.3rem 0 0.85rem;
}
.aboutBox .imgBox {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.28rem;
  margin-bottom: 1rem;
}
.aboutBox .imgBox .inner {
  width: 100%;
  height: 4.2rem;
  position: relative;
}
.aboutBox .imgBox .inner .mask {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.36rem;
  font-weight: bold;
  padding: 0.2rem;
}
.about-1 .event_box {
  width: 100%;
  margin: 3% auto 0;
  position: relative;
  min-height: 4.5rem;
}
.about-1 .event_box .parHd {
  width: 100%;
  display: inline-block;
  height: 1.4rem;
  overflow: hidden;
}
.about-1 .event_box .parHd .tempWrap {
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  width: 90% !important;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-1 .event_box .parHd .tempWrap:after {
  content: '';
  width: 90%;
  height: 1px;
  background: #580000;
  position: absolute;
  right: 5%;
  top: 50%;
  z-index: 10;
}
.about-1 .event_box .parHd ul {
  width: 100%;
  position: relative;
  top: -15%;
  overflow: hidden;
  padding: 0px;
  margin: 0px;
  height: 100%;
  text-align: center;
  margin: 0 auto;
  padding-top: 0.25rem !important;
}
.about-1 .event_box .parHd li.no_line:before {
  display: none;
}
.about-1 .event_box .parHd li {
  display: inline-block;
  cursor: pointer;
  padding-top: 0.2rem;
  font-size: 0.16rem;
  color: #000;
  margin: 0 0.2rem;
  position: relative;
  display: flex;
  z-index: 20;
  flex-direction: column;
  align-items: center;
  width: 2rem;
  height: 100%;
}
.about-1 .event_box .parHd li .line {
  width: 0.24rem;
  height: 0.24rem;
  margin: 0.1rem 0;
}
.about-1 .event_box .parHd li.act {
  color: #009944;
  font-size: 0.18rem;
}
.about-1 .parBd {
  text-align: center;
  margin-top: 0.8rem;
}
.about-1 .parBd .slideBox {
  display: none;
  width: 12rem;
  background: #f5f5f7;
  border-radius: 0.2rem;
  box-sizing: border-box;
  margin: auto;
}
.about-1 .parBd .slideBox .box {
  width: 100%;
  padding: 0.7rem 0.6rem;
  display: flex;
  justify-content: space-between;
}
.about-1 .parBd .imgs {
  flex-shrink: 0;
  width: 3.6rem;
  height: 2.4rem;
  border-radius: 0.2rem;
}
.about-1 .parBd .imgs img {
  object-fit: cover;
}
.about-1 .parBd .content {
  flex: 1;
  text-align: left;
  padding-left: 0.6rem;
}
.about-1 .parBd .content .xian {
  width: 0.36rem;
  height: 0.04rem;
  background: #38813a;
}
.about-1 .parBd .content .title {
  font-size: 0.24rem;
  margin: 0.34rem 0 0.24rem;
}
.about-1 .parBd .content p {
  font-size: 0.18rem;
  color: #666;
}
.about-1 .parBd .time {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  margin-left: 0.25rem;
  justify-content: flex-end;
  font-size: 0.16rem;
  color: #333;
}
.about-1 #listBox {
  width: 100%;
}
.about-1 .sPrev,
.about-1 .sNext {
  width: 0.3rem;
  height: 0.3rem;
  display: block;
  position: absolute;
  top: 0.6rem;
}
.about-1 .sPrev img,
.about-1 .sNext img {
  transition: all 0.6s cubic-bezier(0.51, 1.1, 0.9, 0.95);
  -moz-transition: all 0.6s cubic-bezier(0.51, 1.1, 0.9, 0.95);
  -webkit-transition: all 0.6s cubic-bezier(0.51, 1.1, 0.9, 0.95);
  -o-transition: all 0.6s cubic-bezier(0.51, 1.1, 0.9, 0.95);
}
.about-1 .sPrev {
  left: 0;
}
.about-1 .sNext {
  right: 0;
}
.about-2 {
  margin-top: 1.6rem;
}
.about-2 div {
  margin-top: 0.3rem;
  width: 100%;
}
.about-2 div img {
  width: 100%;
}
.about-3 {
  margin-top: 1rem;
}
.about-3 .timeBox {
  margin-top: 1.3rem;
  width: 100%;
  height: 1.3rem;
  background: #f5f5f7;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.about-3 .timeBox .icons {
  width: 1.6rem;
  height: 1.6rem;
  flex-shrink: 0;
  position: relative;
  top: -0.6rem;
  margin-left: 0.12rem;
}
.about-3 .timeBox .icons img {
  width: 100%;
  height: 100%;
}
.about-3 .timeBox .timeScol {
  padding-right: 0.3rem;
  width: 100%;
  display: flex;
  align-items: center;
}
.about-3 .timeBox .timeScol .icon {
  flex-shrink: 0;
  margin: 0 0.15rem;
  cursor: pointer;
}
.about-3 .timeBox .timeScol .icon i {
  font-size: 0.3rem;
  color: #38813a;
  font-weight: bold;
}
.about-3 .timeBox .timeScol .wrap {
  width: 80%;
  overflow-x: auto;
}
.about-3 .timeBox .timeScol .wrap .list {
  width: 100%;
  display: flex;
  align-items: center;
  flex: 1;
  transition: all 0.3s;
}
.about-3 .timeBox .timeScol .wrap .list .item {
  flex-shrink: 0;
  margin-right: 0.4rem;
  width: 1.1rem;
  height: 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-sizing: border-box;
  font-size: 0.22rem;
  cursor: pointer;
  transition: all 0.3s;
}
.about-3 .timeBox .timeScol .wrap .list .item:last-child {
  margin-right: 0;
}
.about-3 .timeBox .timeScol .wrap .list .item.active {
  border: 6px solid #fff;
  background: #38813a;
  color: #fff;
}
.about-3 .timeBox .ts-box {
  width: calc(100% - 2.4rem);
  background: #f5f5f7;
}
.about-3 .timeBox .ts-box .source-conter .swiper {
  background: #f5f5f7;
  width: 85%;
}
.about-3 .timeBox .ts-box .source-conter .swiper .swiper-slide {
  background: #f5f5f7;
  font-size: 0.2rem;
  border-radius: 50%;
  cursor: pointer;
}
.about-3 .timeBox .ts-box .source-conter .swiper .swiper-slide .iner {
  width: 1.1rem;
  height: 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-sizing: border-box;
}
.about-3 .timeBox .ts-box .source-conter .swiper .swiper-slide-active .iner {
  border: 6px solid #fff;
  background: #38813a;
  color: #fff;
}
.about-3 .timeBox .ts-box .source-conter .swiper-button-prev::after,
.about-3 .timeBox .ts-box .source-conter .swiper-button-next::after {
  border: none;
  font-size: 0.25rem;
  font-weight: bold;
  color: #38813a;
  transition: all 0.3s;
}
.about-3 .timeBox .ts-box .source-conter .swiper-button-prev:hover::after,
.about-3 .timeBox .ts-box .source-conter .swiper-button-next:hover::after {
  color: #38813a;
}
.development {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  box-sizing: border-box;
}
.development .development_box .tool {
  margin-top: 0.5rem;
}
.development .development_box .tool li {
  color: #666666;
  font-size: 0.16rem;
  margin: 0.15rem 0;
}
.development .development_box .tool .item {
  display: flex;
  align-items: center;
  padding-bottom: 0.6rem;
}
.development .development_box .tool .item .bottom-item-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0.3rem;
  position: relative;
  box-sizing: border-box;
}
.development .development_box .tool .item .bottom-item-left .icon {
  width: 0.2rem;
  height: 0.2rem;
}
.development .development_box .tool .item .bottom-item-left .line {
  position: absolute;
  flex: 1;
  width: 0.02rem;
  height: 2.5rem;
  border-left: 2px dashed #38813a;
  z-index: -1;
}
.development .development_box .tool .item:last-child .bottom-item-left .line {
  display: none;
}
.development .development_box .tool .item .bottom-item-right {
  width: 6.7rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.development .development_box .tool .item .bottom-item-right .br-title {
  font-size: 0.28rem;
}
.development .development_box .tool .item .bottom-item-right .br-title span {
  color: #38813a;
}
.development .development_box .tool .item .bottom-item-right p {
  font-size: 0.18rem;
  margin: 0.1rem 0;
  color: #666;
}
.development .development_box .tool .item .info {
  width: 6.7rem;
  height: 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.development .development_box .tool .item .info .imgs {
  max-width: 100%;
  width: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  height: 100%;
  background: #e5e5e5;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0.05rem;
}
.development .development_box .tool .item .info .imgs img {
  object-fit: cover;
}
.development .development_box .tool .item:nth-child(2n) {
  flex-direction: row-reverse;
}
.development .development_box .tool .item:nth-child(2n) .bottom-item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.development .development_box .tool .item:nth-child(2n) .bottom-item-right p {
  text-align: right;
}
.development .development_box .tool .item:nth-child(2n) .info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.newBox {
  background: #f5f5f7;
}
.newList {
  margin-top: 0.7rem;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.3rem;
}
.newList .item {
  width: 100%;
}
.newList .item .inner {
  margin-bottom: 0.3rem;
  width: 100%;
}
.newList .item .inner .box {
  width: 100%;
  background: #fff;
  padding: 0.35rem 0.4rem;
  border-radius: 0.2rem;
}
.newList .item .inner .box .tip {
  font-size: 0.36rem;
}
.newList .item .inner .box .title {
  font-size: 0.28rem;
  margin: 0.48rem 0 0.3rem;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  white-space: normal !important;
  text-overflow: ellipsis;
  word-wrap: break-word;
}
.newList .item .inner .box .text {
  font-size: 0.2rem;
  color: #666;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  white-space: normal !important;
  text-overflow: ellipsis;
  word-wrap: break-word;
}
.newList .item .inner .box .imgs {
  margin-top: 0.4rem;
  width: 100%;
  height: fit-content;
}
.newList .item .inner .box .imgs img {
  width: 100%;
  height: 100%;
}
.newList .item:last-child {
  padding: 0.2rem 0;
}
.newList .item:last-child .inner .box .text {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  white-space: normal !important;
  text-overflow: ellipsis;
  word-wrap: break-word;
}
.omeBox .section-7 {
  margin-bottom: 1rem;
}
.quaBox .inner {
  margin-top: 1rem;
}
.quaBox .inner .title {
  font-size: 0.28rem;
  font-weight: bold;
}
.quaBox .inner .zsList {
  margin-top: 0.56rem;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.3rem;
}
.quaBox .inner .zsList .item {
  width: 100%;
  height: 4rem;
}
.quaBox .inner .zsList .item img {
  object-fit: contain;
}
.contact .head {
  background: #f5f5f7;
  padding: 0.8rem 0 1rem;
}
.contact .head .content {
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact .head .content .box {
  text-align: center;
  font-size: 0.22rem;
  color: #333;
  max-width: 9.8rem;
  line-height: 2;
}
.contact .head .content h2 {
  font-size: 0.32rem;
  margin-top: 0.4rem;
}
.contact .head .content .tip {
  margin-left: auto;
  text-align: right;
  font-size: 0.24rem;
  color: #333;
  margin-top: 0.6rem;
}
.contact .body {
  padding: 1.2rem 0;
  background: #fff;
}
.contact .body .dianList {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.contact .body .dianList .item {
  width: 3.5rem;
}
.contact .body .dianList .item .imgs {
  width: 2rem;
  height: 2rem;
}
.contact .body .dianList .item .imgs img {
  object-fit: contain;
}
.contact .body .dianList .item .content {
  font-size: 0.24rem;
  color: #333;
}
.contact .body .dianList .item .content .title {
  margin: 0.5rem 0 0.24rem;
}
.contact .body .about {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 3.2rem;
  align-items: center;
  gap: 1.6rem;
  padding-right: 1rem;
}
.contact .body .about .left h2 {
  font-size: 0.48rem;
}
.contact .body .about .left ul {
  margin-top: 0.8rem;
}
.contact .body .about .left ul li {
  font-size: 0.24rem;
  margin: 0.2rem 0;
}
.contact .body .about .left ul li a {
  font-size: 0.24rem;
}
.contact .body .about .left ul li span {
  color: #38813a;
}
.contact .body .about .right {
  width: 3.2rem;
  height: 3.6rem;
  box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contact .body .about .right .ewm {
  width: 2.1rem;
  height: 2.1rem;
}
.contact .body .about .right .tip {
  margin-top: 0.2rem;
  font-size: 0.24rem;
}
.prodetail {
  margin-top: 2rem;
}
.prodetail .head {
  display: grid;
  grid-template-columns: 1fr 6.2rem;
  gap: 0.85rem;
  height: 7.6rem;
  box-sizing: border-box;
}
.prodetail .head .content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.25rem 0;
}
.prodetail .head .content h3 {
  font-size: 0.32rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid #eeeeee;
}
.prodetail .head .content .ftitle {
  margin-bottom: auto;
  margin-top: 0.2rem;
  font-size: 0.18rem;
}
.prodetail .head .content .params {
  margin-bottom: auto;
}
.prodetail .head .content .params .item {
  display: flex;
  margin: 0.15rem 0;
  font-size: 0.18rem;
}
.prodetail .head .content .params .item .label {
  min-width: 2rem;
  color: #666;
}
.prodetail .head .content .btn {
  display: flex;
  align-items: center;
}
.prodetail .head .content .btn a {
  margin-right: 0.3rem;
  border-radius: 0.1rem;
  display: block;
  width: 2.2rem;
  height: 0.38rem;
  text-align: center;
  line-height: 0.38rem;
  border: 1px solid #333;
}
.prodetail .head .right {
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
}
.prodetail .head .right .mySwiper2 {
  width: 100%;
  height: 6.4rem;
  box-sizing: border-box;
}
.prodetail .head .right .mySwiper2 .swiper-slide {
  width: 100%;
  height: 100%;
}
.prodetail .head .right .mySwiper2 .swiper-slide .imgs {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #eee;
}
.prodetail .head .right .mySwiper2 .swiper-slide .imgs img {
  object-fit: contain;
}
.prodetail .head .right .mySwiper2 .swiper-slide video {
  width: 100%;
  height: 100%;
}
.prodetail .head .right .mySwiper {
  width: 100%;
  height: 0.8rem;
  margin-top: 0.2rem;
}
.prodetail .head .right .mySwiper .swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
  opacity: 0.4;
  margin-right: 0.4rem;
}
.prodetail .head .right .mySwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prodetail .head .right .mySwiper .swiper-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prodetail .head .right .mySwiper .swiper-slide .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.prodetail .head .right .mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}
.prodetail .center {
  margin-top: 1rem;
}
.prodetail .center .tabs {
  display: flex;
  padding: 0.35rem 0;
  align-content: center;
  border-top: 1px solid #eeeeee;
}
.prodetail .center .tabs .tab {
  font-size: 0.22rem;
  margin-right: 0.6rem;
  position: relative;
  cursor: pointer;
}
.prodetail .center .tabs .tab::after {
  content: '';
  display: block;
  width: 0%;
  height: 2px;
  background: #000;
  transition: all 0.3s;
}
.prodetail .center .tabs .tab:hover::after {
  width: 100%;
}
.prodetail .center .tabs .tab.active::after {
  width: 100%;
}
.prodetail .center .main-1 .inner {
  margin-top: 0.4rem;
  display: flex;
}
.prodetail .center .main-1 .inner .label {
  font-size: 0.24rem;
  min-width: 3rem;
}
.prodetail .center .main-1 .inner .value .li {
  margin: 0.1rem 0;
}
.prodetail .center .main-2 .tabel {
  margin-top: 0.2rem;
}
.prodetail .center .main-2 .tabel .item {
  width: 100%;
  display: grid;
  grid-template-columns: 5.2rem 1fr;
}
.prodetail .center .main-2 .tabel .item .label {
  background: #fafafa;
  font-size: 0.18rem;
  padding: 0.16rem 0.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid #eeeeee;
}
.prodetail .center .main-2 .tabel .item .value {
  font-size: 0.18rem;
  padding: 0.16rem 1rem;
  border: 1px solid #eeeeee;
  margin-left: -1px;
}
.prodetail .center .main-3 {
  font-size: 0.18rem;
}
.prodetail .center .main-3 .box {
  display: flex;
  align-items: center;
}
.prodetail .center .down {
  margin-left: 0.5rem;
  width: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  cursor: pointer;
  position: relative;
}
.prodetail .center .down .btn {
  background: #575757;
  border-radius: 0.1rem;
  padding: 0.14rem;
  color: #fff;
  display: flex;
  align-items: center;
  font-size: 0.14rem;
}
.prodetail .center .down .btn a {
  font-size: 0.14rem;
  color: #fff;
}
.prodetail .center .down .btn .icon {
  width: 0.15rem;
  height: 0.16rem;
  flex-shrink: 0;
  margin-right: 20px;
}
.prodetail .center .down .btn .icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.prodetail .center .down .mask {
  position: absolute;
  right: -90%;
  top: -100%;
  display: none;
}
.prodetail .center .down .mask .ewm {
  width: 1.5rem;
  height: 1.5rem;
  background: #fff;
  padding: 0.06rem;
  border-radius: 0.1rem;
}
.prodetail .center .down .mask .ewm img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.prodetail .center .downList {
  width: 100%;
}
.prodetail .center .downList .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0.2rem 0;
}
.prodetail .center .downList .item .title {
  font-size: 0.16rem;
}
.prodetail .center .downList .item .line {
  flex: 1;
  border-top: 1px dotted #000;
  margin: 0 0.2rem;
}
.prodetail .center .downList .item .download {
  flex-shrink: 0;
}
.prodetail .center .downList .item .download a {
  color: #38813a;
}
.prodetail .center .main-5 {
  margin-top: 0.2rem;
}
.navMap {
  background: #f2f2f2;
  padding: 1.5rem 0;
}
.navMap .head {
  display: flex;
  align-items: center;
}
.navMap .head h2 {
  font-weight: normal;
  font-size: 0.35rem;
  flex-shrink: 0;
  padding: 0 0.3rem;
}
.navMap .head .line {
  width: 100%;
  height: 1px;
  background: #666;
}
.navMap .nav .inner {
  padding: 0.3rem 0;
  border-bottom: 1px solid #a09f9f;
}
.navMap .nav .inner .title {
  font-size: 0.26rem;
  color: #333;
}
.navMap .nav .inner .list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.1rem;
}
.navMap .nav .inner .list .item {
  width: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  margin: 0 0.3rem 0.15rem 0;
}
.navMap .nav .inner .list .item a {
  font-size: 0.2rem;
  color: #999;
  transition: all 0.3s;
}
.navMap .nav .inner .list .item a:hover {
  color: #000;
}
.navMap .nav .inner:last-child {
  border-bottom: none;
}
.phone {
  display: none;
}
