index.wxss 934 Bytes
Newer Older
hxx 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
.flex {
  display: flex;
}

.line-clamp1 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.ranking-list__title {
  padding: 16rpx 24rpx;
  font-size: 28rpx;
  font-weight: 500;
}

.ranking-list__title .ranking-title__left {
  flex: 1;
}

.ranking-list__title .ranking-title__right {
  flex: 1;
}

.ranking-list__content {
  padding: 0 24rpx;
  display: grid;
  grid-template-columns: repeat(4, 25%);
  align-items: center;
}

.ranking-list__content .list-item {
  align-items: center;
  flex-direction: column;
李嘉林 committed
37
  margin: 0 20rpx;
hxx committed
38 39 40 41 42
}

.ranking-list__content .image {
  width: 148rpx;
  height: 148rpx;
李嘉林 committed
43
  border-radius: 16rpx;
hxx committed
44 45 46 47 48 49 50 51 52 53
}

.ranking-list__content .content {
  margin-top: 16rpx;
  color: #333333;
  font-size: 24rpx;
}

.ranking-list__content .price {
  margin: 12rpx 0 24rpx;
李嘉林 committed
54
  color: var(--main-color);
hxx committed
55 56 57
  font-weight: 600;
  font-size: 24rpx;
}