12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- /* pages/collectionNum/collectionNum.wxss */
- .top {
- text-align: center;
- margin-bottom: 60rpx;
- }
- .day,
- .num {
- font-size: 24rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #747474;
- line-height: 36rpx;
- opacity: 0.8;
- }
- .money {
- margin-top: 61rpx;
- margin-bottom: 30rpx;
- }
- .list {
- display: flex;
- padding: 50rpx 30rpx 30rpx;
- border-bottom: solid 1rpx rgba(238, 238, 238, 1);
- }
- .left {
- flex: 0 0 96rpx;
- margin-right: 27rpx;
- }
- .left image {
- border: solid 1rpx #747474;
- height: 96rpx;
- width: 96rpx;
- border-radius: 10rpx;
- }
- .middle {
- flex: 1;
- padding: 5rpx 0;
- }
- .right {
- padding: 30rpx;
- text-align: right;
- flex: 1;
- font-size: 32rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #333333;
- line-height: 36rpx;
- }
- .name{
- margin-bottom:10rpx;
- }
|