body {
  background: #F4F4F4;
}
.container {
  width: 1200px;
  margin: 0 auto;
}
.box {
  margin: 20px 0 50px;
  background: #fff;
  padding: 20px;
}
.box .boxhd {
  padding: 20px 0 40px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.box .boxhd .step {
  display: flex;
}
.box .boxhd .step li {
  line-height: 28px;
  font-size: 14px;
  position: relative;
  padding-right: 80px;
}
.box .boxhd .step li span {
  display: inline-block;
  background: #d2d2d2;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  vertical-align: middle;
  text-align: center;
  color: #fff;
  margin-right: 10px;
}
.box .boxhd .step li::after {
  content: '';
  border-bottom: 1px dashed #d2d2d2;
  width: 60px;
  position: absolute;
  top: 50%;
  right: 10px;
}
.box .boxhd .step li:last-child {
  padding-right: 0;
}
.box .boxhd .step li:last-child::after {
  display: none;
}
.box .boxhd .step .active {
  color: #f44040;
}
.box .boxhd .step .active span {
  color: #fff;
  background: #f44040;
}
.box .boxbody {
  padding: 50px 0;
}
.box .boxbody .typelist {
  display: flex;
  margin: -10px;
}
.box .boxbody .typelist li {
  width: 25%;
  text-align: center;
  padding: 10px;
  box-sizing: border-box;
}
.box .boxbody .typelist li .bog {
  padding: 40px 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.box .boxbody .typelist li .bog .pic {
  border-radius: 50%;
  width: 165px;
  height: 165px;
}
.box .boxbody .typelist li .bog h3 {
  font-size: 22px;
  margin: 15px 0 10px;
}
.box .boxbody .typelist li .bog p {
  text-align: left;
  line-height: 21px;
  font-size: 14px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-bottom: 20px;
}
.box .boxbody .typelist li .bog .but {
  background: #0052cd;
  font-size: 16px;
  line-height: 40px;
  color: #fff;
  display: block;
  cursor: pointer;
  margin: 0 auto;
  border-radius: 12px;
}
@media (max-width: 768px) {
  .container {
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
  }
  .box .boxhd {
    padding: 0 0 20px;
    flex-wrap: wrap;
  }
  .box .boxhd .step {
    margin-top: 20px;
  }
  .box .boxbody {
    padding: 30px 0;
  }
  .box .boxbody .typelist {
    flex-wrap: wrap;
  }
  .box .boxbody .typelist li {
    width: 50%;
  }
  .box .boxbody .typelist li .bog {
    padding: 20px;
  }
  .box .boxbody .typelist li .bog .pic {
    width: 100px;
    height: 100px;
  }
}
