.customServicePage {
  background: #fff;
}

.customFlow {
  background: #F7F7F7;
  padding: 0.78rem 0 1.66rem;
}

.customFlowHead {
  text-align: center;
  margin-bottom: 1.25rem;
}

.customFlowHead h2 {
  font-weight: bold;
  font-size: 0.38rem;
  color: #111111;
  line-height: 0.52rem;
  margin-bottom: 0.18rem;
}

.customFlowHead p {
  font-weight: 400;
  font-size: 0.22rem;
  color: #111111;
  line-height: 0.34rem;
}

.flowGrid {
  display: grid;
  grid-template-columns: repeat(5, 2.5rem);
  justify-content: space-between;
  row-gap: 0.86rem;
  position: relative;
  grid-template-areas: 
    "a b c d e" /* 第一行 */
    "j i h g f"; /* 第二行，手动排列以实现倒序 */
}

.flowItem:nth-child(6) { grid-area: f; } /* 第二行的元素 */
.flowItem:nth-child(7) { grid-area: g; } /* 第二行的元素 */
.flowItem:nth-child(8) { grid-area: h; } /* 第二行的元素 */
.flowItem:nth-child(9) { grid-area: i; } /* 第二行的元素 */
.flowItem:nth-child(10) { grid-area: j; } /* 第二行的元素 */

.flowGrid::after {
  content: "";
  position: absolute;
  width: 0.01rem;
  height: 0.88rem;
  right: 1.25rem;
  top: 2.1rem;
  background: #E7E7E7;
}

.flowItem {
  width: 2.5rem;
  height: 2.1rem;
  background: #FFFFFF;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0.31rem;
}


.flowItem::before {
  content: "";
  position: absolute;
  width: 0.91rem;
  height: 0.01rem;
  left: 2.5rem;
  top: 1.05rem;
  background: #E7E7E7;
}

.flowItem:nth-child(n + 6)::before{
    left: auto;
    right: 2.5rem;
}

.flowItem::after {
  content: "»";
  position: absolute;
  left: 2.84rem;
  top: 0.94rem;
  width: 0.18rem;
  height: 0.18rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.3rem;
  color: var(--blue);
  z-index: 1;
  background: #F7F7F7;
}

.flowItem:nth-child(5)::before,
.flowItem:nth-child(5)::after,
.flowItem:nth-child(10)::before,
.flowItem:nth-child(10)::after {
  display: none;
}

.flowItem:nth-child(5)::after {
  content: "»";
  position: absolute;
  left: 47%;
  top: 2.5rem;
  width: 0.18rem;
  height: 0.18rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.3rem;
  color: var(--blue);
  transform: rotate(90deg) translateX(-50%);
}

.flowItem:nth-child(n + 6)::after {
  left: auto;
  right: 2.84rem;
  top: 1rem;
  transform: rotate(180deg);
}

.flowItem.reverse::after {
  transform: rotate(180deg);
}

.flowNum {
  width: 0.93rem;
  height: 0.93rem;
  background: #fff;
  transform: rotate(45deg);
  border-radius: 0.16rem;
  background: #1862BA;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.32rem;
  position: relative;
  font-weight: bold;
  font-size: 0.33rem;
  color: #FFFFFF;
}

.flowNum::after {
  content: "";
  position: absolute;
  left: 45%;
  top: 55%;
  transform: translate(-50%, -50%);
  width: 0.93rem;
  height: 0.93rem;
  border-radius: 0.16rem;
  border: 0.02rem solid rgba(26, 98, 185, 0.28);
  box-sizing: border-box;
}

.flowNum span::before {
  content: attr(data-empty);
}

.flowNum span {
  transform: rotate(-45deg);
}

.flowItem h3 {
  font-weight: 400;
  font-size: 0.23rem;
  color: #111111;
  line-height: 0.32rem;
}

@media (max-width: 1024px) {
  .flowGrid {
    grid-template-columns: repeat(5, 2.5rem);
  }
}

.customProductPage {
  background: #fff;
}

.customProductPage .main {
  max-width: 16rem;
}

.cpro-title {
  text-align: center;
  margin-bottom: 0.37rem;
}

.cpro-title h2 {
  font-weight: 500;
  font-size: 0.45rem;
  color: #000000;
  margin-bottom: 0.27rem;
}

.cpro-title p {
  font-weight: 400;
  font-size: 0.25rem;
  color: #000000;
}

.cpro-title span {
  font-weight: 400;
  font-size: 0.18rem;
  color: #000000;
  text-align: center;
}

.cpro-products {
  background: #F7F7F7;
  padding: 0.72rem 0 0.82rem;
}

