.banner {
  width: 100%;
  height: 7rem;
  position: relative;
}
.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner .text {
  position: absolute;
  top: 1.77rem;
  left: 3.4rem;
}
.banner .text h3 {
  font-weight: bold;
  font-size: 0.46rem;
  color: #FFFFFF;
  margin-bottom: 0.08rem;
}
.banner .text p {
  font-family: Arial, Arial;
  font-weight: 400;
  font-size: 0.24rem;
  color: #FFFFFF;
  margin-bottom: 0.29rem;
}
.banner .text p span {
  font-family: Arial, Arial;
  font-weight: bold;
  font-size: 0.36rem;
  color: #FFFFFF;
}
.banner form {
  width: 6rem;
  height: 6.2rem;
  background: #FFFFFF;
  box-shadow: 0rem 0.02rem 0.14rem 0.01rem rgba(79, 79, 79, 0.3);
  border-radius: 0.16rem 0.16rem 0.16rem 0.16rem;
  position: absolute;
  top: 0.4rem;
  right: 2.6rem;
  padding: 0.36rem 0.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.banner form .title {
  font-weight: bold;
  font-size: 0.32rem;
  color: #333333;
  margin-bottom: 0.28rem;
}
.banner form > input,
.banner form .codeBox {
  width: 100%;
  height: 0.48rem;
  background: #FFFFFF;
  border-radius: 0.04rem 0.04rem 0.04rem 0.04rem;
  border: 0.01rem solid #E6E5E5;
  margin-bottom: 0.2rem;
  padding: 0 0.16rem;
}
.banner form > input::-webkit-input-placeholder,
.banner form .codeBox::-webkit-input-placeholder {
  font-weight: 400;
  font-size: 0.16rem;
  color: #8E8D8D;
}
.banner form textarea {
  width: 100%;
  height: 1.34rem;
  background: #FFFFFF;
  border-radius: 0.04rem 0.04rem 0.04rem 0.04rem;
  border: 0.01rem solid #E6E5E5;
  padding: 0.13rem 0.16rem;
  margin-bottom: 0.24rem;
}
.banner form button[type="submit"] {
  width: 100%;
  height: 0.48rem;
  background: #DD0F1F;
  border-radius: 0.08rem 0.08rem 0.08rem 0.08rem;
  font-weight: bold;
  font-size: 0.18rem;
  color: #FFFFFF;
}
.banner form .codeBox {
  display: flex;
  align-items: center;
}
.banner form .codeBox input {
  width: 100%;
  height: 0.48rem;
}
.banner form .codeBox input::-webkit-input-placeholder {
  font-weight: 400;
  font-size: 0.16rem;
  color: #8E8D8D;
}
.banner form .codeBox button {
  flex-shrink: 0;
  white-space: nowrap;
  font-weight: 400;
  font-size: 0.16rem;
  color: #136BFB;
}
.serve {
  background: #F7F8FB;
  padding-bottom: 0.8rem;
}
.serve .title {
  margin-top: 0.65rem;
}
.serve .title h3 {
  font-weight: 600;
  font-size: 0.48rem;
  color: #000000;
  text-align: center;
  margin-bottom: 0.18rem;
}
.serve .title p {
  font-weight: 400;
  font-size: 0.16rem;
  color: #666666;
  text-align: center;
}
.serve .process {
  display: flex;
  align-items: center;
  margin-top: 0.6rem;
  gap: 0.2rem;
}
.serve .process .item {
  width: 3.35rem;
  height: 2.75rem;
  background: #FFFFFF;
  border-radius: 0.12rem 0.12rem 0.12rem 0.12rem;
  border: 0.01rem solid #D6D6D6;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.2rem 0;
  gap: 0.14rem;
}
.serve .process .item img {
  width: 0.96rem;
  height: 0.96rem;
  object-fit: contain;
}
.serve .process .item span {
  font-family: PingFang SC, PingFang SC;
  font-weight: 600;
  font-size: 0.24rem;
  color: #333333;
}
.serve .process .item p {
  font-family: PingFang SC, PingFang SC;
  font-weight: 600;
  font-size: 0.24rem;
  color: #333333;
}

@media only screen and (max-width: 1024px) {
  .banner{
    margin-top: 50px;
    height: 10rem;
  }
  .banner form{
    top: 3rem;
    left: 50%;
    right: auto;
    transform: translate(-50%,0);
    width: 84%;
  }
  .banner .text{
    top: 0.77rem;
    left: 50%;
    width: 84%;
    transform: translate(-50%,0);
  }
  .banner .text p,.banner .text p,.banner form > input, .banner form .codeBox,.banner form .codeBox button,.banner form button[type="submit"]{
    font-size: 12px;
  }
  .breadWrap{
    margin-top: 0;
  }
  .serve .main{
    width: 98%;
    margin: auto;
  }
  .serve .title p,.serve .process .item p,.serve .process .item span{
    font-size: 12px;
  }
  .serve .process{
    gap: 0.2rem 0;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .serve .process .item{
    flex: 0 0 49%;
  }
}