1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- /* pages/mineIncome/mineIncome.wxss */
- page {
- background-color: rgba(238, 238, 238, 1);
- }
- .top {
- background: linear-gradient(52deg, #FF5B50 0%, #FF7D45 100%);
- padding: 44rpx 0 37rpx 0;
- text-align: center;
- }
- .text {
- font-size: 24rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #FFFFFF;
- opacity: 0.8;
- }
- .money {
- margin-top: 15rpx;
- font-size: 40rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #FFFFFF;
- }
- .top-bt {
- display: flex;
- }
- .left {
- flex: 1;
- }
- .right {
- flex: 1;
- }
- .select {
- margin-top: 20rpx;
- font-size: 24rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #202020;
- }
- .content {
- padding: 30rpx;
- }
- .day {
- padding-left: 28rpx;
- margin-top: 40rpx;
- font-size: 24rpx;
- color: #747474;
- margin-bottom: 20rpx;
- }
- .list {
- background-color: #ffffff;
- border-radius: 10rpx;
- padding: 35rpx 27rpx;
- font-size: 32rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #202020;
- }
|