12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- .invoice-header {
- height: calc(100vh - 44px);
- background-color: #f9f9f9;
- &-list {
- padding: 31rpx;
- &-item {
- display: flex;
- justify-content: space-between;
- align-items: center;
- // background-color: #fff;
- padding: 20rpx 30rpx;
- // margin-bottom: 20rpx;
- .left {
- width: 50%;
- &-item {
- margin-bottom: 10rpx;
- font-weight: bold;
- width: 100%;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- &:last-child {
- font-weight: normal;
- }
- }
- }
- .center {
- color: $u-type-primary;
- font-size: 24rpx;
- }
- }
- }
- &-bottom {
- padding: 30rpx;
- }
- }
|