.cpro-desc {
  border-top: 0.01rem solid #C7C7C7;
  padding-top: 0.3rem;
  margin-bottom: 0.37rem;
}

.cpro-desc p {
  font-size: 0.15rem;
  color: #222222;
  line-height: 0.27rem;
}

.productList {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .38rem 0.17rem;
}

.productCard {
  height: 3.14rem;
}

.productCard .imgBox {
  height: 2.08rem;
}

.productCard .txt {
  padding: .2rem .16rem;
}

.productCard h3 {
  font-weight: 500;
  font-size: 0.18rem;
  color: #000000;
  margin-bottom: .16rem;
}

.productCard p {
  font-weight: 400;
  font-size: 0.16rem;
  color: #797979;
}

.cpro-why {
  background: #fff;
  padding: 1rem 0;
}

.cpro-why .cpro-title {
  margin-bottom: 0.88rem;
}

.cpro-whyGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.38rem;
}

.cpro-whyCard {
  min-height: 4.18rem;
  border: 0.01rem solid #E0E0E0;
  background: #fff;
  padding: .29rem 0.27rem 0.17rem;
  text-align: center;
}

.cpro-whyCard:hover {
  border-color: var(--orange);
}

.cpro-whyCard img {
  width: .65rem;
  height: .65rem;
  padding: .08rem;
  border-radius: 50%;
  border: 0.01rem dashed #1862BA;
  margin-bottom: .2rem;
}

.cpro-techItem i {
  width: 0.34rem;
  height: 0.34rem;
  display: inline-flex;
  border-radius: 50%;
  background: var(--blue);
  position: relative;
}

.cpro-whyCard i::after,
.cpro-techItem i::after {
  content: "";
  position: absolute;
  width: 0.09rem;
  height: 0.09rem;
  border-radius: 50%;
  background: #fff;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.cpro-whyCard h3 {
  font-weight: 500;
  font-size: 0.25rem;
  color: #000000;
  padding-bottom: .25rem;
  border-bottom: 0.01rem dashed #CECECE;
  margin-bottom: .21rem;
}

.cpro-whyCard:hover h3 {
  color: var(--blue);
}

.cpro-whyCard p {
  font-weight: 400;
  font-size: 0.18rem;
  color: #747474;
  line-height: 0.3rem;
  text-align: left;
}

.cpro-whyCard ul {
  list-style: none;
  padding: 0;
  margin: .2rem 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.06rem 0.16rem;
  text-align: left;
}

.cpro-whyCard li {
  font-weight: 300;
  font-size: 0.16rem;
  color: #747474;
  line-height: 0.22rem;
  padding-left: 0.14rem;
  position: relative;
}

.cpro-whyCard li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.07rem;
  width: 0.06rem;
  height: 0.06rem;
  border-radius: 50%;
  background: var(--blue);
}

.cpro-whyCard li::after {
  content: "";
  position: absolute;
  left: .02rem;
  top: 0.09rem;
  width: 0.02rem;
  height: 0.02rem;
  border-radius: 50%;
  background: #F3F5F8;
}

.cpro-tech {
  background: #F7F7F7;
  padding: 1rem 0;
}

.cpro-techGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.72rem;
  text-align: center;
}

.cpro-techImg {
  width: 1.78rem;
  height: 1.78rem;
  border-radius: 50%;
  margin: 0 auto 0.28rem;
  /*background: linear-gradient(135deg, #1B68BE, #101A25);*/
  overflow: hidden;
}

.cpro-techImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cpro-techItem .num {
  width: .39rem;
  height: .39rem;
  transform: rotate(45deg);
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: .05rem;
  margin: 0 auto;
}

.cpro-techItem:hover .num {
  background: var(--orange);
}

.cpro-techItem .num:after {
  content: '';
  position: absolute;
  width: .39rem;
  height: .39rem;
  box-sizing: border-box;
  border-radius: .05rem;
  border: 0.01rem solid var(--blue);
  left: -.03rem;
  top: .03rem;
}

.cpro-techItem:hover .num:after {
  display: none;
}

.cpro-techItem .num span {
  font-weight: 600;
  font-size: 0.14rem;
  color: #FFFFFF;
  transform: rotate(-45deg);
}

.cpro-techItem:hover .num {
  color: #fff;
}

.cpro-techItem h3 {
  font-weight: bold;
  font-size: 0.18rem;
  color: #111111;
  line-height: 0.28rem;
  margin: 0.14rem 0 0.06rem;
}

.cpro-techItem.active h3 {
  color: var(--blue);
}

.cpro-techItem span,
.cpro-techMore {
  font-size: 0.13rem;
  color: #9A9A9A;
  cursor: pointer;
}

