.column {
  margin-bottom: 60px;
}
.column:last-child {
  margin-bottom: 0px;
}
.column .about-title {
  position: relative;
  padding-left: 35px;
  margin-bottom: 40px;
}
.column .about-title::after {
  display: block;
  content: "";
  width: 8px;
  height: 75%;
  position: absolute;
  left: 0px;
  top: 50%;
  transform: skewX(-20deg) translateY(-50%);
  transform-origin: -100% 100%;
  background: #5d388e;
}
.column .about-title span {
  font-size: 42px;
  color: transparent;
  background-image: linear-gradient(to right, #4f3b8f, #203ea8);
  background-clip: text;
}
.column .text {
  font-size: 16px;
  color: #333;
  line-height: 32px;
  overflow: hidden;
}
.column .text .img-p {
  float: right;
  width: 50%;
  margin-left: 30px;
}
.column .about-dl {
  padding-top: 100px;
  margin: 0px -20px;
}
.column .about-dl dd {
  width: 25%;
}
.column .about-dl dd .about-a {
  display: block;
  margin: 0px 20px;
  position: relative;
  border-radius: 40px 20px 20px 20px;
  padding: 110px 40px;
  text-align: center;
  transition: all 0.4s ease-out;
}
.column .about-dl dd .about-a .icon {
  width: 80px;
  height: 80px;
  border-radius: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0px;
  top: 0px;
}
.column .about-dl dd .about-a .icon i {
  font-size: 40px;
  color: #fff;
}
.column .about-dl dd .about-a .name-cn {
  font-size: 30px;
  color: #5d388e;
  font-weight: bold;
}
.column .about-dl dd .about-a .name-en {
  font-size: 24px;
  color: rgba(93, 56, 142, 0.2);
  padding: 15px 0px 30px 0px;
  text-transform: uppercase;
  font-weight: bold;
}
.column .about-dl dd .about-a .sub-name {
  font-size: 24px;
  color: #5d388e;
  font-weight: bold;
}
.column .about-dl dd .about-a:hover {
  transform: translateY(-10px);
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}
.column .about-dl dd:nth-child(2n) .about-a {
  background: #f3f6ff url(../images/about-row2-bg-2.png) no-repeat right center;
  background-size: auto 100%;
}
.column .about-dl dd:nth-child(2n) .about-a .icon {
  background: #2e4492;
}
.column .about-dl dd:nth-child(2n) .about-a .name-en {
  color: rgba(46, 68, 146, 0.2);
}
.column .about-dl dd:nth-child(2n+1) {
  transform: translateY(-50px);
}
.column .about-dl dd:nth-child(2n+1) .about-a {
  background: #faf5ff url(../images/about-row2-bg-1.png) no-repeat right center;
  background-size: auto 100%;
}
.column .about-dl dd:nth-child(2n+1) .about-a .icon {
  background: #5d388e;
}

@media screen and (max-width: 768px) {
  .row {
    padding: 30px 0px 0px 0px;
  }
  .row .column {
    margin-bottom: 25px;
  }
  .row .column:last-child {
    margin-bottom: 0px;
  }
  .row .column .about-title {
    padding-left: 25px;
    margin-bottom: 20px;
  }
  .row .column .about-title span {
    font-size: 26px;
  }
  .row .column .about-title::after {
    width: 6px;
  }
  .row .column .text .img-p {
    width: 100%;
    margin-left: 0px;
    float: none;
    margin-bottom: 15px;
  }
  .row .column .about-dl {
    padding-top: 30px;
  }
  .row .column .about-dl dd {
    width: 100%;
    transform: translateY(0px) !important;
    margin-bottom: 15px;
  }
  .row .column .about-dl dd .about-a {
    border-radius: 40px 5px 5px 5px;
  }
}