.proWrap,
.proDetail {
  padding: 0rem 0 1.32rem;
  background: #ffffff;
}
.proWrap .main,
.proDetail .main {
  max-width: 16rem;
}
.insideTabs {
  height: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.54rem;
  border-bottom: 0.01rem solid #e5e5e5;
  overflow-x: auto;
}
.insideTabs a {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  white-space: nowrap;
  font-weight: 600;
  font-size: 0.18rem;
  line-height: 0.26rem;
  color: #888888;
  transition: all 0.3s linear;
}
.insideTabs a::after {
  content: "";
  width: 0;
  height: 0.02rem;
  position: absolute;
  left: 0;
  bottom: -0.01rem;
  background: #003580;
  transition: all 0.3s linear;
}
.insideTabs a.active,
.insideTabs a:hover {
  color: #003580;
}
.insideTabs a.active::after,
.insideTabs a:hover::after {
  width: 100%;
}
.productSection {
  padding-top: 0.7rem;
}
.productSection h1 {
  text-align: center;
  font-weight: 600;
  font-size: 0.4rem;
  color: #222222;
}
.productGrid {
  width: 100%;
  margin: 0.6rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
}
.productCard {
  min-height: 6.2rem;
  padding: 0.2rem;
  border-radius: 0.08rem;
  background: #F1F4F8;
  transition: all 0.3s linear;
}
.productCard:hover {
  box-shadow: 0 0.06rem 0.2rem rgba(0, 53, 128, 0.12);
}
.productCard h2 {
  margin-top: 0.25rem;
  font-weight: 600;
  font-size: 0.22rem;
  color: #222222;
}
.productCard > span {
  width: 0.4rem;
  height: 0.02rem;
  display: block;
  margin-top: 0.14rem;
  background: #c41e2a;
}
.productImg {
  width: 100%;
  height: 2.69rem;
  background: #ffffff;
  overflow: hidden;
}
.productImg img {
  width: 100%;
  height: 100%;
  display: block;
  /*object-fit: cover;*/
}
.cardTabs {
  margin-top: 0.2rem;
  display: flex;
  align-items: flex-end;
  gap: 0.05rem;
}
.cardTabs button {
  min-width: 0.8rem;
  height: 0.32rem;
  padding: 0 0.16rem;
  border: 0.01rem solid #c9d8ec;
  border-bottom: 0;
  border-radius: 0.1rem 0.1rem 0rem 0rem;
  background: #f7f9fc;
  font-weight: 400;
  font-size: 0.16rem;
  color: #666;
}
.cardTabs button.active {
  background: #003580;
  border-color: #003580;
  color: #ffffff;
}
.cardTabs.single button {
  cursor: default;
}
.cardPanels {
  border: 0.01rem solid #B1CAEE;
  background: #f7fbff;
}
.cardPanel {
  min-height: 1.58rem;
  padding: 0.15rem 0.1rem;
}
.cardPanel p {
  font-weight: 400;
  font-size: 0.14rem;
  line-height: 0.25rem;
  color: #333333;
  position: relative;
  padding-left: 0.12rem;
}
.cardPanel p::before {
  content: "";
  width: 0.04rem;
  height: 0.04rem;
  position: absolute;
  left: 0;
  top: 0.1rem;
  border-radius: 50%;
  background: #333333;
}
.mlpcGrid {
  gap: 0.42rem 0.32rem;
}
.mlpcGrid .productCard {
  min-height: 4.2rem;
}
.mlpcGrid .productImg {
  height: 2.28rem;
}
.mlpcGrid .cardPanel {
  min-height: 0.92rem;
}
@media (max-width: 1024px) {
  .proWrap,
  .proDetail {
    padding: 0.28rem 0 0.92rem;
  }
  .insideTabs {
    justify-content: flex-start;
    gap: 0.3rem;
  }
  .productSection {
    padding-top: 0.66rem;
  }
  .productGrid {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.28rem;
  }
}
@media (max-width: 560px) {
  .productSection h1 {
    font-size: 0.3rem;
    line-height: 0.42rem;
  }
  .productGrid {
    grid-template-columns: 1fr;
  }
}
