index.scss 1.13 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 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
.share-course {
  .v-list-item {
    height: 90px;
    padding: 0;
    margin: 10px 18px 20px 15px;

    .content {
      border: none;
      padding: 0;

      .cover {
        width: 125px;
        height: 90px;
        margin-right: 10px;

        img {
          width: 125px;
          height: 90px;
          border-radius: 3px;
        }
      }

      .info {
        width: 207px;
        position: relative;

        .title {
          font-size: 16px;
          color: #333;
          height: 18px;
          line-height: 18px;
        }

        .contact {
          font-size: 13px;
          color: #666;
          margin-top: 10px;
        }

        button {
          position: absolute;
          bottom: 0;
          font-size: 12px;
          color: #FF4000;
          height: 28px;
          padding: 0 13px;
          border: 1px solid #FF4000;
          border-radius: 3px;
          background-color: #fff;
        }
      }
    }
  }

  .not-data {
    width: 100%;
    height: 20px;
    line-height: 20px;
    text-align: center;
    color: #666;
    font-size: 12px;
    position: absolute;
    top: 50%;
    margin-top: -10px;
  }
}