index.scss 1.4 KB
Newer Older
zhanghaozhe committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
#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 {
zhanghaozhe committed
33
      margin-bottom: 4px;
zhanghaozhe committed
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53

      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;
zhanghaozhe committed
54
      opacity: .8;
zhanghaozhe committed
55 56 57 58 59 60
    }
  }

  li:last-child {
    display: flex;
    justify-content: center;
zhanghaozhe committed
61
    //margin-top: 38px;
zhanghaozhe committed
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
    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;
      }
    }
  }
}