12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- .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;
- }
|