order.wxss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. .container {
  2. background-color: #F7F7F7;
  3. }
  4. .container .timer {
  5. background-color: #DF3361;
  6. width: 100%;
  7. height: 60rpx;
  8. font-size: 14px;
  9. text-align: center;
  10. line-height: 60rpx;
  11. color: #fff;
  12. }
  13. .container .code-info {
  14. width: 100%;
  15. height: 390rpx;
  16. background-color: #fff;
  17. }
  18. .container .code-info .code {
  19. width: 320rpx;
  20. height: 320rpx;
  21. border: 1px solid #ebeef5;
  22. margin: 20rpx auto;
  23. }
  24. .container .code-info .code .canvas-code {
  25. background-color: #fff;
  26. width: 280rpx;
  27. height: 280rpx;
  28. margin: 20rpx auto;
  29. }
  30. .container .code-info .code .code-text {
  31. text-align: center;
  32. margin: 30rpx auto;
  33. }
  34. .container .order {
  35. margin-top: 20rpx;
  36. display: flex;
  37. height: 250rpx;
  38. background-color: #fff;
  39. justify-content: flex-start;
  40. }
  41. .container .order .order-img {
  42. width: 200rpx;
  43. height: 190rpx;
  44. margin: 20rpx 20rpx;
  45. padding-top: 25rpx;
  46. }
  47. .container .order .order-img image {
  48. width: 100%;
  49. height: 100%;
  50. }
  51. .container .order .order-info {
  52. flex: 1;
  53. padding-top: 10rpx;
  54. padding-left: 30rpx;
  55. }
  56. .container .order .order-info .order-id {
  57. height: 50rpx;
  58. text-align: right;
  59. }
  60. .container .order .order-info .order-title {
  61. height: 60rpx;
  62. }
  63. .container .order .order-info .order-price {
  64. height: 80rpx;
  65. }
  66. .container .order .order-info .order-date {
  67. height: 50rpx;
  68. }
  69. .container .shop-info {
  70. height: 250rpx;
  71. margin-top: 20rpx;
  72. padding: 20rpx 30rpx;
  73. background-color: #fff;
  74. }
  75. .container .shop-info .shop {
  76. height: 50rpx;
  77. line-height: 50rpx;
  78. }
  79. .container .shop-info .address,
  80. .container .shop-info .tel {
  81. height: 30rpx;
  82. line-height: 30rpx;
  83. margin: 20rpx;
  84. position: relative;
  85. }
  86. .container .shop-info .address image,
  87. .container .shop-info .tel image {
  88. width: 40rpx;
  89. height: 40rpx;
  90. position: absolute;
  91. right: 0;
  92. bottom: 0;
  93. }
  94. .container .order-btn {
  95. position: fixed;
  96. bottom: 0;
  97. left: 0;
  98. width: 100%;
  99. height: 100rpx;
  100. display: flex;
  101. justify-content: flex-end;
  102. align-items: center;
  103. border-top: 1rpx solid #ECECEC;
  104. }
  105. .container .order-btn .confirm-btn,
  106. .container .order-btn .pay-btn {
  107. background-color: #DF3361;
  108. width: 180rpx;
  109. height: 50rpx;
  110. font-size: 14px;
  111. text-align: center;
  112. line-height: 50rpx;
  113. border-radius: 25rpx;
  114. color: #fff;
  115. margin-right: 20rpx;
  116. }
  117. .container .order-btn .delete-btn {
  118. width: 180rpx;
  119. height: 50rpx;
  120. font-size: 14px;
  121. text-align: center;
  122. line-height: 50rpx;
  123. border-radius: 25rpx;
  124. color: #999;
  125. border: 1rpx solid #999;
  126. margin: 0 20rpx;
  127. }