.cpro-techMore {
  display: block;
  margin: 0 auto;
  line-height: 0.22rem;
}

.cpro-techItem:hover .num span {
  color: #fff;
}

.cpro-techItem:hover span,
.cpro-techItem:hover .cpro-techMore {
  color: var(--orange);
}

.cpro-spec {
  background: #fff;
  padding: 0.76rem 0 0.86rem;
}

.cpro-table {
  width: 100%;
  margin-top: 0.58rem;
}

.cpro-adv {
  margin-top: 0.56rem;
}

.cpro-adv h3 {
  font-weight: 500;
  font-size: 0.35rem;
  color: #000000;
  margin-bottom: 0.4rem;
}

.cpro-adv p {
  font-weight: 400;
  font-size: 0.18rem;
  color: #505050;
  margin-bottom: .73rem;
}

.cpro-advList {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.37rem;
  margin-bottom: .5rem;
}

.cpro-advList span {
  min-height: 1.03rem;
  background: #F5F5F5;
  display: block;
  padding: 0.28rem;
  font-weight: 400;
  font-size: 0.18rem;
  color: #505050;
  line-height: 0.3rem;
}

.cpro-advList span:hover {
  background: var(--orange);
  color: #fff;
}

.cpro-process {
  background: #F7F7F7;
  padding: 0.72rem 0 0.78rem;
}

.cpro-processLine {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0.22rem;
  margin-top: 0.3rem;
}

.cpro-step {
  text-align: center;
  position: relative;
}

