1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- /* pages/account_details/account_details.wxss */
- page {
- background-color: #f2f3f5;
- }
- .account-detail{
- margin: 20rpx;
- }
- .title{
- height: 70rpx;
- font-size: 28rpx;
- color: #999999;
- line-height: 70rpx;
- }
- .list-card{
- padding: 30rpx;
- border-radius: 12rpx;
- background-color: #ffff;
- }
- .card-title{
- font-size: 28rpx;
- font-weight: 500;
- }
- .money{
- float: right;
- font-size: 34rpx;
- }
- .from{
- margin-top: 20rpx;
- color: #999999;
- font-size: 24rpx;
- }
- .more{
- text-align: center;
- font-size: 26rpx;
- color: #999999;
- height: 100rpx;
- line-height:100rpx;
- margin-top: 30rpx;
- }
- .none{
- text-align: center;
- padding-top: 40%;
- }
- .none image{
- height: 100rpx;
- width: 100rpx;
- }
|