123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- page {
- background-color: #f5f9fc;
- }
- .invoice {
- padding: 30rpx;
- &-form {
- background-color: #fff;
- padding: 0 30rpx;
- }
- .margin-top {
- margin-top: 20rpx;
- }
- &-tips {
- margin-top: 30rpx;
- }
- &-submit {
- position: fixed;
- bottom: 20rpx;
- width: calc(100% - 60rpx);
- }
- .popup {
- padding: 30rpx 0;
- margin-top: 60rpx;
- height: 50vh;
- max-height: 50vh;
- position: relative;
- &-list {
- border-bottom: 1px solid #e4e7ed;
- border-top: 1px solid #e4e7ed;
- &-group {
- width: 100%;
- }
- &-item {
- display: flex;
- width: calc(100% - 60rpx);
- padding: 0 30rpx;
- height: 90rpx;
- line-height: 90rpx;
- border-bottom: 1px solid #e4e7ed;
- &:last-child {
- border-bottom: none;
- }
- }
- }
- &-bottom {
- position: absolute;
- width: 100%;
- margin-top: 30rpx;
- padding: 0 30rpx;
- bottom: 20rpx;
- }
- }
- &-more-pop {
- background-color: #f5f9fc;
- padding: 30rpx;
- height: 100%;
- position: relative;
- &-form {
- padding: 30rpx;
- background-color: #fff;
- border-radius: 16rpx;
- }
- &-submit {
- position: absolute;
- bottom: 0;
- width: 100%;
- left: 0;
- }
- }
- }
- .order-box {
- height: calc(100vh - 50px);
- &-list {
- padding: 30rpx;
- &-item {
- display: flex;
- justify-content: space-between;
- align-items: center;
- background-color: #fff;
- padding: 30rpx;
- margin-bottom: 20rpx;
- border-radius: 10rpx;
- font-size: 30rpx;
- color: #666666;
- .left {
- display: flex;
- align-items: center;
- &-radio {
- margin-right: 10rpx;
- }
- &-content {
- line-height: 50rpx;
- .money {
- color: #333333;
- font-size: 34rpx;
- font-weight: bold;
- }
- .time {
- color: #999999;
- font-size: 28rpx;
- }
- }
- }
- }
- }
- &-bottom {
- display: flex;
- justify-content: space-between;
- align-items: center;
- background-color: #fff;
- padding: 10rpx 30rpx;
- }
- }
|