index.scss 864 Bytes
Newer Older
zhanghaozhe committed
1 2 3 4 5 6 7 8
.description {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 32px 0 38px 0;
  position: relative;
zhanghaozhe committed
9

zhanghaozhe committed
10 11
  .left {
    position: absolute;
zhanghaozhe committed
12 13
    width: 61px;
    height: 216px;
zhanghaozhe committed
14
    left: 0;
zhanghaozhe committed
15
    top: -48px;
zhanghaozhe committed
16
  }
zhanghaozhe committed
17

zhanghaozhe committed
18 19
  .right {
    position: absolute;
zhanghaozhe committed
20
    top: 156px;
zhanghaozhe committed
21
    right: 0;
zhanghaozhe committed
22 23
    width: 43px;
    height: 180px;
zhanghaozhe committed
24
  }
zhanghaozhe committed
25

zhanghaozhe committed
26 27 28
  .title {
    font-size: 22px;
    font-weight: 600;
zhanghaozhe committed
29 30
    color: #4B41FF;
    margin-bottom: 33px;
zhanghaozhe committed
31
  }
zhanghaozhe committed
32

zhanghaozhe committed
33 34 35 36
  img {
    width: 290px;
    height: 170px;
  }
zhanghaozhe committed
37 38 39 40 41 42

  & img:nth-of-type(3){
    height: auto;
  }

  .des-list {
zhanghaozhe committed
43
    margin-top: 36px;
zhanghaozhe committed
44 45

    li {
zhanghaozhe committed
46 47 48
      display: flex;
      align-items: center;
      margin-bottom: 12px;
zhanghaozhe committed
49
    }
zhanghaozhe committed
50 51

    img {
zhanghaozhe committed
52 53 54
      width: 18px;
      height: 18px;
      margin-right: 8px;
zhanghaozhe committed
55
    }
zhanghaozhe committed
56 57

    span {
zhanghaozhe committed
58
      font-size: 12px;
zhanghaozhe committed
59
      color: #525C65;
zhanghaozhe committed
60 61 62
    }
  }
}