index.scss 1.6 KB
Newer Older
zhanghaozhe committed
1 2
.team_container {
  padding-top: 32px;
zhanghaozhe committed
3
  padding-bottom: 40px;
zhanghaozhe committed
4
  position: relative;
zhanghaozhe committed
5

zhanghaozhe committed
6 7 8 9 10 11 12
  .team_top {
    position: absolute;
    left: 0;
    top: 0;
    width: 78px;
    height: 76px;
  }
zhanghaozhe committed
13

zhanghaozhe committed
14 15 16 17 18 19 20
  .team_bottom {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 238px;
    height: 246px;
  }
zhanghaozhe committed
21

zhanghaozhe committed
22 23 24 25
  p {
    text-align: center;
    text-align-last: center;
  }
zhanghaozhe committed
26

zhanghaozhe committed
27 28 29 30
  .title {
    font-size: 22px;
    line-height: 22px;
    font-weight: 600;
zhanghaozhe committed
31
    color: #4B41FF;
zhanghaozhe committed
32 33 34 35 36 37
  }

  .sub_title {
    font-size: 12px;
    line-height: 12px;
    font-weight: 300;
zhanghaozhe committed
38
    color: #4B41FF;
zhanghaozhe committed
39 40 41 42 43 44 45
    margin: 12px auto 18px;
  }

  .item_li {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
zhanghaozhe committed
46 47 48
    width: 352px;
    height: 130px;
    margin: 0 auto 25px;
zhanghaozhe committed
49
    padding: 12px 14px 14px 12px;
zhanghaozhe committed
50 51 52
    box-shadow: 0 3px 12px 0 rgba(79, 69, 255, 0.1);
    border-radius: 4px;
    background: rgba(255, 255, 255, 1);
zhanghaozhe committed
53 54 55 56 57 58 59 60 61

    .item_image {
      width: 44px;
      height: 44px;
      border-radius: 22px;
      background: #0099ff;
      flex: 0 0 auto;
      margin-right: 14px;
    }
zhanghaozhe committed
62

zhanghaozhe committed
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
    .item_info {
      .name {
        font-size: 16px;
        line-height: 16px;
        font-weight: 600;
        color: rgba(82, 92, 101, 1);
      }

      .des {
        font-size: 12px;
        line-height: 15px;
        font-weight: 300;
        color: rgba(82, 92, 101, 0.8);
        text-align: left;
        text-align-last: left;
        margin-top: 6px;
        width: 266px;
        display: -webkit-box;
        overflow: hidden;
        -webkit-line-clamp: 5;
        /*! autoprefixer: off */
        -webkit-box-orient: vertical;
      }
    }
  }
}