123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- .order_item {
- font-size: 24rpx;
- margin-top: 15rpx;
- background: #fff;
- }
- .order_time {
- position: relative;
- display: flex;
- padding: 10rpx 15rpx;
- }
- .order_time::after {
- content: "";
- position: absolute;
- bottom: 0;
- right: 0;
- width: 100%;
- height: 2rpx;
- background: #d9d9d9;
- -webkit-transform: scaleY(0.5);
- transform: scaleY(0.5);
- }
- .order_time text {
- flex: 1;
- }
- .order_time text.state_desc, .order_price, .order_total, .order_handle {
- text-align: right;
- }
- .order_content {
- display: flex;
- position: relative;
- padding: 5rpx 15rpx;
- }
- .order_content::after {
- content: "";
- position: absolute;
- bottom: 0;
- right: 0;
- width: 100%;
- height: 2rpx;
- background: #d9d9d9;
- -webkit-transform: scaleY(0.5);
- transform: scaleY(0.5);
- }
- .order_info {
- width: 500rpx;
- padding-left: 15rpx;
- }
- .order_handle {
- margin-top: 8rpx;
- }
- .order_total {
- padding-right: 15rpx;
- padding-top: 15rpx;
- }
- .order_handle text {
- display: inline-block;
- color: grey;
- border: 1rpx solid grey;
- border-radius: 5rpx;
- padding: 0 10rpx;
- margin: 15rpx;
- font-size: 22rpx;
- }
- .goods_spec {
- font-size:20rpx;
- color:grey;
- margin-top:20rpx;
- display:inline-block;
- }
- .order_amount {
- color: #eb4e4f;
- }
- .tabs {
- display: flex;
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: 88rpx;
- line-height: 88rpx;
- background: #ffffff;
- font-size: 28rpx;
- text-align: center;
- z-index: 10;
- }
- .tabs view {
- flex: 1;
- }
- .selected {
- color: #eb4e4f;
- border-bottom: 3px solid #eb4e4f;
- }
- .empty_order {
- text-align: center;
- font-size: 30rpx;
- }
- .empty_order text {
- display: block;
- height: 300rpx;
- line-height: 300rpx;
- }
|