CategoryItem.scss 894 Bytes
Newer Older
1
.scholarship-category {
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
  display: flex;
  align-items: flex-start;
  height: 90px;
  background-color: #fff;
  margin-top: 15px;

  .imageContainer {
    flex: 0 0 auto;
    width: 125px;
    height: 90px;
    border-radius: 3px;
    margin-right: 15px;

    .image {
      width: 125px;
      height: 90px;
      border-radius: 3px;
    }
  }
  .content {
    flex: 1 1 auto;

    .priceNow {
      color: #ff3131;
      font-size: 15px;
      margin-right: 15px;
    }
    .pricePrimary {
      color: #999999;
      font-size: 12px;
      text-decoration: line-through;
    }
    .shareMoney {
      height: 28px;
      line-height: 28px;
      text-align: center;
xuzhenghua committed
38
      padding: 0 10px;
39 40 41 42 43 44
      color: #fff;
      font-size: 12px;
      background-color: #ff4000;
      border-radius: 3px;
    }
  }
xuzhenghua committed
45 46 47
  .am-tabs-default-bar-content .am-tabs-default-bar-tab{
    width: 100px!important;
  }
48
}