123456789101112131415161718192021222324252627282930313233343536373839404142 |
- /* pages/salesOrderMan/index.wxss */
- page {
- --cell-vertical-padding: 12rpx;
- --cell-horizontal-padding: 0;
- --cell-background-color: transparent;
- }
- .bottomBtn {
- padding-top: 20rpx;
- text-align: right;
- }
- .bottomBtn button {
- margin-left: 0 !important;
- }
- .orderLoadBox > .title {
- height: 100rpx;
- line-height: 100rpx;
- font-weight: bold;
- font-size: 40rpx;
- color: #14284A;
- text-align: center;
- background: linear-gradient(180deg, #D4E1F6 0%, #FFFFFF 100%);
- }
- .orderLoadBox .dialogUser {
- height: 50vh;
- padding-top: 30rpx;
- }
- .orderLoadBox .dialogUser .saleItem {
- width: 700rpx;
- margin: 0 auto 30rpx;
- padding-bottom: 20rpx;
- border-bottom: 1px solid #eee;
- }
- .orderLoadBox .dialogUser .saleItem .title {
- font-size: 36rpx;
- display: flex;
- justify-content: space-between;
- }
- .orderLoadBox .dialogUser .saleItem .time {
- margin-top: 10rpx;
- color: #666;
- font-size: 24rpx;
- }
|