123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196 |
- .myqr {
- width: 560rpx;
- height: 560rpx;
- position: absolute;
- left: 50%;
- top: 50%;
- transform: translate3d(-50%, -50%, 0);
- background: #efe2e2;
- z-index: 999;
- border-radius: 20rpx;
- /* border: 1rpx solid #999; */
- padding: 20rpx;
- }
- .myqr .cancel {
- position: absolute;
- width: 60rpx;
- height: 60rpx;
- margin-left: 280rpx;
- }
- .myqr .img {
- width: 480rpx;
- }
- page {
- height: 100%;
- width: 100%;
- background: #f4f4f4;
- }
- .container {
- background: #f4f4f4;
- height: 100vh;
- }
- .orders-switch {
- width: 100%;
- background: #fff;
- height: 84rpx;
- /* position: fixed;
- top: 0rpx; */
- z-index: 1;
- /* border-bottom: 1px solid rgba(0,0,0,.15); */
- }
- .orders-switch .item {
- display: inline-block;
- height: 82rpx;
- width: 18%;
- padding: 0 15rpx;
- text-align: center;
- }
- .orders-switch .item .txt {
- display: inline-block;
- height: 82rpx;
- padding: 0 20rpx;
- line-height: 82rpx;
- color: #9a9ba1;
- font-size: 30rpx;
- width: 170rpx;
- }
- .orders-switch .item.active .txt {
- color: #ab956d;
- border-bottom: 4rpx solid #ab956d;
- }
- .no-order {
- width: 100%;
- height: auto;
- margin: 0 auto;
- }
- .no-order .c {
- width: 100%;
- height: auto;
- margin-top: 400rpx;
- }
- .no-order .c text {
- margin: 0 auto;
- display: block;
- width: 258rpx;
- height: 29rpx;
- line-height: 29rpx;
- text-align: center;
- font-size: 29rpx;
- color: #999;
- }
- .orders {
- height: auto;
- /* width: 100%; */
- overflow: hidden;
- padding: 20rpx;
- /* margin-top: 85rpx */
- }
- .order {
- margin-top: 20rpx;
- background: #fff;
- }
- .content {
- font-size: 46rpx;
- line-height: 50rpx;
- font-weight: 500;
- margin: 20rpx;
- color: #333;
- }
- .btn {
- height: 44rpx;
- width: 148rpx;
- text-align: center;
- line-height: 44rpx;
- text-align: center;
- border-radius: 10rpx;
- border: 1rpx solid #09afff;
- font-size: 28rpx;
- margin-left: 20rpx;
- color: #333;
- }
- .status {
- height: 32rpx;
- float: right;
- line-height: 32rpx;
- color: #999;
- }
- .status-action{
- color: #b4282d;
- font-size: 24rpx;
- }
- .ticketSn {
- color: #333;
- line-height: 32rpx;
- font-size: 32rpx;
- font-weight: 500;
- }
- .ticket {
- display: flex;
- /* height: 42rpx;
- line-height: 42rpx; */
- }
- .ticket-item {
- min-width: 140rpx;
- width: 140rpx;
- color: #666;
- font-weight: 600;
- }
- .ticket-content {
- color: #666;
- }
- .ticket-content-ellipsis{
-
- color: #666;
- display: -webkit-box;
- overflow: hidden;
- text-overflow: ellipsis;
- word-break: break-all;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- }
- .tool {
- display: flex;
- align-items: center;
- margin-top: 30rpx;
- justify-content: flex-end;
- margin-bottom: 10rpx;
- }
- .flex-center{
- display: flex;
- align-items: center;
- }
- .address {
- display: block;
- color: darkred;
- line-height: 46rpx;
- font-size: 36rpx;
- margin: 20rpx 20rpx;
- }
|