index.scss 2.15 KB
Newer Older
xuzhenghua committed
1
html, body, #root {
zhanghaozhe committed
2
  height: 100% !important;
xuzhenghua committed
3
}
xuzhenghua committed
4

zhanghaozhe committed
5 6 7 8
.purchased-box {
  width: 100%;
  height: 100%;
  //background-color: $bg_f5f5f5;
xuzhenghua committed
9 10


zhanghaozhe committed
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
  .tip {
    width: 100%;
    height: 30px;
    line-height: 30px;
    font-size: 12px;
    color: $color_333;
    text-align: center;
    background-color: $bg_FFF4CE;
    margin-bottom: 10px;
  }

  .purchased-body {
    background-color: $bg_fff;
  }

  .v-list-item {
    background-color: #fff;

    .content {
      padding-bottom: 10px;
      border-bottom: 1px solid #e7eaf1;

      .cover {
        flex: inherit;
        width: 42.2%;

        img {
          width: 100%;
        }
      }
xuzhenghua committed
41 42
    }

zhanghaozhe committed
43 44 45 46
    .info {
      width: 52.3%;
      position: relative;
      display: block;
zhanghaozhe committed
47

zhanghaozhe committed
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
      .title {
        font-size: 16px;
        color: $color_333;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        height: 16px;
        line-height: 16px;
      }

      .contact {
        font-size: 14px;
        color: $color_666;
        margin-top: 14px;
      }
zhanghaozhe committed
63

zhanghaozhe committed
64 65 66 67 68 69 70 71
      .des {
        position: absolute;
        bottom: 5px;
        color: $active;
        font-size: 14px;
        height: 14px;
        line-height: 14px;
      }
xuzhenghua committed
72
    }
zhanghaozhe committed
73
  }
xuzhenghua committed
74 75


zhanghaozhe committed
76 77 78 79
  .cart-tip {
    color: #555;
    margin-top: 140px;
    text-align: center;
xuzhenghua committed
80

zhanghaozhe committed
81 82
    .iconfridge {
      font-size: 21px;
xuzhenghua committed
83 84
    }

zhanghaozhe committed
85 86 87
    .cart-mess {
      font-size: 12px;
      color: $color_666;
xuzhenghua committed
88
    }
zhanghaozhe committed
89 90 91 92 93 94 95 96 97 98 99 100

    a {
      display: inline-block;
      width: 130px;
      height: 30px;
      border: 1px solid $bg_active;
      border-radius: 15px;
      font-size: 16px;
      margin-top: 30px;
      color: $active;
      text-align: center;
      line-height: 28px;
xuzhenghua committed
101
    }
zhanghaozhe committed
102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
  }

  .status {
    position: absolute;
    top: 0;
    right: 0;
    padding: 2px 6px;
    border-radius: 11px 0 0 11px;
    font-size: 14px;
    color: #fff;
    background: linear-gradient(to bottom, #FF4000, #FD7700);
  }

  .course-expire {
    display: inline-block;
    text-align: center;
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 92px;
    height: 20px;
    line-height: 21px;
    background-color: #FF3A3A;
    border-radius: 0 10px 10px 0;
    color: #fff;
    font-size: 12px;
  }
xuzhenghua committed
129
}