index.scss 900 Bytes
Newer Older
wangshuo 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 33 34 35 36 37 38 39 40 41 42 43 44
.experience_container {
  padding-top: 32px;
  padding-bottom: 40px;
  .title {
    font-size: 22px;
    line-height: 22px;
    font-weight: 600;
    color: rgba(0, 153, 255, 1);
    text-align: center;
  }

  .experience {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 250px;
    margin: 22px auto 28px;
    img {
      width: 16px;
      height: 56px;
    }
    p {
      font-size: 16px;
      font-weight: 600;
      color: rgba(82, 92, 101, 1);
      line-height: 30px;
      text-align: center;
      letter-spacing: 4px;
    }
  }
  .btn {
    width: 150px;
    height: 36px;
    background: rgba(0, 153, 255, 1);
    box-shadow: 0px 6px 12px 0px rgba(0, 153, 255, 0.06);
    border-radius: 18px;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 1);
    line-height: 36px;
    text-align: center;
    margin: 0 auto;
  }
}