index.scss 998 Bytes
Newer Older
zhanghaozhe committed
1 2 3 4 5 6
.experience_container {
  padding-bottom: 40px;
  .title {
    font-size: 22px;
    line-height: 22px;
    font-weight: 600;
zhanghaozhe committed
7
    color: #4B41FF;
zhanghaozhe committed
8 9 10 11 12 13 14
    text-align: center;
  }

  .experience {
    display: flex;
    justify-content: space-between;
    align-items: center;
xuzhenghua committed
15
    width: 310px;
zhanghaozhe committed
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
    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;
    margin: 0 auto;
    border-radius: 18px;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 1);
    text-align: center;
    line-height: 36px;
zhanghaozhe committed
40
    background: #4B41FF;
zhanghaozhe committed
41 42 43 44 45 46 47 48 49 50 51
    box-shadow: 0px 6px 12px 0px rgba(0, 153, 255, 0.06);
  }

  .btn--online {
    width: 200px;
    font-size: 15px;
    color: #fff;
    letter-spacing: 4px;
    background-color: rgba(82,92,101,.6);
  }
}