| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- .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;
- margin-top: 10rpx;
- .right {
- display: flex;
- align-items: center;
- .iconfont {
- margin-left: 10rpx;
- }
- }
- }
- .list {
- display: flex;
- flex-wrap: wrap;
- justify-content: space-between;
- .item {
- position: relative;
- width: 314rpx;
- padding: 10rpx 20rpx;
- box-sizing: border-box;
- border-radius: 20rpx;
- border: 1rpx solid #E0E0E0;
- margin-bottom: 20rpx;
- .title {
- display: flex;
- align-items: center;
- line-height: 28rpx;
- font-family: PingFang SC, PingFang SC;
- font-size: 20rpx;
- color: #999999;
- margin-top: 6rpx;
- .iconfont{
- font-size: 20rpx;
- padding-left: 10rpx;
- }
- }
- .value {
- line-height: 44rpx;
- font-family: PingFang SC, PingFang SC;
- font-weight: bold;
- font-size: 32rpx;
- color: #333333;
- }
- .title,.value{
- width: 90%;
- }
- .detail {
- position: absolute;
- right: 10rpx;
- top: 50%;
- transform: translateY(-50%) rotate(-90deg);
- }
- }
- }
|