1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- .invoice {
- background-color: #f9f9f9;
- height: 100vh;
- &-navbar {
- &-right {
- color: #fff;
- margin-right: 30rpx;
- }
- }
- &-content {
- margin-top: 44px;
- }
- &-list {
- padding: 30rpx;
- &-item {
- background-color: #fff;
- padding: 40rpx 30rpx;
- margin-bottom: 20rpx;
- border-radius: 6rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
-
- &-left {
-
- &-item {
- display: flex;
- margin-bottom: 10rpx;
- font-size: 26rpx;
- .money {
- font-weight: bold;
- color: $u-type-primary;
- font-size: 28rpx;
- }
- .status {
- margin-right: 40rpx;
- }
- }
- }
- }
- }
- }
|