index.scss 1.47 KB
Newer Older
xuzhenghua 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 45 46 47 48
.pro_container {
  padding-top: 32px;
  padding-bottom: 30px;
  background: #0096ff;
  position: relative;

  img {
    position: absolute;
    width: 76px;
    height: 174px;
    left: 0;
    bottom: 50px;
  }
  p {
    font-size: 22px;
    line-height: 22px;
    font-weight: 600;
    color: rgba(255, 255, 255, 1);
    text-align: center;
  }

  .q_item {
    width: 340px;
    min-height: 86px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 5px 0px rgba(153, 153, 153, 0.06);
    border-radius: 2px;
    margin: 0 auto 12px;
    padding: 14px 15px 10px;
    &:first-child {
      margin-top: 18px;
    }
    .q {
      position: relative;
      display: inline-block;
      p {
        font-size: 14px;
        line-height: 14px;
        font-weight: 600;
        color: rgba(82, 92, 101, 1);
        text-align: left;
        z-index: 9;
        position: relative;
      }
      span {
        position: absolute;
        width: 70%;
        height: 4px;
zhanghaozhe committed
49
        background: rgba(255, 214, 103, 1);
xuzhenghua committed
50 51 52 53 54 55 56 57 58 59 60 61
        left: 0;
        bottom: 0;
        z-index: 0;
      }
    }
    .a__container {
      display: flex;
      justify-content: flex-start;
      align-content: flex-start;
      margin-top: 10px;
      div {
        font-size: 12px;
zhanghaozhe committed
62 63
        color: rgba(82, 92, 101, 1);
        font-weight: 600;
xuzhenghua committed
64 65 66 67 68 69 70 71 72 73 74
      }
      p {
        font-size: 12px;
        font-weight: 400;
        color: rgba(82, 92, 101, 0.8);
        line-height: 16px;
        text-align: left;
      }
    }
  }
}