1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- /* pages/personal/wallet/wallet.wxss */
- page {
- background: rgba(244, 244, 244, 1);
- }
- .wallet {
- width: 100%;
- height: 100vh;
- }
- /* 显示余额 begin */
- .top{
- height:301rpx;
- display:flex;
- align-items: center;
- flex-direction: column;
- justify-content: flex-end;
- position: relative;
- }
- .detailed{
- position: absolute;
- top: 81rpx;
- right: 60rpx;
- font-size: 28rpx;
- color: white;
- z-index: 10;
- }
- .balance {
- width: 90%;
- height: 266rpx;
- color: #fff;
- position: relative;
- overflow: hidden;
- display: flex;
- flex-direction: column;
- }
- .balance view:nth-of-type(1) {
- font-size: 28rpx;
- padding: 48rpx 0rpx 0rpx 49rpx;
- }
- .balance image {
- position: absolute;
- left: 0rpx;
- top: 0rpx;
- width: 100%;
- height: 100%;
- z-index: -1;
- }
- .balance .money {
- font-size: 60rpx;
- letter-spacing: 5rpx;
- padding-left: 8rpx;
- }
- .balance1 {
- width: 100%;
- margin: 45rpx 0 0 62rpx;
- }
- /* 显示余额 end */
- /* 列表 begin */
- .walletList view {
- background: #fff;
- font-size: 28rpx;
- padding: 10rpx 28rpx 10rpx 50rpx;
- }
- .walletList view.first {
- padding-top: 20rpx;
- border-bottom: 1px solid #f4f4f4;
- }
- .walletList .last {
- margin-top: 21rpx;
- height: 70rpx;
- }
- .walletList .iconfont {
- font-size: 55rpx;
- }
- .walletList .state {
- color: #999;
- }
- /* 列表 end */
|