#in-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 17px 30px;
  background: #4b41ff;

  h2 {
    font-size: 21px;
    font-family: PingFang SC, "Helvetica Neue", Helvetica, "PingFang SC",
      "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
    font-weight: 600;
    color: #fff;
    margin-bottom: 34px;
  }

  li {
    display: flex;
    margin-bottom: 27px;

    .project-image {
      width: 100px;
      height: 75px;
      margin-right: 11px;
      flex: 0 0 auto;

      img {
        width: 100%;
        height: 100%;
      }
    }

    .title {
      margin-bottom: 4px;

      span:nth-of-type(1) {
        display: inline-block;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        color: #4b41ff;
        background: #fff;
        text-align: center;
        margin-right: 7px;
      }

      span:nth-of-type(2) {
        color: #fff;
        font-size: 14px;
      }
    }

    .detail {
      color: #fff;
      opacity: 0.8;
    }
  }

  li:last-child {
    display: flex;
    justify-content: center;
    //margin-top: 38px;
    margin-bottom: 0;
    button {
      width: 94px;
      height: 30px;
      border: 1px solid #fff;
      border-radius: 15px;
      font-size: 12px;
      color: #fff;
      background: transparent;
      img {
        width: 9px;
        height: 9px;
        margin-left: 6px;
      }
    }
  }
}