| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- .head {
- display: flex;
- justify-content: space-between;
- margin-bottom: 0;
- line-height: 40rpx;
- font-family: PingFang SC, PingFang SC;
- font-weight: 700;
- font-size: 28rpx;
- color: #333333;
- .right {
- display: flex;
- align-items: center;
- .iconfont {
- margin-left: 10rpx;
- }
- }
- }
- .list {
- display: flex;
- flex-wrap: wrap;
- justify-content: space-between;
- .item {
- width: 314rpx;
- padding: 10rpx 20rpx;
- box-sizing: border-box;
- border-radius: 20rpx;
- border: 1rpx solid #E0E0E0;
- margin-bottom: 20rpx;
- .title {
- line-height: 28rpx;
- font-family: PingFang SC, PingFang SC;
- font-size: 20rpx;
- color: #999999;
- margin-top: 6rpx;
- }
- .value {
- line-height: 44rpx;
- font-family: PingFang SC, PingFang SC;
- font-weight: bold;
- font-size: 32rpx;
- color: #333333;
- }
- }
- }
|