123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208 |
- page {
- background: #f6f6f6;
- }
- .box {
- background: #ffffff;
- margin: 30rpx;
- padding: 30rpx;
- border-radius: 30rpx;
- position: relative;
- .code {
- width: 100%;
- text-align: center;
- margin: 30rpx 0;
- .code-img {
- width: 300rpx;
- height: 300rpx;
- }
- }
- .order-details {
- font-size: 30rpx;
- margin-top: 20rpx;
- color: #666666;
- display: flex;
- .number {
- color: black;
- }
- }
- .names {
- font-size: 30rpx;
- }
- .taxi {
- display: flex;
- margin: 0rpx 0 0 10rpx;
- position: absolute;
- bottom: 20rpx;
- right: 30rpx;
- .taxi-box {
- margin-right: 40rpx;
- .taxi-name {
- text-align: center;
- }
- .taxi-phone {
- text-align: center;
- }
- }
- .taxi-boxs {
- margin-right: 0rpx;
- .taxi-name {
- text-align: center;
- }
- .taxi-phone {
- text-align: center;
- }
- }
- }
- .time {
- margin-top: 20rpx;
- font-size: 26rpx;
- width: 450rpx;
- }
- .order-times {
- width: 90%;
- background: #FFFFFF;
- border: 1rpx solid #FFE300;
- border-radius: 30rpx;
- margin: 20rpx 5% 0rpx 5%;
- display: flex;
- justify-content: space-between;
- padding: 10rpx 30rpx;
- .order-date {
- display: flex;
- .date {
- margin-right: 20rpx;
- }
- }
- .price {
- color: red;
- }
- }
- .order-number {
- display: flex;
- justify-content: space-between;
- .number {
- font-size: 30rpx;
- }
- .state {
- font-size: 30rpx;
- }
- }
- .order-txt {
- display: flex;
- margin: 20rpx 0rpx 0 0;
- .order-image {
- width: 240rpx;
- height: 180rpx;
- margin-right: 20rpx;
- }
- .order-name {
- margin-top: 5rpx;
- .name {
- overflow: hidden; //一定要写
- text-overflow: ellipsis; //超出省略号
- display: -webkit-box; //一定要写
- -webkit-line-clamp: 1; //控制行数
- -webkit-box-orient: vertical; //一定要写
- }
- .order-price {
- color: red;
- margin-top: 20rpx;
- }
- .order-time {
- margin-top: 20rpx;
- }
- }
- }
- .order-order {
- display: flex;
- justify-content: flex-end;
- margin-top: 20rpx;
- .bu {
- border: 1rpx solid #BBBBBB !important;
- border-radius: 24rpx !important;
- font-size: 30rpx !important;
- padding: 0rpx 20rpx !important;
- margin-right: 20rpx !important;
- background: #ffffff !important;
- }
- .service {
- border: 1rpx solid #BBBBBB;
- border-radius: 24rpx;
- font-size: 30rpx;
- padding: 20rpx 20rpx;
- margin-right: 20rpx;
- }
- .pay {
- // border: 1rpx solid #BBBBBB;
- border-radius: 24rpx;
- font-size: 30rpx;
- padding: 20rpx 0;
- width: 180rpx;
- text-align: center;
- background: #46a9a4;
- }
- }
- }
- .bommon {
- position: fixed;
- bottom: 0;
- width: 100%;
- display: flex;
- justify-content: space-between;
- padding: 10rpx 30rpx;
- background: #ffffff;
- .bommon-price {
- color: red;
- margin: auto 30rpx;
- }
- .bommon-pay {
- background: #fee104;
- border-radius: 30rpx;
- font-size: 32rpx;
- padding: 20rpx 50rpx;
- }
- }
|