order.scss 3.5 KB

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