.processPage {
  background: #f6f6f6;
  padding: 0.66rem 0 1rem;
}

.page{
    margin-top: 1.13rem;
}

.processList {
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
}

.processItem {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  min-height: 4.5rem;
  background-image: url(../images/process2.png);
  background-position: center right;
  background-size: contain;
  background-repeat: no-repeat;
  transition: all 0.3s linear;
}

.processItem:nth-child(even) {
  background-image: url(../images/process1.png);
  background-position: center left;
}

.processItem:nth-child(even) .imgBox {
  order: 2;
}

.processItem:hover {
  box-shadow: 0rem 0rem 0.35rem 0.01rem rgba(0, 0, 0, 0.16);
}

.processItem .imgBox {
  background: #dfe4ec;
}

.processItem .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.processItem .text .icon {
  width: 0.53rem;
  height: 0.53rem;
  background: var(--blue);
  transform: rotate(45deg);
  margin-bottom: .2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: .05rem;
  transition: all 0.3s linear;
}

.processItem:hover .text .icon {
  background: var(--orange);
}

.processItem .text .icon img {
  width: .25rem;
  height: .25rem;
  transform: rotate(-45deg);
}

.processItem .text {
  padding: 0.55rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.processItem h2 {
  color: #111;
  font-size: 0.26rem;
  font-weight: bold;
  margin-bottom: 0.18rem;
}

.processItem:hover h2{
    color: var(--blue);
}

.processItem p {
  color: #5f6670;
  font-size: 0.15rem;
  line-height: 0.3rem;
  margin-bottom: 0.26rem;
}

.processItem a {
  color: #9aa0a8;
  font-size: 0.14rem;
}

.processItem:hover span{
    color: var(--orange);
}

.processDetail {
  background: #f6f6f6;
  padding: 0.58rem 0 0.2rem;
}

.processDetail article,
.processDetail article *{
    font-weight: 400;
    font-size: 0.2rem;
    color: #505050;
    line-height: 0.35rem;
}

.processDetail h2 {
  font-weight: 500;
  font-size: 0.45rem;
  color: #000000;
  text-align: center;
  padding-bottom: .54rem;
  border-bottom: 0.01rem solid #CBCBCB;
}

.processDetail h3 {
  font-weight: 500;
  font-size: 0.35rem;
  color: var(--blue);
  margin-bottom: .4rem;
}

.processDetail .box1 {
  padding: .53rem 0 1rem;
}

.processDetail .box2 {
  background: #FFFFFF;
  padding: 1rem 0;
}

.processDetail .box2 .main {
  display: flex;
  gap: 1.25rem;
}

.processDetail .box2 .main .right {
  flex: 1;
}

.processDetail .box2 img {
  width: 4.85rem;
  height: 3.99rem;
}

.processDetail .box2 .right {
  padding-top: .46rem;
}

.processDetail .box3 {
  padding: 1rem 0;
}

.processDetail .box3 .main {
  display: flex;
  gap: 1.25rem;
}

.processDetail .box3 .main .left {
  flex: 1;
  padding-top: .82rem;
}

.processDetail .box3 img {
  width: 4.85rem;
  height: 3.99rem;
}

.processDetail2{
  padding-bottom: 1.62rem;
}

.processDetail2 article{
  padding-top: .37rem;
}

@media (max-width: 1024px) {
  .processPage {
    padding: 0.42rem 0 0.72rem;
  }

  .page {
    margin-top: 0.5rem;
  }

  .processList {
    gap: 0.28rem;
  }

  .processItem,
  .processItem:nth-child(even) {
    grid-template-columns: 1fr;
    min-height: 0;
    background-size: cover;
    background-position: center;
  }

  .processItem:nth-child(even) .imgBox {
    order: 0;
  }

  .processItem .imgBox {
    height: 3.5rem;
  }

  .processItem .text {
    padding: 0.36rem 0.3rem;
  }

  .processItem h2 {
    font-size: 0.3rem;
  }

  .processItem p,
  .processItem a {
    font-size: 0.2rem;
    line-height: 0.34rem;
  }

  .processDetail {
    padding: 0.44rem 0 0;
  }

  .processDetail h2 {
    font-size: 0.4rem;
    padding-bottom: 0.36rem;
  }

  .processDetail h3 {
    font-size: 0.32rem;
    margin-bottom: 0.24rem;
  }

  .processDetail article,
  .processDetail article * {
    font-size: 0.22rem;
    line-height: 0.36rem;
  }

  .processDetail .box1,
  .processDetail .box2,
  .processDetail .box3 {
    padding: 0.56rem 0;
  }

  .processDetail .box2 .main,
  .processDetail .box3 .main {
    flex-direction: column;
    gap: 0.3rem;
  }

  .processDetail .box2 .right,
  .processDetail .box3 .main .left {
    padding-top: 0;
  }

  .processDetail .box2 img,
  .processDetail .box3 img {
    width: 100%;
    height: auto;
    max-height: 4.2rem;
    object-fit: cover;
  }
}
