.all {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.all h1 {
  font-size: 0.54rem;
}
.all .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 1rem;
  width: 100%;
}
.all .list .box {
  background-color: #f7f7f8;
  height: 3.1rem;
  width: 32.5%;
  padding: 0.52rem 0.34rem 0;
  position: relative;
  transition: all 0.3s;
  margin-right: 1.2%;
  margin-bottom: 1.5%;
}
.all .list .box .title {
  font-size: 0.24rem;
  color: #111;
  margin-bottom: 0.3rem;
}
.all .list .box .title span {
  font-size: 0.17rem;
  color: rgba(0, 0, 0, 0.5);
}
.all .list .box .title2 {
  margin-bottom: 0;
}
.all .list .box .tips {
  font-size: 0.17rem;
  margin-bottom: 0.4rem;
  margin-top: 0.1rem;
  color: rgba(0, 0, 0, 0.5);
}
.all .list .box .row-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.all .list .box .row {
  display: flex;
  align-items: center;
  margin-bottom: 0.15rem;
}
.all .list .box .row .t {
  color: #999;
  font-size: 0.17rem;
}
.all .list .box .row .d {
  color: #000;
  font-size: 0.17rem;
}
.all .list .box .row .d span {
  color: #000;
}
.all .list .box .row .phone {
  color: #1c4381;
}
.all .list .box .row:nth-last-of-type(1) {
  margin-bottom: 0;
}
.all .list .box .remark {
  color: #999999;
  font-size: 0.16rem;
}
.all .list .box::after {
  position: absolute;
  content: "";
  width: 0.07rem;
  height: 0.4rem;
  background-color: #dadde0;
  border-radius: 0px 4px 4px 0px;
  left: 0;
  display: block;
  transition: all 0.3s;
  top: 0.45rem;
}
.all .list .box:hover {
  background-color: #f7f9fb;
}
.all .list .box:hover::after {
  background-color: #1c4381;
}
.all .list .box:nth-of-type(3n) {
  margin-right: 0;
}

@media (max-width: 768px) {
  .all {
    padding: 2rem 0.4rem 1rem;
  }
  .all .list {
    flex-direction: column;
  }
  .all .list .box {
    width: 100%;
    margin-bottom: 4%;
    height: auto;
    padding: 0.5rem 0.4rem 0.6rem 0.4rem;
  }
  .all .list .box .title {
    font-size: 0.3rem;
  }
  .all .list .box .title span {
    font-size: 0.22rem;
  }
  .all .list .box .row .t {
    font-size: 0.22rem;
  }
  .all .list .box .row .d {
    font-size: 0.22rem;
  }
  .all .list .box .remark {
    font-size: 0.2rem;
  }
  .all .list .box .tips {
    font-size: 0.22rem;
  }
}