.process-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 100px;
}

.process-box {
  text-align: center;
  overflow: hidden;
  flex: 0 0 179px;
  height: 390px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 1);
  box-shadow: 2px 8px 20px  rgba(0, 0, 0, 0.14);
  transition: all 0.5s ease-in-out;
  margin-bottom: 30px;
}

.process-box:hover {
  scale: 1.05;
}

.process-index {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: rgba(255, 255, 255, 1);
  height: 50px;
  line-height: 50px;
  background: linear-gradient(90deg, var(--main-color-hover) 0%, var(--main-color-bright) 120%);
}

.process-icon {
  margin: 30px auto;
}

.process-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--main-color);
  margin-bottom: 20px;
}

.process-desc {
  padding: 0 33px;
  font-size: 16px;
  font-weight: 400;
  color: rgba(102, 107, 122, 1);
  text-align: justify;
  line-height: 23.17px;
}