| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- .row {
- display: flex;
- .col {
- flex: 1;
- width: 0;
- padding: 10rpx 20rpx;
- border-radius: 20rpx;
- box-sizing: border-box;
- margin-right: 20rpx;
- .label {
- width: 100%;
- display: flex;
- justify-content: space-between;
- align-items: center;
- min-height: 28rpx;
- font-family: PingFang SC, PingFang SC;
- font-size: 20rpx;
- color: #FFFFFF;
- .iconfont {
- flex-shrink: 0;
- font-size: 18rpx;
- }
- }
- .value {
- line-height: 44rpx;
- font-family: PingFang SC, PingFang SC;
- font-weight: bold;
- font-size: 32rpx;
- color: #FFFFFF;
- }
- }
- .col:last-child {
- margin-right: 0;
- }
- }
- .count {
- .label {
- font-family: PingFang SC, PingFang SC;
- font-size: 28rpx;
- color: #333333;
- line-height: 28rpx;
- }
- .tag-box {
- display: flex;
- flex-wrap: wrap;
- .tag {
- line-height: 28rpx;
- font-family: PingFang SC, PingFang SC;
- font-size: 20rpx;
- color: #3874F6;
- padding: 6rpx 10rpx 6rpx 8rpx;
- box-sizing: border-box;
- background: #E1EAFE;
- border-radius: 8rpx;
- margin-top: 20rpx;
- margin-right: 20rpx;
- flex-shrink: 0;
- }
- .tag:last-child {
- margin-right: 0;
- }
- }
- }
- .item {
- position: relative;
- .resource {
- position: absolute;
- line-height: 40rpx;
- padding: 0 8rpx;
- background-color: #3874F6;
- font-family: PingFang SC, PingFang SC;
- font-size: 24rpx;
- color: #FFFFFF;
- right: 20rpx;
- border-radius: 4rpx;
- }
- .createdate {
- line-height: 32rpx;
- font-family: Microsoft YaHei, Microsoft YaHei;
- font-size: 24rpx;
- color: #67C23A;
- margin-bottom: 20rpx;
- }
- .line {
- line-height: 32rpx;
- font-family: Microsoft YaHei, Microsoft YaHei;
- font-weight: 400;
- font-size: 24rpx;
- color: #999999;
- margin-top: 10rpx;
- }
- }
|