.cpro-step:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -0.16rem;
  top: 0.31rem;
  width: 0.24rem;
  height: 0.16rem;
  background-image: url(../images/arrow.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cpro-step b {
  width: 0.74rem;
  height: 0.74rem;
  margin: 0 auto 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  border-radius: 0.15rem;
  transform: rotate(45deg);
}

.cpro-step b::after {
  content: '';
  position: absolute;
  width: .74rem;
  height: .74rem;
  box-sizing: border-box;
  border-radius: .15rem;
  border: 0.01rem solid var(--blue);
  left: -.06rem;
  top: .06rem;
}

.cpro-step b span {
  display: block;
  font-family: Montserrat, Montserrat;
  font-weight: 300;
  font-size: 0.25rem;
  color: #FFFFFF;
  transform: rotate(-45deg);
}

.cpro-step h3 {
  font-weight: bold;
  font-size: 0.18rem;
  color: #030303;
  margin-bottom: 0.12rem;
}

.cpro-step p {
  font-weight: 300;
  font-size: 0.16rem;
  color: #656661;
  line-height: 0.25rem;
}

.cpro-faq {
  background: #fff;
  padding: 0.72rem 0 0.86rem;
}

.cpro-faqList {
  margin-top: 0.15rem;
}

.cpro-faqItem {
  background: #F6F6F6;
  margin-bottom: 0.4rem;
  border: 0.01rem solid transparent;
  padding: 0 0.18rem;
}

.cpro-faqItem.active {
  background: #fff;
  border-color: var(--orange);
}

.cpro-faqItem button {
  width: 100%;
  height: 0.58rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.cpro-faqItem.active button {
  border-bottom: 0.01rem solid #CBCBCB;
  /*margin-bottom: .18rem;*/
}

.cpro-faqItem button span {
  font-weight: 500;
  font-size: 0.22rem;
  color: #000000;
  padding-left: 0.3rem;
  position: relative;
}

.cpro-faqItem.active button span {
  color: var(--blue);
}

.cpro-faqItem button span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.05rem;
  width: 0.22rem;
  height: 0.22rem;
  border-radius: 50%;
  background-image: url(../images/q.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.cpro-faqItem button i {
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: #C8C8C8;
  position: relative;
  transition: all .3s;
}

.cpro-faqItem button i::before,
.cpro-faqItem button i::after {
  content: "";
  position: absolute;
  background: #fff;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.cpro-faqItem button i::before {
  width: 0.12rem;
  height: 0.02rem;
}

.cpro-faqItem button i::after {
  width: 0.02rem;
  height: 0.12rem;
}

.cpro-faqItem.active button i {
  background: var(--orange);
  transform: rotate(45deg);
}

.cpro-faqItem p {
  display: none;
  font-weight: 400;
  font-size: 0.18rem;
  color: #505050;
  line-height: 0.17rem;
  padding-left: .4rem;
  padding-top: .18rem;
  padding-bottom: .55rem;
  position: relative;
}

.cpro-faqItem p::before {
  content: "";
  position: absolute;
  left: 0;
  top: .18rem;
  width: 0.22rem;
  height: 0.22rem;
  border-radius: 50%;
  background-image: url(../images/a.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.cpro-faqItem:first-child p {
  display: block;
}

.cpro-plan {
  background: #F7F7F7;
  padding: 1rem 0;
}

.cpro-plan .main {
  display: grid;
  grid-template-columns: 1fr 8.71rem;
  gap: 0.8rem;
  align-items: center;
}

.cpro-planTxt h2 {
  font-weight: 500;
  font-size: 0.45rem;
  color: #000000;
  margin-bottom: 0.6rem;
}

.cpro-planTxt h3 {
  font-weight: 500;
  font-size: 0.24rem;
  color: #000000;
  margin-bottom: 0.43rem;
}

.cpro-planTxt p {
  font-weight: 300;
  font-size: 0.2rem;
  color: #000000;
  line-height: 0.35rem;
}

.cpro-planImg {
  height: 5.16rem;
  background: linear-gradient(135deg, #dfe6ea, #98aebc);
  overflow: hidden;
}

.cpro-planImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cpro-modalOpen {
  overflow: hidden;
}

.cpro-techModal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
}

.cpro-techModal.active {
  display: flex;
}

.cpro-techMask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
}

.cpro-techDialog {
  width: 16rem;
  min-height: 3.8rem;
  background: #FFFFFF;
  position: relative;
  z-index: 1;
  padding: 0.49rem 0.25rem 0.52rem;
  box-shadow: 0 0.12rem 0.42rem rgba(0, 0, 0, 0.18);
}

.cpro-techClose {
  position: absolute;
  right: 0.45rem;
  top: 0.28rem;
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 50%;
  background: #F0F0F0;
  cursor: pointer;
}

.cpro-techClose::before,
.cpro-techClose::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.13rem;
  height: 0.01rem;
  background: #888888;
  transform-origin: center;
}

.cpro-techClose::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.cpro-techClose::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.cpro-techClose:hover {
  background: var(--orange);
}

.cpro-techClose:hover::before,
.cpro-techClose:hover::after {
  background: #fff;
}

.cpro-techDialogHead {
  display: grid;
  grid-template-columns: 0.8rem 1fr;
  gap: 0.15rem;
}

.cpro-techDialogNum {
  width: 0.59rem;
  height: 0.59rem;
  border-radius: 0.12rem;
  background: var(--blue);
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.08rem;
  position: relative;
}

.cpro-techDialogNum::after {
  content: "";
  position: absolute;
  left: -0.03rem;
  top: 0.03rem;
  width: 0.59rem;
  height: 0.59rem;
  border: 0.01rem solid rgba(26, 98, 185, 0.42);
  border-radius: 0.12rem;
}

.cpro-techDialogNum span {
  transform: rotate(-45deg);
  font-family: MiSans, Source Han Sans SC, sans-serif;
  font-weight: bold;
  font-size: 0.25rem;
  color: #FFFFFF;
  position: relative;
  z-index: 1;
}

.cpro-techDialog h2 {
  font-weight: bold;
  font-size: 0.3rem;
  color: var(--blue);
  line-height: 0.42rem;
  margin-bottom: 0.18rem;
}

.cpro-techDialog p {
  font-weight: 400;
  font-size: 0.18rem;
  color: #111111;
  line-height: 0.34rem;
}

.cpro-techContent {
  padding-right: 0.1rem;
}

.cpro-techSection {
  position: relative;
}

.cpro-techSection.noLine {
  padding-top: 0.18rem;
}

.cpro-techList {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.25rem;
  margin: 0.14rem 0 0.18rem;
}

.cpro-techList li {
  font-weight: 400;
  font-size: 0.18rem;
  color: #6F6F6F;
  line-height: 0.28rem;
  padding-left: 0.22rem;
  position: relative;
}

.cpro-techList li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.11rem;
  width: 0.08rem;
  height: 0.08rem;
  background: var(--blue);
  transform: rotate(45deg);
}

.cpro-techAfterText,
.cpro-techTailText {
  color: #6F6F6F !important;
}

.cpro-techLine {
  height: 0.01rem;
  background: #D8D8D8;
  margin: 0.25rem 0 0.25rem;
}

.cpro-techDialog h3 {
  font-weight: bold;
  font-size: 0.3rem;
  color: var(--blue);
  line-height: 0.42rem;
  margin-bottom: 0.08rem;
}

@media (max-width: 1024px) {
  .customFlow {
    padding: 0.58rem 0 0.82rem;
  }

  .customFlowHead {
    margin-bottom: 0.54rem;
  }

  .customFlowHead h2,
  .cpro-title h2 {
    font-size: 0.36rem;
    line-height: 0.5rem;
  }

  .customFlowHead p,
  .cpro-title p,
  .cpro-title span {
    font-size: 0.22rem;
    line-height: 0.34rem;
  }

  .flowGrid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: none;
    gap: 0.24rem;
  }

  .flowItem,
  .flowItem:nth-child(6),
  .flowItem:nth-child(7),
  .flowItem:nth-child(8),
  .flowItem:nth-child(9),
  .flowItem:nth-child(10) {
    grid-area: auto;
    width: 100%;
    height: auto;
    min-height: 2rem;
  }

  .flowGrid::after,
  .flowItem::before,
  .flowItem::after,
  .flowItem:nth-child(5)::after,
  .flowItem:nth-child(n + 6)::after {
    display: none;
  }

  .flowItem h3 {
    font-size: 0.24rem;
  }

  .cpro-products,
  .cpro-why,
  .cpro-tech,
  .cpro-spec,
  .cpro-process,
  .cpro-faq,
  .cpro-plan {
    padding: 0.58rem 0;
  }

  .cpro-title {
    margin-bottom: 0.34rem;
  }

  .cpro-desc p,
  .cpro-whyCard p,
  .cpro-adv p,
  .cpro-step p,
  .cpro-faqItem p,
  .cpro-planTxt p,
  .cpro-techDialog p,
  .cpro-techList li {
    font-size: 0.2rem;
    line-height: 0.34rem;
  }

  .productList {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.24rem;
  }

  .productCard {
    height: auto;
  }

  .productCard .imgBox {
    height: 2.35rem;
  }

  .productCard h3,
  .productCard p {
    font-size: 0.22rem;
  }

  .cpro-why .cpro-title {
    margin-bottom: 0.44rem;
  }

  .cpro-whyGrid,
  .cpro-techGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.28rem;
  }

  .cpro-whyCard {
    min-height: 0;
    padding: 0.32rem 0.24rem;
  }

  .cpro-whyCard h3 {
    font-size: 0.26rem;
  }

  .cpro-whyCard li {
    font-size: 0.18rem;
    line-height: 0.28rem;
  }

  .cpro-techGrid {
    gap: 0.42rem 0.26rem;
  }

  .cpro-techImg {
    width: 1.58rem;
    height: 1.58rem;
  }

  .cpro-techItem h3 {
    font-size: 0.28rem;
    line-height: 0.32rem;
  }

  .cpro-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .cpro-table table,
  .cpro-table img {
    min-width: 7rem;
  }

  .cpro-adv h3,
  .cpro-planTxt h2 {
    font-size: 0.34rem;
    margin-bottom: 0.28rem;
  }

  .cpro-adv p {
    margin-bottom: 0.36rem;
  }

  .cpro-advList {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.2rem;
  }

  .cpro-advList span {
    min-height: 0;
    padding: 0.22rem;
    font-size: 0.2rem;
    line-height: 0.32rem;
  }

  .cpro-processLine {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.36rem 0.24rem;
  }

  .cpro-step:not(:last-child)::after {
    display: none;
  }

  .cpro-step h3,
  .cpro-faqItem button span {
    font-size: 0.22rem;
  }

  .cpro-faqItem {
    margin-bottom: 0.24rem;
  }

  .cpro-faqItem button {
    height: auto;
    min-height: 0.72rem;
    gap: 0.18rem;
  }

  .cpro-faqItem p {
    padding-bottom: 0.32rem;
  }

  .cpro-plan .main {
    grid-template-columns: 1fr;
    gap: 0.36rem;
  }

  .cpro-planTxt h3 {
    font-size: 0.26rem;
    margin-bottom: 0.24rem;
  }

  .cpro-planImg {
    height: 3.8rem;
  }

  .cpro-techDialog {
    width: calc(100% - 0.48rem);
    max-height: 86vh;
    overflow-y: auto;
    padding: 0.5rem 0.24rem 0.36rem;
  }

  .cpro-techClose {
    right: 0.22rem;
    top: 0.18rem;
  }
  
  .cpro-techDialogNum{
      display: none;
  }
  
  .cpro-techMore{
      font-size: .24rem;
  }

  .cpro-techDialogHead {
    grid-template-columns: 1fr;
  }

  .cpro-techDialog h2,
  .cpro-techDialog h3 {
    font-size: 0.28rem;
    line-height: 0.4rem;
  }
}

@media (max-width: 560px) {
  .flowGrid,
  .productList,
  .cpro-whyGrid,
  .cpro-techGrid,
  .cpro-advList,
  .cpro-processLine {
    /*grid-template-columns: 1fr;*/
  }
}
