Blame view

static/sass-new/me/_pay.css 1.1 KB
毕凯 authored
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
.pay-page {
  padding: 40px 20px 0;

  .payapp-list {
    visibility: hidden;
  }

  .box.bytouch {
    background-color:#eee;
  }

  .box {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 12px 20px;
    margin-bottom: 20px;
毕凯 authored
17 18
    display: flex;
    align-items: center;
毕凯 authored
19 20 21

    > div {
      min-height: 40px;
毕凯 authored
22 23
      display: flex;
      align-items: center;
毕凯 authored
24 25 26 27 28
    }

    .icon {
      width: 15%;
毕凯 authored
29
      flex-basis: 15%;
毕凯 authored
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48

      img {
        width: 60px;
        margin: 0;
      }

      > div {
        width: 60px;
        height: 60px;
        background-image: resolve("layout/pay-icon.png");
        background-size: 90%;
        background-position-y: 8px;
        background-position-x: center;
        background-repeat: no-repeat;
      }
    }

    .app {
      width: 35%;
毕凯 authored
49
      flex-basis: 35%;
毕凯 authored
50 51 52 53 54 55
      font-size: 32px;
      color: #414141;
    }

    .hint {
      width: 45%;
毕凯 authored
56
      flex-basis: 45%;
毕凯 authored
57 58 59 60 61 62
      font-size: 24px;
      color: #4b4b4b;
    }

    .iconfont {
      width: 5%;
毕凯 authored
63 64
      flex-basis: 5%;
      justify-content: flex-end;
毕凯 authored
65 66 67 68 69
      color: #e0e0e0;
      font-size: 28px;
    }
  }
}