1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- .container {
- padding: 0 20rpx;
- }
- .container .categoryBox {
- margin: 24rpx 0;
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .container .categoryBox .category {
- width: 126rpx;
- padding: 8rpx 0;
- font-size: 30rpx;
- text-align: center;
- color: #7A7A7A;
- background: #FFFFFF;
- border-radius: 29rpx;
- }
- .container .categoryBox .currentClass {
- color: #FE9221;
- font-weight: bold;
- }
- .container .orderList .tips {
- margin-bottom: 20rpx;
- position: relative;
- padding: 14rpx 0;
- text-align: center;
- background: #FFFAEA;
- font-size: 24rpx;
- color: #FE9221;
- }
- .container .orderList .tips .close {
- position: absolute;
- top: 50%;
- transform: translateY(-50%);
- right: 20rpx;
- font-size: 40rpx;
- }
- .container .orderList .order {
- width: 100%;
- padding: 18rpx 26rpx;
- box-sizing: border-box;
- margin-bottom: 20rpx;
- background: #FFFFFF;
- border-radius: 20rpx;
- }
- .container .orderList .order .above {
- display: flex;
- align-items: flex-end;
- justify-content: space-between;
- padding-bottom: 18rpx;
- border-bottom: 1rpx solid #eee;
- }
- .container .orderList .order .above .userInfo {
- display: flex;
- align-items: center;
- }
- .container .orderList .order .above .userInfo .avatar {
- margin-right: 18rpx;
- width: 64rpx;
- height: 64rpx;
- background: #D8D8D8;
- border-radius: 50%;
- }
- .container .orderList .order .above .userInfo .nickName {
- margin-bottom: 6rpx;
- font-size: 30rpx;
- }
- .container .orderList .order .above .userInfo .addTime {
- font-size: 26rpx;
- color: #7B7B7B;
- }
- .container .orderList .order .above .state {
- font-size: 26rpx;
- color: #FE9221;
- }
- .container .orderList .order .below {
- color: #7B7B7B;
- }
- .container .orderList .order .below .row {
- padding: 20rpx 0;
- display: flex;
- align-items: center;
- justify-content: space-between;
- font-size: 26rpx;
- }
- .container .orderList .order .below .row .money {
- color: black;
- }
- .empty {
- margin-top: 190rpx;
- }
- .empty .nullImg {
- transform: scale(0.8);
- }
|